123456789101112131415161718192021222324252627 |
- <!--pages/myFollow/myFollow.wxml 我关注的-->
- <navBar></navBar>
- <van-notify id="van-notify" />
- <wux-refresher
- id="wux-refresher"
- bind:pulling="onPulling"
- bind:refresh="onRefresh"
- scrollTop="{{scrollTop}}"
- >
- <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>
- <scroll-view wx:if="{{tableData.length>0}}" type="list" scroll-y class="main">
- <myProduct tableData="{{tableData}}" total="{{total}}" isFollow="{{true}}" bindloadMore="loadMore" bindcancelFollow="cancelFollow"></myProduct>
- </scroll-view>
- <van-empty wx:else description="暂无数据" />
- </view>
- </wux-refresher>
|