myFollow.wxml 1.0 KB

123456789101112131415161718192021222324252627
  1. <!--pages/myFollow/myFollow.wxml 我关注的-->
  2. <navBar></navBar>
  3. <van-notify id="van-notify" />
  4. <wux-refresher
  5. id="wux-refresher"
  6. bind:pulling="onPulling"
  7. bind:refresh="onRefresh"
  8. scrollTop="{{scrollTop}}"
  9. >
  10. <view class="myFollow">
  11. <view class="head">
  12. <text>我的关注</text>
  13. </view>
  14. <view class="filter">
  15. <van-checkbox-group custom-class="checkbox" direction="horizontal" value="{{ checked }}" bind:change="onChange">
  16. <van-checkbox custom-class="checkbox_item" wx:for="{{checkList}}" wx:key="index" name="{{item.type}}">
  17. <text class="iconfont {{item.icon}} checkbox_icon"></text>
  18. <text class="checkbox_label">{{item.label}}</text>
  19. </van-checkbox>
  20. </van-checkbox-group>
  21. </view>
  22. <scroll-view wx:if="{{tableData.length>0}}" type="list" scroll-y class="main">
  23. <myProduct tableData="{{tableData}}" total="{{total}}" isFollow="{{true}}" bindloadMore="loadMore" bindcancelFollow="cancelFollow"></myProduct>
  24. </scroll-view>
  25. <van-empty wx:else description="暂无数据" />
  26. </view>
  27. </wux-refresher>