riku
2024-11-07 5036880fc037e5d112206b93a729f60be12bf8ab
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
<view class="enterprise-info__wrap">
  <view wx:if="{{qrcodeVisible}}" class="enterprise-info__img">
    <t-image
      style="background-color: white"
      src="{{qrcodeUrl}}"
      width="260rpx"
      height="260rpx"
      shape="round"
      bindtap="handleImgClick"
    />
    <view class="enterprise-info__img__text"
      >{{creditInfo.codeLevel ? creditInfo.codeLevel : '环信码'}}</view
    >
  </view>
  <view class="enterprise-info__main">
    <view wx:if="{{loading}}" class="enterprise-info__loading">
      <t-loading theme="dots" size="50rpx" inherit-color="true" />
    </view>
    <block wx:else>
      <view class="enterprise-info__title"> {{enterpriseInfo.name}} </view>
      <view class="enterprise-info__abstract"> {{describe}} </view>
      <t-divider />
      <view class="enterprise-info__tag">
        <t-tag
          t-class="t-class-tag"
          max-width="{{130}}"
          shape="square"
          size="medium"
          theme="primary"
          variant="light"
          >{{enterpriseInfo.district}}</t-tag
        >
        <t-tag
          t-class="t-class-tag"
          max-width="{{130}}"
          shape="square"
          size="medium"
          theme="success"
          variant="light"
          >{{enterpriseInfo.sceneType}}</t-tag
        >
      </view>
    </block>
  </view>
</view>
<view wx:if="{{!loading}}" class="enterprise-info__tag enterprise-info__authen">
  <t-tag
    max-width="{{130}}"
    t-class="t-class-tag"
    shape="square"
    size="medium"
    theme="{{item.finished ? 'success' : 'danger'}}"
    variant="light"
    wx:for="{{authenText}}"
    wx:for-index="index"
    wx:key="index"
    >{{item.text}}</t-tag
  >
</view>