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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!--pages/enterprise/result/index.wxml-->
<view class="page">
  <t-loading
    wx:if="{{pageLoading}}"
    theme="circular"
    size="40rpx"
    text="加载中..."
    loading
    t-class="fy-loading"
    t-class-indicator="fy-loading-indicator"
    t-class-text="fy-loading-text"
  >
  </t-loading>
  <view class="page-header">
    <!-- <view class="enterprise-detail__period-wrap"> -->
    <view class="enterprise-detail__period-wrap"> {{monthValue}} </view>
    <t-time-picker
      time="{{monthValue}}"
      bind:timePickerChange="onTimePickerConfirm"
    >
      <view slot="text">
        <view class="enterprise-detail__period-btn-wrap">
          <view class="enterprise-detail__period-btn">
            <text>切换时段</text>
            <t-icon name="swap" size="26rpx" color="white" />
          </view>
        </view>
      </view>
    </t-time-picker>
    <!-- </view> -->
    <t-enterprise-info
      loading="{{loadStatus == 1}}"
      enterprise-info="{{enterprise}}"
      creditInfo="{{creditInfo}}"
      authenInfo="{{authenInfo}}"
      bind:codeClick="navToEcCode"
    >
    </t-enterprise-info>
  </view>
  <view class="page-container">
    <t-risk-stat
      title="合规风险"
      loading="{{loadStatus == 1}}"
      value="{{riskInfo}}"
    >
    </t-risk-stat>
    <t-ledger-stat
      title="自巡查"
      note="图片详情"
      loading="{{loadStatus == 1}}"
      value="{{selfCheckInfo}}"
      data-mode="1"
      bind:noteClick="navToLedger"
    ></t-ledger-stat>
    <t-ledger-stat
      title="台账管理"
      note="图片详情"
      loading="{{loadStatus == 1}}"
      value="{{ledgerInfo}}"
      data-mode="2"
      bind:noteClick="navToLedger"
    ></t-ledger-stat>
    <t-assessment-stat
      title="自测自评"
      note="自评细则"
      loading="{{loadStatus == 1}}"
      value="{{historyPoint}}"
      bind:noteClick="navToAssessment"
      bind:moreClick="navToAssessmentReport"
    ></t-assessment-stat>
    <t-promise-stat
      title="守法承诺"
      note="承诺详情"
      loading="{{loadStatus == 1}}"
      value="{{promsieInfo}}"
      bind:noteClick="navToPromise"
    ></t-promise-stat>
  </view>
  <view class="page-footer"></view>
</view>