riku
2026-03-05 9465dc404f7e7cd56100e4859ee0946a3fef7b09
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<view class="page">
  <!-- <view class="page__hd"></view> -->
  <view class="page__bd">
    <t-self-patrol wx:if="{{!exist}}" />
    <t-tabs wx:else sticky stickyProps="{{stickyProps}}" defaultValue="{{0}}">
      <t-tab-panel label="自巡查" value="0">
        <t-self-patrol />
      </t-tab-panel>
      <t-tab-panel
        label="应急自巡查"
        value="1"
        badge-props="{{ { count: unfinishedNum, offset: ['-16rpx', '8rpx'] } }}"
      >
        <t-emergency-self-patrol />
      </t-tab-panel>
    </t-tabs>
    <!-- <t-loading
    t-class="t-class-loading"
    t-class-text="t-class-loading-text"
    t-class-indicator="t-class-indicator"
    loading="{{loading}}"
    text="加载中..."
    theme="circular"
    size="40rpx"
  /> -->
  </view>
  <view class="page__ft"></view>
</view>