|
|
@@ -135,7 +135,8 @@
|
|
|
skills: []
|
|
|
},
|
|
|
showConfirm: false,
|
|
|
- firstTip: true
|
|
|
+ firstTip: true,
|
|
|
+ showConfirmWord: ""
|
|
|
}
|
|
|
},
|
|
|
asyncData({ app }) {
|
|
|
@@ -257,6 +258,14 @@
|
|
|
location.href = 'proginn://login'
|
|
|
return
|
|
|
}
|
|
|
+ let { realname_re } = this.$store.state.userinfo
|
|
|
+ realname_re = Number(realname_re)
|
|
|
+ //未签约,弹出提示
|
|
|
+ if (realname_re !== 2) {
|
|
|
+ this.showConfirm = true
|
|
|
+ this.showConfirmWord = "发起沟通"
|
|
|
+ return
|
|
|
+ }
|
|
|
let checkAns = await this.dealTips("沟通")
|
|
|
if (!checkAns) {
|
|
|
return
|
|
|
@@ -277,7 +286,6 @@
|
|
|
if (!(Number(applicationState) === 0)) {
|
|
|
return
|
|
|
}
|
|
|
- //未签约,弹出提示
|
|
|
if (!await this.checkLogin(true)) {
|
|
|
return
|
|
|
}
|
|
|
@@ -287,8 +295,10 @@
|
|
|
}
|
|
|
let { realname_re } = this.$store.state.userinfo
|
|
|
realname_re = Number(realname_re)
|
|
|
+ //未签约,弹出提示
|
|
|
if (realname_re !== 2) {
|
|
|
this.showConfirm = true
|
|
|
+ this.showConfirmWord = "投递简历"
|
|
|
return
|
|
|
}
|
|
|
|