|
|
@ -117,7 +117,7 @@ |
|
|
|
<div class="d-flex flex-wrap" style="width: 75%"> |
|
|
|
<div class="flex-1"></div> |
|
|
|
<router-link tag="span" to="/login"> |
|
|
|
<span class="baseColor">已有账号,去登录</span> |
|
|
|
<span class="baseColor pointer">已有账号,去登录</span> |
|
|
|
</router-link> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -187,7 +187,7 @@ export default { |
|
|
|
verificationCodeId: this.picCode.verificationCodeId, |
|
|
|
verificationCodeValue: this.codeNum, |
|
|
|
}; |
|
|
|
// await this.sendCode(params); |
|
|
|
await this.sendCode(params); |
|
|
|
this.getCodeInterval(); |
|
|
|
} catch (error) { |
|
|
|
throw new Error(`personalSignUp.vue method getCode: ${error}`); |
|
|
@ -219,7 +219,7 @@ export default { |
|
|
|
try { |
|
|
|
const { account, nickname, password, phone, smsCode, source } = this.info; |
|
|
|
console.log('this.info: ', this.info); |
|
|
|
const params = { name: account, nickname, phone, type: 1 }; |
|
|
|
const params = { param: { name: account, nickname, phone, type: 1 } }; |
|
|
|
console.log('params: ', params); |
|
|
|
const res = await saveUserMes(params); |
|
|
|
const { code, msg, data } = res.data; |
|
|
|