12345678910111213141516171819202122 |
- <!--pages/monitor/monitoringRecord.wxml-->
- <navBar></navBar>
- <van-notify id="van-notify" />
- <view class="monitoringRecord">
- <view class="headTitle head">
- 监控记录
- </view>
- <view class="main">
- <my-scroll-view wx:if="{{tableData.length>0}}" triggered="{{triggered}}" load="{{load}}" hasMore="{{hasMore}}" bindonRefresh="onRefresh" bindloadMore="loadMore" customStyle="height: calc(100vh - 300rpx)">
- <view class="content">
- <van-steps
- steps="{{ tableData }}"
- active="{{ tableData.length-1 }}"
- direction="vertical"
- active-color="#ee0a24"
- />
- </view>
- </my-scroll-view>
- <van-empty wx:else description="暂无数据" />
- </view>
- </view>
|