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.
42 lines
2.0 KiB
42 lines
2.0 KiB
<!--home/components/userInfo/userInfo.wxml-->
|
|
<view class="content">
|
|
<view class="user-box">
|
|
<view class="user-list" catchtap="userFn">
|
|
<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 class="user-list" style="align-items: flex-start;">
|
|
<view class="bt">安装地址</view>
|
|
<view class="bd">{{detail.province}}{{detail.city}}{{detail.area}}{{detail.address}}</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> |