attention.wxml 813 B

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