|
@@ -163,7 +163,7 @@ export default {
|
|
|
this.$message.error('请先通过滑块校验');
|
|
|
return;
|
|
|
}
|
|
|
- const {tel: phone} = this.telChangeDate;
|
|
|
+ const {tel: phone} = this.formData;
|
|
|
this.$axios.$post(`/develop/exists`, {phone}).then(res => {
|
|
|
if (res.code === 0 && res.data) {
|
|
|
const {appkey, scene, csessionid: sessionid, sig, token} = this.sliderData;
|
|
@@ -184,7 +184,7 @@ export default {
|
|
|
applyFor() {
|
|
|
this.$refs.ruleTelForm.validate((valid) => {
|
|
|
if (valid) {
|
|
|
- const {tel: phone, verification: code} = this.telChangeDate;
|
|
|
+ const {tel: phone, verification: code} = this.formData;
|
|
|
// 请求后台
|
|
|
const options = {phone, code};
|
|
|
this.$axios.$post('/develop/add', options).then(res => {
|