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
<view class="enterprise-info__wrap" bind:tap="handCellClick">
  <view slot="image" class="enterprise-info__img">
    <view class="enterprise-info__img__score"> {{item.score}} </view>
    <view class="enterprise-info__img__text"> 自评 </view>
    <t-tag
      max-width="{{130}}"
      shape="square"
      size="small"
      theme="default"
      variant="light-outline"
      >{{item.updateTime}}</t-tag
    >
  </view>
  <view class="enterprise-info__main">
    <view slot="title" class="enterprise-info__title"> {{item.name}} </view>
    <t-divider />
    <view slot="description" class="enterprise-info__tag">
      <t-tag
        max-width="{{130}}"
        shape="square"
        size="small"
        theme="success"
        variant="light-outline"
        disabled
        >运营中</t-tag
      >
      <t-tag
        t-class="t-class-tag"
        max-width="{{130}}"
        shape="square"
        size="medium"
        theme="default"
        variant="light"
        >{{item.district}}</t-tag
      >
      <t-tag
        t-class="t-class-tag"
        max-width="{{130}}"
        shape="square"
        size="medium"
        theme="default"
        variant="light"
        >{{item.sceneType}}</t-tag
      >
    </view>
  </view>
</view>