attention.wxml 729 B

1234567891011121314151617181920
  1. <swiper current="{{currentTab}}" class="swiper-box" duration="300" style="height:{{winHeight - 48}}px" bindchange="bindChange">
  2. <swiper-item>
  3. <scroll-view scroll-y style="height: 100%;">
  4. <view wx:for="{{array}}"class="swiper-box-view" wx:key="index" bindtap="open" data-row="{{item}}">
  5. <view class="swiper-box-left">
  6. <view>{{item.title}}</view>
  7. <view class="swiper-box-subtitle">{{item.subtitle}}</view>
  8. </view>
  9. <view class="swiper-box-right">
  10. <view class="swiper-box-button">
  11. <button class="mini-btn" type="warn" size="mini">{{item.Increase}}</button>
  12. </view>
  13. </view>
  14. </view>
  15. </scroll-view>
  16. </swiper-item>
  17. </swiper>