riku
2024-08-14 f2a0ea849099f49a3d2a9c7e5c44d033df22468f
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<wxs src="../ranking/util.wxs" module="_" />
 
<view class="page">
  <view class="page-header">
    <view class="inspection-title"> {{scene.name}} </view>
    <view class="inspection-abstract"> 地址:{{scene.location}} </view>
    <view class="inspection-abstract"> 联系:{{scene.contacts}} </view>
    <view class="inspection-abstract"> 电话:{{scene.contactst}} </view>
    <view class="inspection-tag">
      <t-tag
        t-class="t-class-tag"
        max-width="{{130}}"
        shape="square"
        size="medium"
        theme="primary"
        variant="light"
        >{{scene.districtname}}</t-tag
      >
      <t-tag
        t-class="t-class-tag"
        max-width="{{130}}"
        shape="square"
        size="medium"
        theme="success"
        variant="light"
        >{{scene.type}}</t-tag
      >
    </view>
  </view>
  <view class="page-container">
    <view class="inspection-tag">
      <!-- <t-time-picker
        time="{{year}}"
        time-mode="year"
        time-format="YYYY"
        picker-class="picker-class"
        bind:timePickerChange="onTimePickerConfirm"
      >
      </t-time-picker> -->
      <t-recent-time-picker
        recent-time="{{recentTimeValue}}"
        picker-class="picker-class"
        bind:recentTimePickerChange="onRecentTimePickerConfirm"
      ></t-recent-time-picker>
    </view>
    <include src="./chart.wxml" />
    <t-tabs
      theme="card"
      defaultValue="{{0}}"
      space-evenly="{{true}}"
      t-class="custom-tabs"
      t-class-content="custom-panel"
    >
      <t-tab-panel label="整改详情" value="{{0}}" class="custom-tab-panel">
        <include src="./subtask.wxml" />
      </t-tab-panel>
      <t-tab-panel label="问题分析" value="{{1}}" class="custom-tab-panel">
        <include src="./recurrence.wxml" />
      </t-tab-panel>
    </t-tabs>
  </view>
  <view class="page-footer"></view>
</view>