<!--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>
|