You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.8 KiB
38 lines
1.8 KiB
<!--components/userInfo/userInfo.wxml-->
|
|
<view class="content">
|
|
<view class="user-box">
|
|
<view class="user-list">
|
|
<view class="bt">{{detail.tenant_name}}</view>
|
|
<view class="bd">
|
|
<text class="tag" wx:if="{{detail.tenant_type == '1'}}">户用屋顶</text>
|
|
<text class="tag" wx:if="{{detail.tenant_type == '2'}}">公共屋顶</text>
|
|
</view>
|
|
<!-- <image src="../../img/arrow.png" class="content-img-right" /> -->
|
|
</view>
|
|
<view class="user-list">
|
|
<view class="bt">联系电话</view>
|
|
<view class="bd">{{detail.mobile}}</view>
|
|
<view class="tel" catchtap="phoneFn" data-phone="{{detail.mobile}}">
|
|
<image src="../../img/tel.png" />
|
|
拨打
|
|
</view>
|
|
</view>
|
|
<view class="user-list" wx:if="{{detail.tenant_type == '1'}}">
|
|
<view class="bt">身份证号</view>
|
|
<view class="bd">{{detail.id_code}}</view>
|
|
<!-- <view bind:tap="goRecord" class="record-btn">审批记录</view> -->
|
|
</view>
|
|
<view class="user-list" wx:if="{{detail.tenant_type == '2'}}">
|
|
<view class="bt">统一信用代码</view>
|
|
<view class="bd">{{detail.regno}}</view>
|
|
<!-- <view bind:tap="goRecord" class="record-btn">审批记录</view> -->
|
|
</view>
|
|
</view>
|
|
<!-- <view class="content-list" wx:if="{{detail.auditType>0}}">
|
|
<view class="content-title-item txt-red" wx:if="{{detail.auditType=='1'}}">设计自审驳回</view>
|
|
<view class="content-title-item txt-red" wx:if="{{detail.auditType=='2'}}">设计审核驳回</view>
|
|
<view class="content-title-item txt-red" wx:if="{{detail.auditType=='3'}}">安装验收驳回</view>
|
|
<view class="content-title-item txt-red" wx:if="{{detail.auditType=='4'}}">并网验收驳回</view>
|
|
<text class="txt-red">{{detail.auditRemark}}</text>
|
|
</view> -->
|
|
</view> |