|
@@ -215,6 +215,7 @@
|
|
<van-field
|
|
<van-field
|
|
placeholder="验证码"
|
|
placeholder="验证码"
|
|
v-model="laoginData.code"
|
|
v-model="laoginData.code"
|
|
|
|
+ maxLength="6"
|
|
@input="
|
|
@input="
|
|
laoginData.code = laoginData.code.replace(/[\u4e00-\u9fa5]/g, '')
|
|
laoginData.code = laoginData.code.replace(/[\u4e00-\u9fa5]/g, '')
|
|
"
|
|
"
|
|
@@ -480,7 +481,6 @@ export default {
|
|
});
|
|
});
|
|
}
|
|
}
|
|
const params = {};
|
|
const params = {};
|
|
- console.log(this.inviteeData);
|
|
|
|
if (Object.keys(this.inviteeData).length) {
|
|
if (Object.keys(this.inviteeData).length) {
|
|
params.userLaunchId = this.inviteeData.userLaunchId;
|
|
params.userLaunchId = this.inviteeData.userLaunchId;
|
|
}
|
|
}
|
|
@@ -496,6 +496,7 @@ export default {
|
|
'bargainingStatusInfo',
|
|
'bargainingStatusInfo',
|
|
JSON.stringify(this.info),
|
|
JSON.stringify(this.info),
|
|
);
|
|
);
|
|
|
|
+ // 如果是被邀请人就不需要走下面流程
|
|
if (Object.keys(this.inviteeData).length) {
|
|
if (Object.keys(this.inviteeData).length) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -519,7 +520,6 @@ export default {
|
|
window.appGoBackCallback = () => {
|
|
window.appGoBackCallback = () => {
|
|
this.exitVisible = true;
|
|
this.exitVisible = true;
|
|
};
|
|
};
|
|
- return;
|
|
|
|
}
|
|
}
|
|
// 对微信做拦截
|
|
// 对微信做拦截
|
|
if (this.$userAgent.isWx) {
|
|
if (this.$userAgent.isWx) {
|
|
@@ -527,15 +527,14 @@ export default {
|
|
history.pushState(null, null, document.URL);
|
|
history.pushState(null, null, document.URL);
|
|
this.exitVisible = true;
|
|
this.exitVisible = true;
|
|
});
|
|
});
|
|
- return;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
if (
|
|
if (
|
|
[1, 2].includes(this.info.bargainingStatus) &&
|
|
[1, 2].includes(this.info.bargainingStatus) &&
|
|
this.$refs.assistRecodeList &&
|
|
this.$refs.assistRecodeList &&
|
|
this.$refs.assistGetPhoneRecode
|
|
this.$refs.assistGetPhoneRecode
|
|
) {
|
|
) {
|
|
|
|
+ console.log(123456)
|
|
this.$refs.assistRecodeList.data = [];
|
|
this.$refs.assistRecodeList.data = [];
|
|
this.$refs.assistGetPhoneRecode.data = [];
|
|
this.$refs.assistGetPhoneRecode.data = [];
|
|
this.$refs.assistRecodeList.list();
|
|
this.$refs.assistRecodeList.list();
|