cr лет назад: 4
Родитель
Сommit
cc92f7eab0
5 измененных файлов с 809 добавлено и 52 удалено
  1. 32 32
      src/App.vue
  2. 8 1
      src/pages.json
  3. 36 15
      src/pages/index/login.vue
  4. 684 0
      src/pages/index/register2.vue
  5. 49 4
      src/pages/manage/user/index.vue

+ 32 - 32
src/App.vue

@@ -35,38 +35,38 @@ 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
-                        } else {
52
-                            this.router.push({
53
-                                path: "/pages/index/register",
54
-                                query: {
55
-                                    pidCode: res.data.code,
56
-                                    step: 3,
57
-                                },
58
-                            });
59
-                        }
60
-                    } else {
61
-                        this.router.push({
62
-                            path: "/pages/index/register",
63
-                            query: {
64
-                                step: 2,
65
-                            },
66
-                        });
67
-                    }
68
-                });
69
-        }
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
+        //                 } else {
52
+        //                     this.router.push({
53
+        //                         path: "/pages/index/register",
54
+        //                         query: {
55
+        //                             pidCode: res.data.code,
56
+        //                             step: 3,
57
+        //                         },
58
+        //                     });
59
+        //                 }
60
+        //             } else {
61
+        //                 this.router.push({
62
+        //                     path: "/pages/index/register",
63
+        //                     query: {
64
+        //                         step: 2,
65
+        //                     },
66
+        //                 });
67
+        //             }
68
+        //         });
69
+        // }
70 70
     },
71 71
 
