职位申请bug

main
lijingyu007 7 months ago
parent b24dadce94
commit c949d14c9a
  1. 3
      .env.development
  2. 8
      .env.production
  3. 22
      src/page/homepage/personability/abilityUserDetail.vue

@ -5,12 +5,13 @@ ENV = 'development'
VUE_APP_BASE_API = '/prod-api'
VUE_APP_BASE_TARGET = 'http://192.168.0.229:9999'
# VUE_APP_BASE_TARGET = 'http://192.168.0.229:9999'
# VUE_APP_BASE_TARGET = 'http://192.168.0.129:9999'
# VUE_APP_BASE_TARGET = 'http://172.16.36.180:9999'
# VUE_APP_BASE_TARGET = 'http://172.16.36.176:9998'
# VUE_APP_BASE_TARGET = 'https://www.keyitest.cn/test-api'
VUE_APP_BASE_TARGET = 'http://www.bjkeyware.com/test-api'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true

@ -3,11 +3,11 @@ ENV = 'production'
# KeySaas测试云平台/生产环境
# VUE_APP_BASE_API = 'https://www.keyitest.cn/prod-api'
# VUE_APP_BASE_API = '/test-api'
VUE_APP_BASE_API = '/prod-api'
VUE_APP_BASE_API = '/test-api'
# VUE_APP_BASE_API = '/prod-api'
# VUE_APP_BASE_TARGET = 'https://www.keyitest.cn/prod-api'
# VUE_APP_BASE_TARGET = 'https://www.keyitest.cn/test-api'
VUE_APP_BASE_TARGET = 'http://www.bjkeyware.com/test-api'
VUE_APP_BASE_TARGET = 'http://192.168.0.229:9999'
# VUE_APP_BASE_TARGET = 'http://192.168.0.229:9999'

@ -33,7 +33,9 @@
</div>
<div class="topboxR">
<div class="topboxRT">
<div class="topboxRTIT" v-for="it in jonInfo.welfare && jonInfo.welfare.split(',')" :key="it">{{ it }}</div>
<div class="topboxRTIT" v-for="it in jonInfo.welfare && jonInfo.welfare.split(',')" :key="it">
{{ it }}
</div>
</div>
<div class="topboxRB">{{ jonInfo.company }}</div>
</div>
@ -109,13 +111,15 @@ export default {
})
} else {
if (this.userinform.testerStatus == 2) {
shenqingJob(this.jonInfo.jobId, { userId: this.userId }).then((res) => {
if (res.code == 200) {
this.$message.success('职位申请成功')
}
}).catch(error => {
this.$message.warning(error)
})
shenqingJob(this.jonInfo.jobId, { userId: this.userId })
.then((res) => {
if (res.code == 200) {
this.$message.success('职位申请成功')
}
})
.catch((error) => {
this.$message.warning(error)
})
} else {
getCloudAll(this.userId).then((res) => {
//
@ -130,6 +134,8 @@ export default {
} else {
this.$message.warning('请先入驻成为云员工')
}
} else {
this.$message.warning('请先入驻成为云员工')
}
})
}

Loading…
Cancel
Save