1234567891011121314151617181920212223 |
- <view>
- <swiper current="{{currentTab}}" class="swiper-box" duration="300" style="height:{{winHeight - 48}}px" bindchange="bindChange">
- <swiper-item>
- <scroll-view scroll-y style="height: 100%;">
- <view wx:for="{{array}}"class="swiper-box-view" wx:key="index" bindtap="open" data-row="{{item}}">
- <view class="swiper-box-left">
- <view>{{item.industryName}}</view>
- <!-- <view class="swiper-box-subtitle">{{item.subtitle}}</view> -->
- </view>
- <view class="swiper-box-right">
- <view class="swiper-box-button">
- <button class="mini-btn" type="warn" size="mini" wx:if="{{item.industryTag===true}}" style="width:180rpx;text-align:center;">+{{item.industryValue}}%</button>
- <button wx:else class="mini-btn" type="warn" style="background:#07c160;width:180rpx;text-align:center;" size="mini">{{item.industryValue}}%</button>
- </view>
- </view>
- </view>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
|