Browse Source

修改bug

cr 4 years ago
parent
commit
f1f836c6fb
4 changed files with 43 additions and 48 deletions
  1. 2 2
      .env
  2. 3 6
      src/pages/assistant/add.vue
  3. 37 39
      src/pages/index/register.vue
  4. 1 1
      src/pages/manage/index.vue

+ 2 - 2
.env

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = develop
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = https://delivery.dev.ixiaokejia.com
10
+VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.dev.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 3 - 6
src/pages/assistant/add.vue

@@ -1,7 +1,6 @@
1 1
 <template>
2 2
     <div class="page">
3 3
         <div class="main">
4
-
5 4
             <div class="tit">添加助理微信</div>
6 5
             <ul class="add-assistant">
7 6
                 <li @click="copy(kefu._id, '复制群助理微信成功')">
@@ -89,7 +88,7 @@ export default {
89 88
             this.api
90 89
                 .get(
91 90
                     "/Group/GetGenCode",
92
-                    { platform: this.user.platform },
91
+                    { platform: this.user.fromPlatform },
93 92
                     { pass: true }
94 93
                 )
95 94
                 .then((res) => {
@@ -141,11 +140,9 @@ export default {
141 140
             // return;
142 141
             // self.fn.showToast("注册成功");
143 142
             let sendData = {
144
-                platform: this.form.fromPlatform,
143
+                platform: this.user.fromPlatform,
144
+                code: this.pidCode,
145 145
             };
146
-            if (this.hideReturn) {
147
-                sendData.code = this.pidCode;
148
-            }
149 146
             this.api.get("/Group/CheckCode", sendData).then((res) => {
150 147
                 if (res.success) {
151 148
                     if (res.data.verified) {

+ 37 - 39
src/pages/index/register.vue

@@ -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
 

+ 1 - 1
src/pages/manage/index.vue

@@ -63,7 +63,7 @@
63 63
 
64 64
         <!-- <button class="btn" @click="layout">退出登录</button> -->
65 65
 
66
-        <div class="ver">0.4.72</div>
66
+        <div class="ver">0.4.721</div>
67 67
         <wyg-bottom-tab
68 68
             ref="tabbar"
69 69
             :tabIndex="2"