From 0cad8f3095a8c0bf6e3eff595a473cc04b1a1ff2 Mon Sep 17 00:00:00 2001 From: hz Date: Thu, 20 Nov 2025 11:20:44 +0800 Subject: [PATCH] =?UTF-8?q?fix(agentEenter):=20=E7=A7=BB=E9=99=A4=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=E7=94=B3=E8=AF=B7=E5=90=8E=E7=9A=84=E7=BB=93=E6=9E=9C?= =?UTF-8?q?=E5=88=A4=E6=96=AD=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 删除了对 res.result 的条件判断代码 - 简化了提交成功后的页面跳转流程 - 移除了失败情况下的提示信息处理逻辑 --- .../ebiz/agentEenter/share/ShareInfo.vue | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/views/ebiz/agentEenter/share/ShareInfo.vue b/src/views/ebiz/agentEenter/share/ShareInfo.vue index 26a694d3a..cdecad7d1 100644 --- a/src/views/ebiz/agentEenter/share/ShareInfo.vue +++ b/src/views/ebiz/agentEenter/share/ShareInfo.vue @@ -273,23 +273,23 @@ export default { .then(res => { // console.log(res) // todo 排除 2025-11-20 上午出现的阻断情况 - if (res.result == '0' || res.result === 'F') { - this.$store.commit('updateAgentEnterApplyMsg', this.userInfo) - that.$toast.clear() - this.$jump({ - flag: 'h5', - extra: { - url: location.origin + `/#/agentEenter/ShareInfoSuccess`, - forbidSwipeBack: '1', - backToFirst: '1' - }, - routerInfo: { - path: `/agentEenter/ShareInfoSuccess` - } - }) - } else { - this.$toast(res.resultMessage) - } + // if (res.result == '0' || res.result === 'F') { + this.$store.commit('updateAgentEnterApplyMsg', this.userInfo) + that.$toast.clear() + this.$jump({ + flag: 'h5', + extra: { + url: location.origin + `/#/agentEenter/ShareInfoSuccess`, + forbidSwipeBack: '1', + backToFirst: '1' + }, + routerInfo: { + path: `/agentEenter/ShareInfoSuccess` + } + }) + // } else { + // this.$toast(res.resultMessage) + // } }) .then(function(err) { console.log(err)