flat: 修改全职岗位和零工岗位问题

This commit is contained in:
yangxiao
2025-12-23 13:06:28 +08:00
parent 6ad80f08e9
commit adc762f676
17 changed files with 22621 additions and 149 deletions

View File

@@ -31,11 +31,15 @@
},
computed: {
...mapState({
idNumber: (state) => state.auth.authInfo.idNumber
idNumber: (state) => {
console.log(state.auth.authInfo, 'auth.authInfo')
return state.auth.authInfo.idNumber
}
}),
},
methods: {
next(type) {
next(type) {
// return this.$api.msg('该功能正在完善中')
switch (type) {
case 0:
this.isHaveCode(this.idNumber).then(() => {
@@ -63,7 +67,10 @@
if (resData.data.code === 200) {
if (resData.data.data.haveCode) {
resolve()
} else {
} else {
return this.$api.msg('系统正在建设中')
switch (resData.data.data.reviewStatus) {
case 0:
this.$api.msg('您提交的认证信息正在审核中')