<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>
|