123456789101112131415161718192021222324 |
- <!--pages/myFollow/myFollow.wxml 我关注的-->
- <navBar></navBar>
- <van-notify id="van-notify" />
- <view class="myFollow">
- <view class="head">
- <text>我的关注</text>
- </view>
- <view class="filter">
- <van-checkbox-group custom-class="checkbox" direction="horizontal" value="{{ checked }}" bind:change="onChange">
- <van-checkbox custom-class="checkbox_item" wx:for="{{checkList}}" wx:key="index" name="{{item.type}}">
- <text class="iconfont {{item.icon}} checkbox_icon"></text>
- <text class="checkbox_label">{{item.label}}</text>
- </van-checkbox>
- </van-checkbox-group>
- </view>
- </view>
- <view class="main myFollow">
- <my-scroll-view triggered="{{triggered}}" load="{{load}}" hasMore="{{hasMore}}" bindonRefresh="onRefresh" bindloadMore="loadMore" customStyle="height: calc(100vh - 320rpx)">
- <myProduct wx:if="{{tableData.length>0}}" tableData="{{tableData}}" isFollow="{{true}}" bindcancelFollow="cancelFollow"></myProduct>
- <van-empty wx:else description="暂无数据" />
- </my-scroll-view>
-
- </view>
|