72 72
     onShow: async function (option) {

+ 8 - 1
src/pages.json

@@ -353,7 +353,14 @@
353 353
         {
354 354
             "path": "pages/index/register",
355 355
             "style": {
356
-                "navigationBarTitleText": "开通群助理",
356
+                "navigationBarTitleText": "快速注册",
357
+                "navigationStyle":"custom"
358
+            }
359
+        },
360
+        {
361
+            "path": "pages/index/register2",
362
+            "style": {
363
+                "navigationBarTitleText": "快速注册",
357 364
                 "navigationStyle":"custom"
358 365
             }
359 366
         },

+ 36 - 15
src/pages/index/login.vue

@@ -20,9 +20,12 @@
20 20
             </div>
21 21
             <button class="btn" @click="submit">确定</button>
22 22
             <div class="login-other">
23
-                <a class="go-register" @click="jumpRegister"
24
-                    >去注册</a
25
-                >
23
+                <div class="register-box">
24
+                    <a class="go-register" @click="jumpRegister">去注册</a>
25
+                    <a class="go-register register2" @click="jumpRegister2"
26
+                        >无团找号注册</a
27
+                    >
28
+                </div>
26 29
                 <a
27 30
                     class="find-password"
28 31
                     @click="jump('/pages/index/find-password')"
@@ -44,7 +47,7 @@ export default {
44 47
         return {
45 48
             userName: "",
46 49
             password: "",
47
-            urlQuery:{},
50
+            urlQuery: {},
48 51
         };
49 52
     },
50 53
 
@@ -57,12 +60,18 @@ export default {
57 60
 
58 61
     // 函数
59 62
     methods: {
63
+        jumpRegister() {
64
+            this.router.push({
65
+                path: "/pages/index/register",
66
+                query: this.urlQuery,
67
+            });
68
+        },
60 69
 
61
-        jumpRegister(){
70
+        jumpRegister2() {
62 71
             this.router.push({
63
-                path:'/pages/index/register',
64
-                query:this.urlQuery
65
-            })
72
+                path: "/pages/index/register2",
73
+                query: this.urlQuery,
74
+            });
66 75
         },
67 76
 
68 77
         submit() {
@@ -181,13 +190,17 @@ export default {
181 190
                                 curShop: {},
182 191
                             });
183 192
 
184
-                            this.checkcode(
185
-                                {
186
-                                    // code: "hht2120201",
187
-                                    platform: res.data.fromPlatform,
188
-                                },
189
-                                res
190
-                            );
193
+                            // this.checkcode(
194
+                            //     {
195
+                            //         // code: "hht2120201",
196
+                            //         platform: res.data.fromPlatform,
197
+                            //     },
198
+                            //     res
199
+                            // );
200
+                            this.router.push({
201
+                                isTabBar: true,
202
+                                path: "/pages/index/index",
203
+                            });
191 204
                         }
192 205
                     } else {
193 206
                         this.fn.showModal({
@@ -272,4 +285,12 @@ export default {
272 285
         color: #4395ff;
273 286
     }
274 287
 }
288
+.register2 {
289
+    margin-left: px(30);
290
+}
291
+.register-box{
292
+    display: flex;
293
+    justify-content: flex-start;
294
+    align-items: center;
295
+}
275 296
 </style>

+ 684 - 0
src/pages/index/register2.vue

@@ -0,0 +1,684 @@
1
+<template>
2
+    <div class="page">
3
+        <my-nav :title="pageTitle" :hideIcon="true"></my-nav>
4
+        <div class="main" v-if="step === 1">
5
+            <!-- <div class="tit">注册</div> -->
6
+            <div class="inp-box">
7
+                <input
8
+                    type="number"
9
+                    name="mobile"
10
+                    v-model="form.mobile"
11
+                    placeholder="手机号码"
12
+                />
13
+            </div>
14
+
15
+            <div class="inp-box code-box">
16
+                <input
17
+                    type="number"
18
+                    name="smsCode"
19
+                    v-model="form.smsCode"
20
+                    placeholder="验证码"
21
+                />
22
+                <span
23
+                    class="code-btn"
24
+                    :class="{ dis: timeing }"
25
+                    @click="getCode()"
26
+                    >{{ codeStr }}</span
27
+                >
28
+            </div>
29
+
30
+            <div class="inp-box">
31
+                <input
32
+                    type="password"
33
+                    name="password"
34
+                    v-model="form.password"
35
+                    placeholder="请输入密码"
36
+                />
37
+            </div>
38
+            <div class="inp-box">
39
+                <input
40
+                    type="password"
41
+                    name="password2"
42
+                    v-model="form.password2"
43
+                    placeholder="确认密码"
44
+                />
45
+            </div>
46
+            <button class="btn" @click="submit">注册</button>
47
+            <p class="go-login">
48
+                <a
49
+                    class="text"
50
+                    @click="
51
+                        jump({ path: '/pages/index/login', isTabBar: true })
52
+                    "
53
+                    >已有帐号,去登录</a
54
+                >
55
+            </p>
56
+        </div>
57
+        <div class="main" v-if="step === 2">
58
+            <div class="tit">填写区区购团长号</div>
59
+            <div class="inp-box">
60
+                <input
61
+                    type="number"
62
+                    name="teamNum"
63
+                    v-model="form.teamNum"
64
+                    placeholder="团长号:9000xxxxxx"
65
+                />
66
+            </div>
67
+            <button class="btn" @click="saveTeamNum">下一步</button>
68
+            <div class="team-num-des">
69
+                <h1 class="tit">在哪里看京东区区购团长号?</h1>
70
+                <p class="text">
71
+                    在京东区区购店长版后台,个人中心,点击头像进去就可以看到
72
+                </p>
73
+                <div class="video">
74
+                    <video
75
+                        src="https://oss.ixiaokejia.com/videos/get-pid.mp4"
76
+                        poster="https://oss.ixiaokejia.com/images/common/video_poster.png"
77
+                    ></video>
78
+                </div>
79
+
80
+                <p
81
+                    class="text"
82
+                    @click="copy('jingzhunwlyx', '复制客服微信成功')"
83
+                >
84
+                    如有问题,添加客服微信:<span class="wechat"
85
+                        >jingzhunwlyx</span
86
+                    >
87
+                    <span class="copy">点击复制</span
88
+                    >,或长按下方二维码添加客服咨询
89
+                </p>
90
+                <div class="img">
91
+                    <my-image
92
+                        mode="widthFix"
93
+                        @click="
94
+                            viewImg(
95
+                                'https://oss.ixiaokejia.com/images/common/kefu_qrcode.jpg'
96
+                            )
97
+                        "
98
+                        src="https://oss.ixiaokejia.com/images/common/kefu_qrcode.jpg"
99
+                    ></my-image>
100
+                </div>
101
+            </div>
102
+        </div>
103
+        <div class="main" v-if="step === 3">
104
+            <div class="return-page" @click="step = 2" v-if="!hideReturn">
105
+                <my-image
106
+                    class="arrow"
107
+                    src="/static/common/arrows_left.png"
108
+                ></my-image
109
+                >返回填写团长号
110
+            </div>
111
+            <div class="tit">添加助理微信</div>
112
+            <ul class="add-assistant">
113
+                <li @click="copy(kefu._id, '复制群助理微信成功')">
114
+                    <div class="step">第一步:</div>
115
+                    <div class="con">
116
+                        <div>
117
+                            助理微信:<span class="wechat">{{ kefu._id }}</span>
118
+                            <span class="copy">点击复制</span>
119
+                        </div>
120
+                        <my-image
121
+                            class="wechat-img"
122
+                            mode="widthFix"
123
+                            @click="viewImg(kefu.qrCode)"
124
+                            :src="kefu.qrCode"
125
+                        ></my-image>
126
+                    </div>
127
+                </li>
128
+                <li>
129
+                    <div class="step">第二步:</div>
130
+                    <div class="con">
131
+                        <div class="font-blod">将助理拉入群</div>
132
+                    </div>
133
+                </li>
134
+                <li>
135
+                    <div class="step">第三步:</div>
136
+                    <div class="con">
137
+                        <div>在群里@群助理</div>
138
+                    </div>
139
+                </li>
140
+                <li
141
+                    @click="
142
+                        copy(
143
+                            pidCode,
144
+                            '已复制群验证码,请粘贴发送到要开通助理的群内'
145
+                        )
146
+                    "
147
+                >
148
+                    <div class="step">第四步:</div>
149
+                    <div class="con">
150
+                        <div>
151
+                            发送
152
+                            <span class="wechat red">{{ pidCode }}</span> 到群内
153
+                            <span class="copy">点击复制</span>
154
+                        </div>
155
+                    </div>
156
+                </li>
157
+            </ul>
158
+            <button class="btn" @click="saveOk">已完成</button>
159
+        </div>
160
+    </div>
161
+</template>
162
+
163
+<script>
164
+import MyImage from "../../components/image/index";
165
+import MyNav from "../../components/layout/nav";
166
+
167
+export default {
168
+    name: "",
169
+    components: { MyImage, MyNav },
170
+    // 数据
171
+    data() {
172
+        return {
173
+            pageTitle: "注册",
174
+            step: 1,
175
+            form: {
176
+                mobile: "",
177
+                smsCode: "",
178
+                password: "",
179
+                password2: "",
180
+                teamNum: "",
181
+                fromPlatform: 1,
182
+            },
183
+            timeing: false,
184
+            codeStr: "发送验证码",
185
+            pidCode: "",
186
+            kefu: {},
187
+            share: {
188
+                title: "开通群助理",
189
+                path: "/pages/index/register",
190
+                imageUrl:
191
+                    "https://oss.ixiaokejia.com/images/common/share_register.jpg",
192
+            },
193
+
194
+            hideReturn: false,
195
+            inviteCode: "",
196
+            timer: null,
197
+        };
198
+    },
199
+
200
+    onLoad(opts) {
201
+        if (opts.step) {
202
+            this.step = Number(opts.step);
203
+            if (this.step === 3) {
204
+                this.getAvailableWechat();
205
+            }
206
+        }
207
+        if (opts.pidCode) {
208
+            this.pidCode = opts.pidCode;
209
+        }
210
+        if (opts.inviteCode) {
211
+            this.inviteCode = opts.inviteCode;
212
+        }
213
+        if (opts.fromPlatform) {
214
+            this.form.fromPlatform = Number(opts.fromPlatform);
215
+        }
216
+        if (opts.add === "add") {
217
+            this.pageTitle = "添加群";
218
+            this.hideReturn = true;
219
+            this.getGenCode();
220
+        }
221
+        uni.hideLoading();
222
+    },
223
+
224
+    onShow() {},
225
+
226
+    // 函数
227
+    methods: {
228
+        getGenCode() {
229
+            this.api
230
+                .get(
231
+                    "/Group/GetGenCode",
232
+                    { platform: this.user.platform },
233
+                    { pass: true }
234
+                )
235
+                .then((res) => {
236
+                    this.pidCode = res.data;
237
+                });
238
+        },
239
+
240
+        getAvailableWechat(pid) {
241
+            let sendData = {};
242
+            if (pid) {
243
+                sendData.pid = pid;
244
+            }
245
+            this.api
246
+                .get("/Group/GetAvailableWechat", sendData, { pass: true })
247
+                .then((res) => {
248
+                    if (res.data.length === 0) {
249
+                        this.fn.showModal({
250
+                            title: "提示",
251
+                            content:
252
+                                "暂时所有群助理都已经排满,请您联系客服或稍后再试。客服微信:jingzhunwlyx",
253
+                            showCancel: false,
254
+                        });
255
+                    } else {
256
+                        this.kefu = res.data[0] ? res.data[0] : {};
257
+                        console.log(this.kefu);
258
+                    }
259
+                });
260
+        },
261
+
262
+        getCode() {
263
+            if (this.timeing) {
264
+                return;
265
+            }
266
+            let phoneReg = /^[1][1-9][0-9]{9}$/;
267
+            if (!this.form.mobile) {
268
+                return this.fn.showToast("请输入手机号");
269
+            }
270
+            if (!phoneReg.test(this.form.mobile)) {
271
+                return this.fn.showToast("手机号格式不正确");
272
+            }
273
+            this.sendCode();
274
+            this.downTime();
275
+        },
276
+        sendCode() {
277
+            this.api
278
+                .get("/Login/SendSms", { mobile: this.form.mobile })
279
+                .then((res) => {});
280
+        },
281
+        downTime() {
282
+            this.timeing = true;
283
+            let t = 60;
284
+            this.codeStr = t + "s重新获取";
285
+            this.timer = setInterval(() => {
286
+                t--;
287
+                if (t === 0) {
288
+                    clearInterval(this.timer);
289
+                    this.codeStr = "发送验证码";
290
+                    this.timeing = false;
291
+                } else {
292
+                    this.codeStr = t + "s重新获取";
293
+                }
294
+            }, 1000);
295
+        },
296
+
297
+        submit() {
298
+            if (!this.form.mobile) {
299
+                this.fn.showToast(`请输入手机号码`);
300
+                return;
301
+            }
302
+            if (!this.form.smsCode) {
303
+                this.fn.showToast(`请输入验证码`);
304
+                return;
305
+            }
306
+
307
+            if (!this.form.password) {
308
+                this.fn.showToast(`请输入密码`);
309
+                return;
310
+            }
311
+
312
+            if (this.form.password.length < 6) {
313
+                this.fn.showToast(`密码最少6位`);
314
+                return;
315
+            }
316
+
317
+            if (!this.form.password2) {
318
+                this.fn.showToast(`请输入确认密码`);
319
+                return;
320
+            }
321
+
322
+            if (this.form.password2 !== this.form.password) {
323
+                this.fn.showToast(`两次密码不一致`);
324
+                return;
325
+            }
326
+
327
+            uni.showLoading({
328
+                title: "提交中",
329
+            });
330
+            // this.step = 2;
331
+            let sendData = {
332
+                code: "",
333
+                mobile: this.form.mobile,
334
+                smsCode: this.form.smsCode,
335
+                password: this.form.password,
336
+                fromPlatform: this.form.fromPlatform,
337
+            };
338
+            if (this.inviteCode) {
339
+                sendData.parentInviteCode = this.inviteCode;
340
+            }
341
+            uni.login({
342
+                provider: "weixin",
343
+                success: (result) => {
344
+                    sendData.code = result.code;
345
+                    this.api.post("/Login/Register", sendData).then((res) => {
346
+                        uni.hideLoading();
347
+                        clearInterval(this.timer);
348
+                        this.codeStr = "发送验证码";
349
+                        this.timeing = false;
350
+                        if (res.success) {
351
+                            res.data.companyId = res.data.companyId || null;
352
+                            this.fn.showToast(`注册成功`);
353
+                            // 正常用户
354
+                            this.$store.commit("user/login", res.data);
355
+                            this.$store.commit("common/update", {
356
+                                curShop: {},
357
+                            });
358
+                            this.router.push({
359
+                                path: "/pages/assistant/index",
360
+                                isTabBar: true,
361
+                            });
362
+                        } else {
363
+                            this.fn.showModal({
364
+                                title: "注册失败",
365
+                                content: res.message,
366
+                                showCancel: false,
367
+                            });
368
+                        }
369
+                    });
370
+                },
371
+            });
372
+        },
373
+
374
+        saveTeamNum() {
375
+            if (!this.form.teamNum) {
376
+                return this.fn.showToast(`请输入团长号`);
377
+            }
378
+            let reg = /^9\d{9}$/;
379
+            if (!reg.test(this.form.teamNum)) {
380
+                return this.fn.showToast("团长号为9开头的10位数字");
381
+            }
382
+            uni.showLoading({
383
+                title: "提交中",
384
+            });
385
+            // this.step = 2;
386
+            this.form.fromPlatform = 1;
387
+            let sendData = {
388
+                pid: this.form.teamNum,
389
+                platform: this.form.fromPlatform,
390
+            };
391
+            this.api
392
+                .get("/Group/GetGroupInfo", sendData, { pass: true })
393
+                .then((res) => {
394
+                    uni.hideLoading();
395
+                    if (res.success) {
396
+                        if (res.data) {
397
+                            this.fn
398
+                                .showModal({
399
+                                    title: "团长信息",
400
+                                    content: `当前团店铺名称为:${res.data.shopName},是否确认提交`,
401
+                                })
402
+                                .then((res) => {
403
+                                    if (res.confirm) {
404
+                                        this.commitPid(sendData);
405
+                                    } else {
406
+                                    }
407
+                                });
408
+                        } else {
409
+                            this.fn.showModal({
410
+                                title: "获取团长信息失败",
411
+                                content: "当前团长号未获取到团长信息",
412
+                                showCancel: false,
413
+                            });
414
+                        }
415
+                    } else {
416
+                        this.fn.showModal({
417
+                            title: "获取团长信息失败",
418
+                            content: res.message,
419
+                            showCancel: false,
420
+                        });
421
+                    }
422
+                });
423
+        },
424
+
425
+        commitPid(sendData) {
426
+            this.api
427
+                .post("/Group/CommitPid", sendData, { pass: true })
428
+                .then((res) => {
429
+                    if (res.success) {
430
+                        this.fn.showToast(`团长号提交成功`);
431
+                        this.pidCode = res.data;
432
+                        this.step = 3;
433
+                        this.getAvailableWechat(this.form.teamNum);
434
+                    } else {
435
+                        this.fn.showModal({
436
+                            title: "团长号提交失败",
437
+                            content: res.message,
438
+                            showCancel: false,
439
+                        });
440
+                    }
441
+                });
442
+        },
443
+
444
+        viewImg(url) {
445
+            uni.previewImage({
446
+                urls: [url],
447
+            });
448
+        },
449
+
450
+        copy(val, str) {
451
+            const self = this;
452
+
453
+            uni.setClipboardData({
454
+                data: val,
455
+                success: () => {
456
+                    self.fn.showToast(str || "复制成功");
457
+                },
458
+            });
459
+        },
460
+
461
+        saveOk() {
462
+            // this.router.push("/pages/index/register?step=2");
463
+            // return;
464
+            // self.fn.showToast("注册成功");
465
+            let sendData = {
466
+                platform: this.form.fromPlatform,
467
+            };
468
+            // if (this.hideReturn) {
469
+            //     sendData.code = this.pidCode;
470
+            // }
471
+            this.api.get("/Group/CheckCode", sendData).then((res) => {
472
+                if (res.success) {
473
+                    if (res.data.verified) {
474
+                        this.router.push({
475
+                            path: "/pages/assistant/index",
476
+                            isTabBar: true,
477
+                        });
478
+                    } else {
479
+                        this.fn.showModal({
480
+                            title: "失败",
481
+                            content:
482
+                                "助理没有收到您发送在群里的团长号,请确认1、2、3步全部完成后再试",
483
+                            showCancel: false,
484
+                        });
485
+                    }
486
+                } else {
487
+                    this.fn
488
+                        .showModal({
489
+                            title: "未填写团长号",
490
+                            content: "确认返回团长号填写",
491
+                            showCancel: false,
492
+                        })
493
+                        .then((res) => {
494
+                            if (res.confirm) {
495
+                                this.step = 2;
496
+                            }
497
+                        });
498
+                    // this.router.push("/index/register?step=2");
499
+                }
500
+            });
501
+        },
502
+    },
503
+
504
+    // 数据计算
505
+    computed: {
506
+        user() {
507
+            return this.$store.state.user.user;
508
+        },
509
+    },
510
+
511
+    // 数据监听
512
+    watch: {},
513
+};
514
+</script>
515
+
516
+
517
+<style lang="scss" scoped>
518
+.page {
519
+    height: 100vh;
520
+    background-color: #fff;
521
+}
522
+.main {
523
+    padding-top: px(120);
524
+    padding-left: px(40);
525
+    padding-right: px(40);
526
+}
527
+.tit {
528
+    font-size: px(50);
529
+    padding-bottom: px(100);
530
+    text-align: center;
531
+    padding-bottom: px(100);
532
+}
533
+.inp-box {
534
+    display: flex;
535
+    justify-content: space-between;
536
+    align-items: center;
537
+    border-bottom: 1px solid #c3c1c2;
538
+    padding: px(30) 0;
539
+    margin-bottom: px(30);
540
+}
541
+.inp-box span {
542
+    font-size: px(32);
543
+    color: rgb(0, 188, 38);
544
+    border-radius: px(15);
545
+    border: 1px solid rgb(0, 188, 38);
546
+    width: px(230);
547
+    height: px(80);
548
+    text-align: center;
549
+    line-height: px(80);
550
+    flex-shrink: 0;
551
+    margin-left: px(30);
552
+}
553
+.inp-box input {
554
+    width: 100%;
555
+}
556
+.inp-box .dis {
557
+    color: #999;
558
+    border-color: #999;
559
+    pointer-events: none;
560
+}
561
+.btn {
562
+    margin-top: px(120);
563
+    color: #fff;
564
+    background-color: rgb(0, 188, 38);
565
+    font-size: px(44);
566
+}
567
+.code-box {
568
+    display: flex;
569
+    justify-content: space-between;
570
+    align-items: center;
571
+    .code-btn {
572
+        width: px(250);
573
+        flex-shrink: 0;
574
+        font-size: px(40);
575
+        padding: 0 px(10);
576
+        border: none;
577
+        &.dis {
578
+            border-color: #f1f1f1;
579
+            color: #999;
580
+        }
581
+    }
582
+}
583
+.team-num-des {
584
+    padding: px(80) px(30);
585
+    text-align: center;
586
+    line-height: 1.5;
587
+    .tit {
588
+        font-size: px(48);
589
+        padding: px(10) 0;
590
+    }
591
+    .text {
592
+        font-size: px(44);
593
+        padding: px(15) 0;
594
+    }
595
+    video {
596
+        width: 80vw;
597
+        height: calc(80vw / 0.466666);
598
+        display: block;
599
+        margin: 0 auto;
600
+    }
601
+    .img,
602
+    .video {
603
+        padding: px(20) 0;
604
+    }
605
+    /deep/ img {
606
+        width: 80%;
607
+        display: block;
608
+        margin: 0 auto;
609
+    }
610
+}
611
+.add-assistant {
612
+    border-top: 1px solid #f1f1f1;
613
+    li {
614
+        display: flex;
615
+        justify-content: space-between;
616
+        font-size: px(44);
617
+        padding: px(30);
618
+        border-bottom: 1px solid #f1f1f1;
619
+        .step {
620
+            width: px(200);
621
+            flex-shrink: 0;
622
+            font-weight: bold;
623
+        }
624
+        .con {
625
+            width: 100%;
626
+        }
627
+        .wechat-img {
628
+            padding: px(10);
629
+            /deep/ img {
630
+                width: px(600);
631
+            }
632
+        }
633
+    }
634
+}
635
+.copy {
636
+    display: inline-block;
637
+    font-size: px(32);
638
+    line-height: px(44);
639
+    padding: 0 px(10);
640
+    border: 1px solid #4395ff;
641
+    color: #4395ff;
642
+    background-color: #fff;
643
+    margin-left: px(20);
644
+    border-radius: px(5);
645
+    transform: translate(0, -1px);
646
+}
647
+.wechat {
648
+    color: #4395ff;
649
+    &.red {
650
+        color: red;
651
+        font-weight: bold;
652
+    }
653
+}
654
+.go-login {
655
+    text-align: center;
656
+    padding-top: px(60);
657
+    .text {
658
+        display: inline-block;
659
+        color: #4395ff;
660
+    }
661
+}
662
+.font-blod {
663
+    font-weight: bold;
664
+}
665
+.return-page {
666
+    font-size: px(40);
667
+    color: #333;
668
+    display: flex;
669
+    justify-content: flex-start;
670
+    align-items: center;
671
+    transform: translate(0, px(-80));
672
+    color: #666;
673
+    .arrow {
674
+        width: px(40);
675
+        height: px(40);
676
+        flex-shrink: 0;
677
+        margin-right: px(20);
678
+        /deep/ img {
679
+            width: px(40);
680
+            height: px(40);
681
+        }
682
+    }
683
+}
684
+</style>

+ 49 - 4
src/pages/manage/user/index.vue

@@ -29,6 +29,20 @@
29 29
                     src="/static/common/arrows_left.png"
30 30
                 ></my-image>
31 31
             </li>
32
+            <button open-type="share" class="item" id="2">
33
+                <div class="name">邀请团长</div>
34
+                <my-image
35
+                    class="arrow"
36
+                    src="/static/common/arrows_left.png"
37
+                ></my-image>
38
+            </button>
39
+            <button open-type="share" class="item" id="1">
40
+                <div class="name">邀请区区购团长</div>
41
+                <my-image
42
+                    class="arrow"
43
+                    src="/static/common/arrows_left.png"
44
+                ></my-image>
45
+            </button>
32 46
         </ul>
33 47
         <button class="btn" @click="layout">退出登录</button>
34 48
     </div>
@@ -44,14 +58,14 @@ export default {
44 58
     data() {
45 59
         return {
46 60
             curShop: {},
47
-            menuList:[]
61
+            menuList: [],
48 62
         };
49 63
     },
50 64
 
51 65
     onLoad() {
52 66
         let appMenuList = this.$store.state.user.menuList;
53
-        for(let item of appMenuList){
54
-            if(item.id === 'mobile_statistic'){
67
+        for (let item of appMenuList) {
68
+            if (item.id === "mobile_statistic") {
55 69
                 this.menuList = item.children;
56 70
             }
57 71
         }
@@ -59,7 +73,6 @@ export default {
59 73
     async onShow() {},
60 74
     // 函数
61 75
     methods: {
62
-
63 76
         layout() {
64 77
             this.$store.commit("user/logout", null);
65 78
             this.router.push({
@@ -69,6 +82,28 @@ export default {
69 82
         },
70 83
     },
71 84
 
85
+    onShareAppMessage(res) {
86
+        if (res.from === "menu") {
87
+            return {};
88
+        } else {
89
+            if (res.target.id === "2") {
90
+                return {
91
+                    title: "开通群助理",
92
+                    path: "pages/index/register2",
93
+                    imageUrl:
94
+                        "https://oss.ixiaokejia.com/images/common/share_login.jpg",
95
+                };
96
+            } else {
97
+                return {
98
+                    title: "开通群助理",
99
+                    path: "pages/index/register",
100
+                    imageUrl:
101
+                        "https://oss.ixiaokejia.com/images/common/share_login.jpg",
102
+                };
103
+            }
104
+        }
105
+    },
106
+
72 107
     // 数据计算
73 108
     computed: {
74 109
         user() {
@@ -118,4 +153,14 @@ export default {
118 153
     background-color: #f3f3f3;
119 154
     font-size: px(44);
120 155
 }
156
+button.item {
157
+    background-color: #fff;
158
+    border: none;
159
+    border-bottom: 1px solid #f1f1f1;
160
+    border-radius: 0;
161
+    &::after,
162
+    &::before {
163
+        display: none;
164
+    }
165
+}
121 166
 </style>