|
@@ -2,20 +2,12 @@
|
|
|
<view class="app-content">
|
|
<view class="app-content">
|
|
|
<view class="info-content_box">
|
|
<view class="info-content_box">
|
|
|
<view class="title">
|
|
<view class="title">
|
|
|
- 失信人员信息
|
|
|
|
|
|
|
+ 更多信息
|
|
|
</view>
|
|
</view>
|
|
|
<view class="bills-info_box content-box">
|
|
<view class="bills-info_box content-box">
|
|
|
<view class="order-info_box">
|
|
<view class="order-info_box">
|
|
|
- <view>手机号码:</view>
|
|
|
|
|
- <view>{{ userInfo.mobile }}</view>
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="order-info_box">
|
|
|
|
|
- <view>微信号码:</view>
|
|
|
|
|
- <view>{{ userInfo.wx }}</view>
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="order-info_box" v-if="userInfo.status==1">
|
|
|
|
|
- <view>身份证号:</view>
|
|
|
|
|
- <view>{{ userInfo.no }}</view>
|
|
|
|
|
|
|
+ <view>人员名称:</view>
|
|
|
|
|
+ <view>{{ userInfo.name }}</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="order-info_box">
|
|
<view class="order-info_box">
|
|
|
<view>失信次数:</view>
|
|
<view>失信次数:</view>
|
|
@@ -33,13 +25,31 @@
|
|
|
<view>最近失信:</view>
|
|
<view>最近失信:</view>
|
|
|
<view>{{ userInfo.lastDate }}</view>
|
|
<view>{{ userInfo.lastDate }}</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+ <block v-if="!$util.isEmpty(userInfo.mobileList)">
|
|
|
|
|
+ <view class="order-info_box" v-for="(item, index) in userInfo.mobileList" :key="index">
|
|
|
|
|
+ <view>曾用手机:</view>
|
|
|
|
|
+ <view>{{ item }}</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </block>
|
|
|
|
|
+ <block v-if="!$util.isEmpty(userInfo.wxList)">
|
|
|
|
|
+ <view class="order-info_box" v-for="(item, index) in userInfo.wxList" :key="index">
|
|
|
|
|
+ <view>曾用微信:</view>
|
|
|
|
|
+ <view>{{ item }}</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </block>
|
|
|
|
|
+ <block v-if="!$util.isEmpty(userInfo.noList)">
|
|
|
|
|
+ <view class="order-info_box" v-for="(item, index) in userInfo.noList" :key="index">
|
|
|
|
|
+ <view>曾用身份:</view>
|
|
|
|
|
+ <view>{{ item }}</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </block>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<view v-if="userInfo.remark!=''" class="content-box price-detail">
|
|
<view v-if="userInfo.remark!=''" class="content-box price-detail">
|
|
|
<div class="module-com input-line-wrap">
|
|
<div class="module-com input-line-wrap">
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<div class="tui-title">备注</div>
|
|
<div class="tui-title">备注</div>
|
|
|
- <div>{{ userInfo.remark }}</div>
|
|
|
|
|
|
|
+ <div>{{ userInfo.remark||'' }}</div>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
</div>
|
|
</div>
|
|
|
</view>
|
|
</view>
|