monitor.wxml 569 B

123456789101112131415161718
  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 triggered="{{triggered}}" load="{{load}}" hasMore="{{hasMore}}" bindonRefresh="onRefresh" bindloadMore="loadMore" customStyle="height: calc(100vh - 300rpx)">
  10. <myProduct wx:if="{{tableData.length>0}}" tableData="{{tableData}}"></myProduct>
  11. <van-empty wx:else description="暂无数据" />
  12. </my-scroll-view>
  13. </view>
  14. </view>