monitoringRecord.wxml 722 B

12345678910111213141516171819202122
  1. <!--pages/monitor/monitoringRecord.wxml-->
  2. <navBar></navBar>
  3. <van-notify id="van-notify" />
  4. <view class="monitoringRecord">
  5. <view class="headTitle head">
  6. 监控记录
  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. <view class="content">
  11. <van-steps
  12. steps="{{ tableData }}"
  13. active="{{ tableData.length-1 }}"
  14. direction="vertical"
  15. active-color="#ee0a24"
  16. />
  17. </view>
  18. </my-scroll-view>
  19. <van-empty wx:else description="暂无数据" />
  20. </view>
  21. </view>