myFollow.wxml 1.0 KB

123456789101112131415161718192021222324
  1. <!--pages/myFollow/myFollow.wxml 我关注的-->
  2. <navBar></navBar>
  3. <van-notify id="van-notify" />
  4. <view class="myFollow">
  5. <view class="head">
  6. <text>我的关注</text>
  7. </view>
  8. <view class="filter">
  9. <van-checkbox-group custom-class="checkbox" direction="horizontal" value="{{ checked }}" bind:change="onChange">
  10. <van-checkbox custom-class="checkbox_item" wx:for="{{checkList}}" wx:key="index" name="{{item.type}}">
  11. <text class="iconfont {{item.icon}} checkbox_icon"></text>
  12. <text class="checkbox_label">{{item.label}}</text>
  13. </van-checkbox>
  14. </van-checkbox-group>
  15. </view>
  16. </view>
  17. <view class="main myFollow">
  18. <my-scroll-view triggered="{{triggered}}" load="{{load}}" hasMore="{{hasMore}}" bindonRefresh="onRefresh" bindloadMore="loadMore" customStyle="height: calc(100vh - 320rpx)">
  19. <myProduct wx:if="{{tableData.length>0}}" tableData="{{tableData}}" isFollow="{{true}}" bindcancelFollow="cancelFollow"></myProduct>
  20. <van-empty wx:else description="暂无数据" />
  21. </my-scroll-view>
  22. </view>