|
@@ -192,7 +192,7 @@ export default {
|
192
|
192
|
},
|
193
|
193
|
|
194
|
194
|
hideReturn: false,
|
195
|
|
- inviteCode:''
|
|
195
|
+ inviteCode: "",
|
196
|
196
|
};
|
197
|
197
|
},
|
198
|
198
|
|
|
@@ -238,7 +238,7 @@ export default {
|
238
|
238
|
|
239
|
239
|
getAvailableWechat(pid) {
|
240
|
240
|
let sendData = {};
|
241
|
|
- if(pid){
|
|
241
|
+ if (pid) {
|
242
|
242
|
sendData.pid = pid;
|
243
|
243
|
}
|
244
|
244
|
this.api
|
|
@@ -334,7 +334,7 @@ export default {
|
334
|
334
|
password: this.form.password,
|
335
|
335
|
fromPlatform: this.form.fromPlatform,
|
336
|
336
|
};
|
337
|
|
- if(this.inviteCode){
|
|
337
|
+ if (this.inviteCode) {
|
338
|
338
|
sendData.parentInviteCode = this.inviteCode;
|
339
|
339
|
}
|
340
|
340
|
uni.login({
|
|
@@ -389,7 +389,7 @@ export default {
|
389
|
389
|
this.fn.showToast(`团长号提交成功`);
|
390
|
390
|
this.pidCode = res.data;
|
391
|
391
|
this.step = 3;
|
392
|
|
- this.getAvailableWechat(this.form.teamNum);
|
|
392
|
+ this.getAvailableWechat(this.form.teamNum);
|
393
|
393
|
} else {
|
394
|
394
|
this.fn.showModal({
|
395
|
395
|
title: "团长号提交失败",
|
|
@@ -422,43 +422,41 @@ export default {
|
422
|
422
|
// return;
|
423
|
423
|
// self.fn.showToast("注册成功");
|
424
|
424
|
let sendData = {
|
425
|
|
- platform: this.form.fromPlatform,
|
426
|
|
- };
|
427
|
|
- if(this.hideReturn){
|
428
|
|
- sendData.code = this.pidCode;
|
429
|
|
- }
|
430
|
|
- this.api
|
431
|
|
- .get("/Group/CheckCode", sendData)
|
432
|
|
- .then((res) => {
|
433
|
|
- if (res.success) {
|
434
|
|
- if (res.data.verified) {
|
435
|
|
- this.router.push({
|
436
|
|
- path: "/pages/assistant/index",
|
437
|
|
- isTabBar: true,
|
438
|
|
- });
|
439
|
|
- } else {
|
440
|
|
- this.fn.showModal({
|
441
|
|
- title: "失败",
|
442
|
|
- content:
|
443
|
|
- "助理没有收到您发送在群里的团长号,请确认1、2、3步全部完成后再试",
|
444
|
|
- showCancel: false,
|
445
|
|
- });
|
446
|
|
- }
|
|
425
|
+ platform: this.form.fromPlatform,
|
|
426
|
+ };
|
|
427
|
+ // if (this.hideReturn) {
|
|
428
|
+ // sendData.code = this.pidCode;
|
|
429
|
+ // }
|
|
430
|
+ this.api.get("/Group/CheckCode", sendData).then((res) => {
|
|
431
|
+ if (res.success) {
|
|
432
|
+ if (res.data.verified) {
|
|
433
|
+ this.router.push({
|
|
434
|
+ path: "/pages/assistant/index",
|
|
435
|
+ isTabBar: true,
|
|
436
|
+ });
|
447
|
437
|
} else {
|
448
|
|
- this.fn
|
449
|
|
- .showModal({
|
450
|
|
- title: "未填写团长号",
|
451
|
|
- content: "确认返回团长号填写",
|
452
|
|
- showCancel: false,
|
453
|
|
- })
|
454
|
|
- .then((res) => {
|
455
|
|
- if (res.confirm) {
|
456
|
|
- this.step = 2;
|
457
|
|
- }
|
458
|
|
- });
|
459
|
|
- // this.router.push("/index/register?step=2");
|
|
438
|
+ this.fn.showModal({
|
|
439
|
+ title: "失败",
|
|
440
|
+ content:
|
|
441
|
+ "助理没有收到您发送在群里的团长号,请确认1、2、3步全部完成后再试",
|
|
442
|
+ showCancel: false,
|
|
443
|
+ });
|
460
|
444
|
}
|
461
|
|
- });
|
|
445
|
+ } else {
|
|
446
|
+ this.fn
|
|
447
|
+ .showModal({
|
|
448
|
+ title: "未填写团长号",
|
|
449
|
+ content: "确认返回团长号填写",
|
|
450
|
+ showCancel: false,
|
|
451
|
+ })
|
|
452
|
+ .then((res) => {
|
|
453
|
+ if (res.confirm) {
|
|
454
|
+ this.step = 2;
|
|
455
|
+ }
|
|
456
|
+ });
|
|
457
|
+ // this.router.push("/index/register?step=2");
|
|
458
|
+ }
|
|
459
|
+ });
|
462
|
460
|
},
|
463
|
461
|
},
|
464
|
462
|
|