|
|
@@ -196,8 +196,8 @@
|
|
|
iconClass: 'el-icon-error'
|
|
|
})
|
|
|
}
|
|
|
- }).catch(() => {
|
|
|
- this.downToast('请检查网络是否正常或联系服务商')
|
|
|
+ }).catch((err) => {
|
|
|
+ this.downToast(err.errMsg)
|
|
|
})
|
|
|
} else {
|
|
|
this.downToast('请点击先获取验证码信息')
|
|
|
@@ -234,9 +234,9 @@
|
|
|
}
|
|
|
}, 1000)
|
|
|
}
|
|
|
- }).catch(() => {
|
|
|
+ }).catch((err) => {
|
|
|
this.$indicator.close()
|
|
|
- this.downToast('请检查网络是否正常或联系服务商')
|
|
|
+ this.downToast(err.errMsg)
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
@@ -265,9 +265,9 @@
|
|
|
response.data.content.hasRegister ? this.hasRegister = true : this.hasRegister = false
|
|
|
this.step = 2
|
|
|
}
|
|
|
- }).catch(() => {
|
|
|
+ }).catch((err) => {
|
|
|
this.$indicator.close()
|
|
|
- this.downToast('请检查网络是否正常或联系服务商')
|
|
|
+ this.downToast(err.errMsg)
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
@@ -399,8 +399,8 @@
|
|
|
} else {
|
|
|
this.state.email = 'success'
|
|
|
}
|
|
|
- }).catch(() => {
|
|
|
- this.downToast('请检查网络是否正常或联系服务商')
|
|
|
+ }).catch((err) => {
|
|
|
+ this.downToast(err.errMsg)
|
|
|
})
|
|
|
}
|
|
|
} else {
|
|
|
@@ -458,9 +458,9 @@
|
|
|
} else {
|
|
|
this.downToast(response.data.errMsg)
|
|
|
}
|
|
|
- }).catch(() => {
|
|
|
+ }).catch((err) => {
|
|
|
this.$indicator.close()
|
|
|
- this.downToast('请检查网络是否正常或联系服务商')
|
|
|
+ this.downToast(err.errMsg)
|
|
|
})
|
|
|
},
|
|
|
// 企业注册
|