monitor.wxml 561 B

1234567891011121314151617
  1. <!--pages/monitor/monitor.wxml 监控-->
  2. <navBar></navBar>
  3. <van-notify id="van-notify" />
  4. <view class="monitor">
  5. <view class="head">
  6. <text>我的监控</text>
  7. </view>
  8. <view class="main">
  9. <my-scroll-view wx:if="{{tableData.length>0}}" triggered="{{triggered}}" load="{{load}}" hasMore="{{hasMore}}" bindonRefresh="onRefresh" bindloadMore="loadMore" customStyle="height: calc(100vh - 300rpx)">
  10. <myProduct tableData="{{tableData}}"></myProduct>
  11. </my-scroll-view>
  12. <van-empty wx:else description="暂无数据" />
  13. </view>
  14. </view>