monitor.wxml 921 B

123456789101112131415161718
  1. <!--pages/monitor/monitor.wxml 监控-->
  2. <navBar></navBar>
  3. <van-notify id="van-notify" />
  4. <followPopup show="{{showPopup}}" showCollect="{{false}}" changeFollow="{{changeFollow}}" bindonClose="closePopup" bindattention="attention" bindcancelFollow="cancelFollow"></followPopup>
  5. <view class="monitor">
  6. <view class="head">
  7. <text>我的监控</text>
  8. </view>
  9. <view class="main">
  10. <my-scroll-view triggered="{{triggered}}" load="{{load}}" hasMore="{{hasMore}}" bindonRefresh="onRefresh" bindloadMore="loadMore" customStyle="height: calc(100vh - 300rpx)">
  11. <myProduct wx:if="{{tableData.length>0}}" isMonitor="{{true}}" tableData="{{tableData}}" menu="{{menu}}" bindcancelMonitoring="cancelMonitoring" bindclick="click" id="myProduct" bindshowPopup="openPopup" bindhiddenPopup="closePopup"></myProduct>
  12. <van-empty wx:else description="暂无数据" />
  13. </my-scroll-view>
  14. </view>
  15. </view>