riku
2026-04-02 3282e95db0207ee133d1e98d9771dec9d83b0fc4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<view class="enterprise-info__wrap">
  <view class="enterprise-info__top" 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>
  <slot></slot>
</view>