riku
2024-07-26 1a4d35a08d05e014663c144771976abb0edaa933
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
<import src="/pages/common/template/template-loading.wxml" />
 
<t-navbar>
  <view slot="left" class="t-class-navbar">
    <t-icon name="user" size="36rpx" />
    <view class="t-class-navbar-title"> {{userName}} </view>
  </view>
</t-navbar>
<view class="page">
  <template is="pulldown-loading" wx:if="{{pageLoading}}" />
  <view class="page-header">
    <view slot="left" bind:tap="navToSearchPage">
      <t-search shape="square" placeholder="{{placeholder}}" disabled />
    </view>
  </view>
  <view class="page-container">
    <view class="home-supervision-wrap">
      <include src="./options.wxml" />
      <include src="./inspection.wxml" />
      <include src="./supervision.wxml" />
    </view>
    <include src="./notice.wxml" />
    <include src="./news.wxml" />
    <t-toast id="t-toast" />
  </view>
  <view class="page-footer"></view>
</view>