12345678910111213141516171819 |
- <!--pages/monitor/monitor.wxml 监控-->
- <navBar></navBar>
- <van-notify id="van-notify" />
- <wux-refresher
- id="wux-refresher"
- bind:pulling="onPulling"
- bind:refresh="onRefresh"
- scrollTop="{{scrollTop}}"
- >
- <view class="monitor">
- <view class="head">
- <text>我的监控</text>
- </view>
- <scroll-view wx:if="{{tableData.length>0}}" type="list" scroll-y class="main">
- <myProduct tableData="{{tableData}}" total="{{total}}" bindloadMore="loadMore"></myProduct>
- </scroll-view>
- <van-empty wx:else description="暂无数据" />
- </view>
- </wux-refresher>
|