|
@@ -16,13 +16,20 @@
|
|
|
<text style="margin-right: 18rpx;">{{userinfo.group_info.name || ''}}</text>
|
|
|
<u-icon @click="touserinfo1" name="edit-pen-fill" color="#2979ff" size="22"></u-icon>
|
|
|
</view>
|
|
|
- <view class="introduce">
|
|
|
+ <view class="introduce" v-if="is_profile">
|
|
|
<text>{{resume_Detail.birthday_text||0}}岁</text>
|
|
|
<text style="margin: 0 11rpx;">|</text>
|
|
|
- <text>{{resume_Detail.education_name ||"无"}}</text>
|
|
|
+ <text>{{resume_Detail.education_name ||""}}</text>
|
|
|
<text style="margin: 0 11rpx;">|</text>
|
|
|
<text>{{resume_Detail.experience ||0 }}年</text>
|
|
|
</view>
|
|
|
+ <view class="introduce" v-else>
|
|
|
+ <text>{{userinfo.group_info||0}}岁</text>
|
|
|
+<!-- <text style="margin: 0 11rpx;">|</text>
|
|
|
+ <text>{{resume_Detail.education_name ||""}}</text>
|
|
|
+ <text style="margin: 0 11rpx;">|</text>
|
|
|
+ <text>{{resume_Detail.experience ||0 }}年</text> -->
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<!-- <image class="mine-user-img" src="../../static/images/mine-qiehuan.png" mode=""></image>
|
|
|
<image class="mine-user-img" src="../../static/images/qiehuan.png" mode="">
|
|
@@ -155,7 +162,8 @@
|
|
|
order: 0,
|
|
|
invite: 0,
|
|
|
},
|
|
|
- token: ''
|
|
|
+ token: '',
|
|
|
+ is_profile: false
|
|
|
}
|
|
|
},
|
|
|
onLoad() {
|
|
@@ -163,13 +171,17 @@
|
|
|
this.resumeDetail()
|
|
|
this.is_auth()
|
|
|
this.commission_data()
|
|
|
+ this.getnum()
|
|
|
if (uni.getStorageSync('token')) {
|
|
|
this.token = true
|
|
|
}
|
|
|
- this.getnum()
|
|
|
+ if (uni.getStorageSync('is_profile')) {
|
|
|
+ this.is_profile = true
|
|
|
+ }
|
|
|
},
|
|
|
onShow() {
|
|
|
this.getuser()
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
getnum() {
|