123456789101112131415161718 |
- <!--pages/monitor/monitor.wxml 监控-->
- <navBar></navBar>
- <van-notify id="van-notify" />
- <view class="monitor">
- <view class="head">
- <text>我的监控</text>
- </view>
- <view class="main">
- <my-scroll-view triggered="{{triggered}}" load="{{load}}" hasMore="{{hasMore}}" bindonRefresh="onRefresh" bindloadMore="loadMore" customStyle="height: calc(100vh - 300rpx)">
- <myProduct wx:if="{{tableData.length>0}}" tableData="{{tableData}}"></myProduct>
- <van-empty wx:else description="暂无数据" />
- </my-scroll-view>
-
- </view>
-
-
- </view>
|