|
@@ -3,7 +3,7 @@
|
|
<view class="user-box">
|
|
<view class="user-box">
|
|
<view class="icon-name-box">
|
|
<view class="icon-name-box">
|
|
<view class="icon-box">
|
|
<view class="icon-box">
|
|
- <cover-image class="icon" :src="`/static/images/avatar-img/${user.icon}.png`"></cover-image>
|
|
|
|
|
|
+ <cover-image class="icon" :src="user.icon"></cover-image>
|
|
</view>
|
|
</view>
|
|
<view class="name-box">
|
|
<view class="name-box">
|
|
<view class="name" v-if="isLogin">
|
|
<view class="name" v-if="isLogin">
|
|
@@ -28,7 +28,7 @@
|
|
任职机构:
|
|
任职机构:
|
|
</view>
|
|
</view>
|
|
<view class="text">
|
|
<view class="text">
|
|
- {{isLogin ? user.employment : ''}}
|
|
|
|
|
|
+ {{isLogin ? user.corpName : ''}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="info-item-box">
|
|
<view class="info-item-box">
|
|
@@ -36,7 +36,7 @@
|
|
机构备案证号:
|
|
机构备案证号:
|
|
</view>
|
|
</view>
|
|
<view class="text">
|
|
<view class="text">
|
|
- {{isLogin ? user.recordCertificateNumber : ''}}
|
|
|
|
|
|
+ {{isLogin ? user.corpRegNo : ''}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -164,10 +164,10 @@
|
|
|
|
|
|
// 用户信息
|
|
// 用户信息
|
|
const user = ref({
|
|
const user = ref({
|
|
- icon: '1',
|
|
|
|
|
|
+ userIcon: '1',
|
|
username: '某某某',
|
|
username: '某某某',
|
|
- employment: '广州市xx地产有限公司',
|
|
|
|
- recordCertificateNumber: '123xxxx',
|
|
|
|
|
|
+ corpName: '广州市xx地产有限公司',
|
|
|
|
+ corpRegNo: '123xxxx',
|
|
zhongjierenzheng: true, // 中介认证
|
|
zhongjierenzheng: true, // 中介认证
|
|
anjierenzheng: true // 按揭认证
|
|
anjierenzheng: true // 按揭认证
|
|
})
|
|
})
|