<wxs src="../utils.wxs" module="_" />
|
<t-enter-stat-card title="{{title}}" note="{{note}}" bind:noteClick="noteClick">
|
<view slot="content">
|
<view wx:if="{{loading}}" class="enterprise-info__loading">
|
<t-loading theme="dots" size="50rpx" />
|
</view>
|
<t-empty-page
|
wx:elif="{{!value.score}}"
|
description="企业当期暂未进行自评"
|
></t-empty-page>
|
<view wx:else class="enterprise-info__wrap" bind:tap="handCellClick">
|
<view class="enterprise-info__top">
|
<view slot="image" class="enterprise-info__img {{_.percentTextColor(value.score)}}">
|
<view class="enterprise-info__img__score">
|
<text>{{value.score}}</text>
|
</view>
|
<view class="enterprise-info__img__unit__bg {{_.percentBgColor(value.score)}}"> </view>
|
<view class="enterprise-info__img__unit"> 分 </view>
|
</view>
|
<view class="enterprise-info__main">
|
<view class="enterprise-info__tag">
|
<!-- <view class="enterprise-info__tag-item">
|
<view class="enterprise-info__tag-item__value {{_.percentTextColor(value.score)}}">
|
{{value.rank}}
|
</view>
|
<view class="enterprise-info__tag-item__text"> 风险排名 </view>
|
</view> -->
|
<view class="enterprise-info__tag-item">
|
<view class="enterprise-info__tag-item__value {{_.percentTextColor(value.score)}}">
|
{{value.level}}
|
</view>
|
<view class="enterprise-info__tag-item__text"> 风险指数 </view>
|
</view>
|
</view>
|
<view class="enterprise-info__img__text">
|
<t-divider
|
t-class="t-class-divider"
|
content="{{title + '解读'}}"
|
align="right"
|
/>
|
</view>
|
</view>
|
</view>
|
<view class="enterprise-info__bottom">
|
<view class="enterprise-info__title"> {{value.creditText}} </view>
|
<view class="enterprise-info__btn-more" bindtap="handleMoreClick">
|
<text>分析报告</text>
|
<t-icon name="chevron-right" size="36rpx" color="black" />
|
</view>
|
<!-- <t-cell note="分析报告" hover arrow /> -->
|
</view>
|
</view>
|
</view>
|
</t-enter-stat-card>
|