mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-07 15:56:43 +08:00
fix(agentEenter): 移除提交申请后的结果判断逻辑
- 删除了对 res.result 的条件判断代码 - 简化了提交成功后的页面跳转流程 - 移除了失败情况下的提示信息处理逻辑
This commit is contained in:
@@ -273,23 +273,23 @@ export default {
|
|||||||
.then(res => {
|
.then(res => {
|
||||||
// console.log(res)
|
// console.log(res)
|
||||||
// todo 排除 2025-11-20 上午出现的阻断情况
|
// todo 排除 2025-11-20 上午出现的阻断情况
|
||||||
if (res.result == '0' || res.result === 'F') {
|
// if (res.result == '0' || res.result === 'F') {
|
||||||
this.$store.commit('updateAgentEnterApplyMsg', this.userInfo)
|
this.$store.commit('updateAgentEnterApplyMsg', this.userInfo)
|
||||||
that.$toast.clear()
|
that.$toast.clear()
|
||||||
this.$jump({
|
this.$jump({
|
||||||
flag: 'h5',
|
flag: 'h5',
|
||||||
extra: {
|
extra: {
|
||||||
url: location.origin + `/#/agentEenter/ShareInfoSuccess`,
|
url: location.origin + `/#/agentEenter/ShareInfoSuccess`,
|
||||||
forbidSwipeBack: '1',
|
forbidSwipeBack: '1',
|
||||||
backToFirst: '1'
|
backToFirst: '1'
|
||||||
},
|
},
|
||||||
routerInfo: {
|
routerInfo: {
|
||||||
path: `/agentEenter/ShareInfoSuccess`
|
path: `/agentEenter/ShareInfoSuccess`
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} else {
|
// } else {
|
||||||
this.$toast(res.resultMessage)
|
// this.$toast(res.resultMessage)
|
||||||
}
|
// }
|
||||||
})
|
})
|
||||||
.then(function(err) {
|
.then(function(err) {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
|||||||
Reference in New Issue
Block a user