|
@@ -1,13 +1,19 @@
|
|
<template>
|
|
<template>
|
|
<view class="client-my-page">
|
|
<view class="client-my-page">
|
|
<view class="my-head-box">
|
|
<view class="my-head-box">
|
|
- <img class="head-img-box" :src="myInfoData.userImg" v-if="myInfoData.userImg">
|
|
|
|
- <icon class="head-icon-box" v-else></icon>
|
|
|
|
|
|
+ <view class="head-img-box">
|
|
|
|
+ <img class="head-img" :src="myInfoData.userImg" v-if="myInfoData.userImg">
|
|
|
|
+ <icon class="head-icon" v-else></icon>
|
|
|
|
+ </view>
|
|
<view class="head-content-box">
|
|
<view class="head-content-box">
|
|
<text>{{myInfoData.realName}}</text>
|
|
<text>{{myInfoData.realName}}</text>
|
|
- <view class="idcard-row-box" v-if="myInfoData.idcard">
|
|
|
|
|
|
+ <view class="head-content-row-box" v-if="myInfoData.userName">
|
|
|
|
+ <icon class="tel-icon"></icon>
|
|
|
|
+ <text class="content-text" >{{myInfoData.userName}}</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="head-content-row-box" v-if="myInfoData.idcard">
|
|
<icon class="idcard-icon"></icon>
|
|
<icon class="idcard-icon"></icon>
|
|
- <text class="idcard-text" >{{myInfoData.idcard}}</text>
|
|
|
|
|
|
+ <text class="content-text" >{{myInfoData.idcard}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -80,6 +86,7 @@
|
|
userImg: '',
|
|
userImg: '',
|
|
realName: '',
|
|
realName: '',
|
|
idcard: '',
|
|
idcard: '',
|
|
|
|
+ userName: '',
|
|
kaoshiCount: '',
|
|
kaoshiCount: '',
|
|
kechengCount: '',
|
|
kechengCount: '',
|
|
lianxiCount: '',
|
|
lianxiCount: '',
|
|
@@ -129,6 +136,7 @@
|
|
myInfoData.userImg= res.data.icon;
|
|
myInfoData.userImg= res.data.icon;
|
|
myInfoData.realName = res.data.realName;
|
|
myInfoData.realName = res.data.realName;
|
|
myInfoData.idcard = res.data.idcard;
|
|
myInfoData.idcard = res.data.idcard;
|
|
|
|
+ myInfoData.userName = res.data.userName;
|
|
})
|
|
})
|
|
}
|
|
}
|
|
function getNumInfo(){
|
|
function getNumInfo(){
|