Browse Source

添加群

cr 4 years ago
parent
commit
7d592364bc
3 changed files with 86 additions and 52 deletions
  1. 47 47
      src/App.vue
  2. 12 1
      src/pages/assistant/index.vue
  3. 27 4
      src/pages/index/register.vue

+ 47 - 47
src/App.vue

@@ -35,53 +35,53 @@ export default {
35 35
         console.log(user);
36 36
 
37 37
         // 判断用户是否验证团长号
38
-        // if (user.roleId && user.bundleId !== 0) {
39
-        // } else {
40
-        //     this.api
41
-        //         .get(
42
-        //             "/Group/CheckCode",
43
-        //             {
44
-        //                 platform: user.fromPlatform,
45
-        //             },
46
-        //             { pass: true }
47
-        //         )
48
-        //         .then((res) => {
49
-        //             if (res.success) {
50
-        //                 if (res.data.verified) {
51
-        //                     if (!res.data.storeId) {
52
-        //                         this.router.push({
53
-        //                             isTabBar: true,
54
-        //                             path: "/pages/assistant/index",
55
-        //                         });
56
-        //                         this.fn.setTabBar([3]);
57
-        //                     } else {
58
-        //                         this.router.push({
59
-        //                             isTabBar: true,
60
-        //                             path: "/pages/index/index",
61
-        //                         });
62
-        //                         this.fn.setTabBar([1, 2]);
63
-        //                     }
64
-        //                 } else {
65
-        //                     this.router.push({
66
-        //                         path: "/pages/index/register",
67
-        //                         query: {
68
-        //                             pidCode: res.data.code,
69
-        //                             step: 3,
70
-        //                         },
71
-        //                     });
72
-        //                     this.fn.setTabBar([3]);
73
-        //                 }
74
-        //             } else {
75
-        //                 this.router.push({
76
-        //                     path: "/pages/index/register",
77
-        //                     query: {
78
-        //                         step: 2,
79
-        //                     },
80
-        //                 });
81
-        //                 this.fn.setTabBar([3]);
82
-        //             }
83
-        //         });
84
-        // }
38
+        if (user.roleId && user.bundleId !== 0) {
39
+        } else {
40
+            this.api
41
+                .get(
42
+                    "/Group/CheckCode",
43
+                    {
44
+                        platform: user.fromPlatform,
45
+                    },
46
+                    { pass: true }
47
+                )
48
+                .then((res) => {
49
+                    if (res.success) {
50
+                        if (res.data.verified) {
51
+                            if (!res.data.storeId) {
52
+                                this.router.push({
53
+                                    isTabBar: true,
54
+                                    path: "/pages/assistant/index",
55
+                                });
56
+                                this.fn.setTabBar([3]);
57
+                            } else {
58
+                                this.router.push({
59
+                                    isTabBar: true,
60
+                                    path: "/pages/index/index",
61
+                                });
62
+                                this.fn.setTabBar([1, 2]);
63
+                            }
64
+                        } else {
65
+                            this.router.push({
66
+                                path: "/pages/index/register",
67
+                                query: {
68
+                                    pidCode: res.data.code,
69
+                                    step: 3,
70
+                                },
71
+                            });
72
+                            this.fn.setTabBar([3]);
73
+                        }
74
+                    } else {
75
+                        this.router.push({
76
+                            path: "/pages/index/register",
77
+                            query: {
78
+                                step: 2,
79
+                            },
80
+                        });
81
+                        this.fn.setTabBar([3]);
82
+                    }
83
+                });
84
+        }
85 85
     },
86 86
 
87 87
     onShow: async function (option) {

+ 12 - 1
src/pages/assistant/index.vue

@@ -24,6 +24,7 @@
24 24
                         ></my-image>
25 25
                     </li>
26 26
                 </block>
27
+                <button class="btn" @click="jump({path:'/pages/index/register',query:{step:3,add:'add'}})">添加群</button>
27 28
             </ul>
28 29
 
29 30
             <!-- 平台 -->
@@ -265,6 +266,16 @@ export default {
265 266
     height: px(80);
266 267
 }
267 268
 .page {
268
-    padding-bottom: 6rem;
269
+    padding-bottom: 9rem;
270
+}
271
+.btn {
272
+    position: fixed;
273
+    bottom: 6rem;
274
+    left: px(30);
275
+    right: px(30);
276
+    z-index: 10;
277
+    color: #fff;
278
+    background-color: rgb(0, 188, 38);
279
+    font-size: px(44);
269 280
 }
270 281
 </style>

+ 27 - 4
src/pages/index/register.vue

@@ -1,6 +1,6 @@
1 1
 <template>
2 2
     <div class="page">
3
-        <my-nav :title="'注册'" :hideIcon="true"></my-nav>
3
+        <my-nav :title="pageTitle" :hideIcon="true"></my-nav>
4 4
         <div class="main" v-if="step === 1">
5 5
             <!-- <div class="tit">注册</div> -->
6 6
             <div class="inp-box">
@@ -101,7 +101,7 @@
101 101
             </div>
102 102
         </div>
103 103
         <div class="main" v-if="step === 3">
104
-            <div class="return-page" @click="step=2">
104
+            <div class="return-page" @click="step = 2" v-if="!hideReturn">
105 105
                 <my-image
106 106
                     class="arrow"
107 107
                     src="/static/common/arrows_left.png"
@@ -170,6 +170,7 @@ export default {
170 170
     // 数据
171 171
     data() {
172 172
         return {
173
+            pageTitle: "注册",
173 174
             step: 1,
174 175
             form: {
175 176
                 mobile: "",
@@ -189,6 +190,7 @@ export default {
189 190
                 imageUrl:
190 191
                     "https://oss.ixiaokejia.com/images/common/share_register.jpg",
191 192
             },
193
+            hideReturn: false,
192 194
         };
193 195
     },
194 196
 
@@ -205,6 +207,11 @@ export default {
205 207
         if (opts.fromPlatform) {
206 208
             this.form.fromPlatform = Number(opts.fromPlatform);
207 209
         }
210
+        if (opts.add === "add") {
211
+            this.pageTitle = "添加群";
212
+            this.hideReturn = true;
213
+            this.getGenCode();
214
+        }
208 215
         uni.hideLoading();
209 216
     },
210 217
 
@@ -212,6 +219,18 @@ export default {
212 219
 
213 220
     // 函数
214 221
     methods: {
222
+        getGenCode() {
223
+            this.api
224
+                .get(
225
+                    "/Group/GetGenCode",
226
+                    { platform: this.user.platform },
227
+                    { pass: true }
228
+                )
229
+                .then((res) => {
230
+                    this.pidCode = res.data;
231
+                });
232
+        },
233
+
215 234
         getAvailableWechat() {
216 235
             this.api
217 236
                 .get("/Group/GetAvailableWechat", {}, { pass: true })
@@ -428,7 +447,11 @@ export default {
428 447
     },
429 448
 
430 449
     // 数据计算
431
-    computed: {},
450
+    computed: {
451
+        user() {
452
+            return this.$store.state.user.user;
453
+        },
454
+    },
432 455
 
433 456
     // 数据监听
434 457
     watch: {},
@@ -590,7 +613,7 @@ export default {
590 613
     display: flex;
591 614
     justify-content: flex-start;
592 615
     align-items: center;
593
-    transform: translate(0,px(-80));
616
+    transform: translate(0, px(-80));
594 617
     color: #666;
595 618
     .arrow {
596 619
         width: px(40);