|
@@ -163,6 +163,7 @@ export default {
|
|
|
code: '', // 验证码
|
|
|
activityId: '', // 活动ID
|
|
|
invitationUserName: '', // 邀请人用户名
|
|
|
+ invitationType: 5,
|
|
|
},
|
|
|
submitting: false, // 提交按钮状态
|
|
|
codeTime: 0, // 验证码倒计时
|
|
@@ -190,11 +191,7 @@ export default {
|
|
|
if(!valid) return; // 校验不通过
|
|
|
|
|
|
// 校验通过
|
|
|
- let {msg} = await sendSmsCode(this, {
|
|
|
- type: 'common',
|
|
|
- // authorizationType: 7, // 登录类型
|
|
|
- phone: this.form.phone,
|
|
|
- },{ headers: { merchantSign: this.merchantSign }});
|
|
|
+ let {msg} = await sendSmsCode(this, { type: 'common', phone: this.form.phone },{ headers: { merchantSign: this.merchantSign }});
|
|
|
|
|
|
this.codeObj.isFinish = false;
|
|
|
this.$refs.countDown.reset();
|