|
@@ -4,7 +4,7 @@
|
|
|
<img class="head-img-box" :src="myInfoData.userImg" v-if="myInfoData.userImg">
|
|
|
<icon class="head-icon-box" v-else></icon>
|
|
|
<view class="head-content-box">
|
|
|
- <text>{{myInfoData.userName}}</text>
|
|
|
+ <text>{{myInfoData.realName}}</text>
|
|
|
<view class="idcard-row-box" v-if="myInfoData.idcard">
|
|
|
<icon class="idcard-icon"></icon>
|
|
|
<text class="idcard-text" >{{myInfoData.idcard}}</text>
|
|
@@ -63,7 +63,7 @@
|
|
|
import commonDialog from '@/components/dialog/commonDialog.vue';
|
|
|
let myInfoData = reactive({
|
|
|
userImg: '',
|
|
|
- userName: '',
|
|
|
+ realName: '',
|
|
|
idcard: '',
|
|
|
kaoshiCount: '',
|
|
|
kechengCount: '',
|
|
@@ -109,7 +109,7 @@
|
|
|
function getUserInfo(){
|
|
|
getMineUser({}).then(res => {
|
|
|
myInfoData.userImg= res.data.icon;
|
|
|
- myInfoData.userName = res.data.userName;
|
|
|
+ myInfoData.realName = res.data.realName;
|
|
|
myInfoData.idcard = res.data.idcard;
|
|
|
})
|
|
|
}
|