riku
2025-04-27 f46786f11c5c08ead7501a82e5a71430ad69b782
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
<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>