diff --git a/src/views/ebiz/agentEenter/share/ShareInfo.vue b/src/views/ebiz/agentEenter/share/ShareInfo.vue
index f96d1fc78..cdecad7d1 100644
--- a/src/views/ebiz/agentEenter/share/ShareInfo.vue
+++ b/src/views/ebiz/agentEenter/share/ShareInfo.vue
@@ -2,57 +2,57 @@
- 推荐人信息
+ 推荐人信息
- 个人信息
-
+ 个人信息
+
-
-
-
-
+
+
+
+
{{ codeDisabled ? `${countDown}s后重新获取` : '获取验证码' }}
-
提交信息
+
提交信息
-
+
@@ -156,7 +156,7 @@ export default {
this.getData()
},
methods: {
- getData: function () {
+ getData: function() {
let self = this
self.$toast.loading({
duration: 0, // 持续展示 toast
@@ -167,7 +167,7 @@ export default {
getTokenForUserModel({
token: this.$CacheUtils.getLocItem('token')
})
- .then(function (response) {
+ .then(function(response) {
self.$toast.clear()
console.log('response', response)
if (response.result == '0') {
@@ -176,7 +176,7 @@ export default {
this.$toast.fail(response.resultMessage)
}
})
- .catch(function (error) {
+ .catch(function(error) {
// this.$toast.fail(error)
})
// var self = this
@@ -217,7 +217,7 @@ export default {
loadingType: 'spinner',
message: '加载中……'
})
- this.$validator.validate().then((valid) => {
+ this.$validator.validate().then(valid => {
if (true === valid) {
self.$toast.clear()
if (this.userInfo.idType == '1') {
@@ -270,27 +270,28 @@ export default {
message: '加载中……'
})
agentInfowxSubmit(data)
- .then((res) => {
+ .then(res => {
// console.log(res)
- if (res.result == '0') {
- 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)
- }
+ // 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)
+ // }
})
- .then(function (err) {
+ .then(function(err) {
console.log(err)
})
})
@@ -348,7 +349,7 @@ export default {
operateCodeType: '0'
}
//获取验证码
- getAuthCode(data).then((res) => {
+ getAuthCode(data).then(res => {
console.log(res)
if (res.result == 0) {
this.sessionId = res.sessionId
@@ -360,7 +361,7 @@ export default {
}
}
-