monitor.wxml 564 B

12345678910111213141516171819
  1. <!--pages/monitor/monitor.wxml 监控-->
  2. <navBar></navBar>
  3. <van-notify id="van-notify" />
  4. <wux-refresher
  5. id="wux-refresher"
  6. bind:pulling="onPulling"
  7. bind:refresh="onRefresh"
  8. scrollTop="{{scrollTop}}"
  9. >
  10. <view class="monitor">
  11. <view class="head">
  12. <text>我的监控</text>
  13. </view>
  14. <scroll-view wx:if="{{tableData.length>0}}" type="list" scroll-y class="main">
  15. <myProduct tableData="{{tableData}}" total="{{total}}" bindloadMore="loadMore"></myProduct>
  16. </scroll-view>
  17. <van-empty wx:else description="暂无数据" />
  18. </view>
  19. </wux-refresher>