Browse Source

修改bug

cr 4 years ago
parent
commit
49ce229119

+ 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 = http://localhost:8096
10
+VUE_APP_API_BASE_URL = https://delivery.dev.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = http://localhost:8096
16
+VUE_APP_IMAGE_BASE_URL = https://delivery.dev.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 25 - 24
src/components/wyg-bottom-tab/wyg-bottom-tab.vue

@@ -79,33 +79,33 @@ export default {
79 79
             //     }
80 80
             // }
81 81
 
82
-            let page = getCurrentPages();
83
-            let curPage = page[page.length - 1];
82
+            // let page = getCurrentPages();
83
+            // let curPage = page[page.length - 1];
84 84
             let tabList = this.$store.state.common.tabList;
85
-            let user = this.$store.state.user.user;
85
+            // let user = this.$store.state.user.user;
86 86
 
87
-            if (
88
-                curPage.route === "pages/index/index" ||
89
-                curPage.route === "pages/manage/index"
90
-            ) {
91
-                if (user.roleId && user.bundleId !== 0) {
92
-                } else {
93
-                    this.router.push({
94
-                        path: "/pages/guide/index",
95
-                        isTabBar: true,
96
-                    });
97
-                }
98
-            }
87
+            // if (
88
+            //     curPage.route === "pages/index/index" ||
89
+            //     curPage.route === "pages/manage/index"
90
+            // ) {
91
+            //     if (user.roleId && user.bundleId !== 0) {
92
+            //     } else {
93
+            //         this.router.push({
94
+            //             path: "/pages/guide/index",
95
+            //             isTabBar: true,
96
+            //         });
97
+            //     }
98
+            // }
99 99
 
100
-            if (user.roleId && user.bundleId !== 0) {
101
-            } else {
102
-                tabList = JSON.parse(JSON.stringify(tabList));
103
-                for (let item of tabList) {
104
-                    if (item.id === 1 || item.id === 2) {
105
-                        item.url = "/pages/guide/index";
106
-                    }
107
-                }
108
-            }
100
+            // if (user.roleId && user.bundleId !== 0) {
101
+            // } else {
102
+            //     tabList = JSON.parse(JSON.stringify(tabList));
103
+            //     for (let item of tabList) {
104
+            //         if (item.id === 1 || item.id === 2) {
105
+            //             item.url = "/pages/guide/index";
106
+            //         }
107
+            //     }
108
+            // }
109 109
             return tabList;
110 110
         },
111 111
         itemShowNum() {
@@ -139,6 +139,7 @@ export default {
139 139
     align-items: center;
140 140
     justify-content: space-between;
141 141
     z-index: 3000;
142
+    border-top: 1px solid #f1f1f1;
142 143
     .bottom-tab-item {
143 144
         width: 33%;
144 145
         display: flex;

+ 6 - 6
src/pages.json

@@ -35,12 +35,6 @@
35 35
                 "pagePath": "pages/index/login",
36 36
                 "iconPath": "static/tabBar/icon_green_4.png",
37 37
                 "selectedIconPath": "static/tabBar/icon_green_4_select.png"
38
-            },
39
-            {
40
-                "text": "开通店铺",
41
-                "pagePath": "pages/guide/index",
42
-                "iconPath": "static/tabBar/icon_green_4.png",
43
-                "selectedIconPath": "static/tabBar/icon_green_4_select.png"
44 38
             }
45 39
         ]
46 40
     },
@@ -377,6 +371,12 @@
377 371
             "style": {
378 372
                 "navigationBarTitleText": "申请店铺"
379 373
             }
374
+        },
375
+        {
376
+            "path": "pages/assistant/add",
377
+            "style": {
378
+                "navigationBarTitleText": "添加群"
379
+            }
380 380
         }
381 381
     ]
382 382
 }

+ 363 - 0
src/pages/assistant/add.vue

@@ -0,0 +1,363 @@
1
+<template>
2
+    <div class="page">
3
+        <div class="main">
4
+
5
+            <div class="tit">添加助理微信</div>
6
+            <ul class="add-assistant">
7
+                <li @click="copy(kefu._id, '复制群助理微信成功')">
8
+                    <div class="step">第一步:</div>
9
+                    <div class="con">
10
+                        <div>
11
+                            助理微信:<span class="wechat">{{ kefu._id }}</span>
12
+                            <span class="copy">点击复制</span>
13
+                        </div>
14
+                        <my-image
15
+                            class="wechat-img"
16
+                            mode="widthFix"
17
+                            @click="viewImg(kefu.qrCode)"
18
+                            :src="kefu.qrCode"
19
+                        ></my-image>
20
+                    </div>
21
+                </li>
22
+                <li>
23
+                    <div class="step">第二步:</div>
24
+                    <div class="con">
25
+                        <div class="font-blod">将助理拉入群</div>
26
+                    </div>
27
+                </li>
28
+                <li>
29
+                    <div class="step">第三步:</div>
30
+                    <div class="con">
31
+                        <div>在群里@群助理</div>
32
+                    </div>
33
+                </li>
34
+                <li
35
+                    @click="
36
+                        copy(
37
+                            pidCode,
38
+                            '已复制群验证码,请粘贴发送到要开通助理的群内'
39
+                        )
40
+                    "
41
+                >
42
+                    <div class="step">第四步:</div>
43
+                    <div class="con">
44
+                        <div>
45
+                            发送
46
+                            <span class="wechat red">{{ pidCode }}</span> 到群内
47
+                            <span class="copy">点击复制</span>
48
+                        </div>
49
+                    </div>
50
+                </li>
51
+            </ul>
52
+            <button class="btn" @click="saveOk">已完成</button>
53
+        </div>
54
+    </div>
55
+</template>
56
+
57
+<script>
58
+import MyImage from "../../components/image/index";
59
+
60
+export default {
61
+    name: "",
62
+    components: { MyImage },
63
+    // 数据
64
+    data() {
65
+        return {
66
+            pidCode: "",
67
+            kefu: {},
68
+            share: {
69
+                title: "开通群助理",
70
+                path: "/pages/index/register",
71
+                imageUrl:
72
+                    "https://oss.ixiaokejia.com/images/common/share_register.jpg",
73
+            },
74
+
75
+            inviteCode: "",
76
+        };
77
+    },
78
+
79
+    onLoad(opts) {
80
+        this.getAvailableWechat();
81
+        this.getGenCode();
82
+    },
83
+
84
+    onShow() {},
85
+
86
+    // 函数
87
+    methods: {
88
+        getGenCode() {
89
+            this.api
90
+                .get(
91
+                    "/Group/GetGenCode",
92
+                    { platform: this.user.platform },
93
+                    { pass: true }
94
+                )
95
+                .then((res) => {
96
+                    this.pidCode = res.data;
97
+                });
98
+        },
99
+
100
+        getAvailableWechat(pid) {
101
+            let sendData = {};
102
+            if (pid) {
103
+                sendData.pid = pid;
104
+            }
105
+            this.api
106
+                .get("/Group/GetAvailableWechat", sendData, { pass: true })
107
+                .then((res) => {
108
+                    if (res.data.length === 0) {
109
+                        this.fn.showModal({
110
+                            title: "提示",
111
+                            content:
112
+                                "暂时所有群助理都已经排满,请您联系客服或稍后再试。客服微信:jingzhunwlyx",
113
+                            showCancel: false,
114
+                        });
115
+                    } else {
116
+                        this.kefu = res.data[0] ? res.data[0] : {};
117
+                        console.log(this.kefu);
118
+                    }
119
+                });
120
+        },
121
+
122
+        viewImg(url) {
123
+            uni.previewImage({
124
+                urls: [url],
125
+            });
126
+        },
127
+
128
+        copy(val, str) {
129
+            const self = this;
130
+
131
+            uni.setClipboardData({
132
+                data: val,
133
+                success: () => {
134
+                    self.fn.showToast(str || "复制成功");
135
+                },
136
+            });
137
+        },
138
+
139
+        saveOk() {
140
+            // this.router.push("/pages/index/register?step=2");
141
+            // return;
142
+            // self.fn.showToast("注册成功");
143
+            let sendData = {
144
+                platform: this.form.fromPlatform,
145
+            };
146
+            if (this.hideReturn) {
147
+                sendData.code = this.pidCode;
148
+            }
149
+            this.api.get("/Group/CheckCode", sendData).then((res) => {
150
+                if (res.success) {
151
+                    if (res.data.verified) {
152
+                        this.router.push({
153
+                            path: "/pages/assistant/index",
154
+                            isTabBar: true,
155
+                        });
156
+                    } else {
157
+                        this.fn.showModal({
158
+                            title: "失败",
159
+                            content:
160
+                                "助理没有收到您发送在群里的团长号,请确认1、2、3步全部完成后再试",
161
+                            showCancel: false,
162
+                        });
163
+                    }
164
+                } else {
165
+                    this.fn
166
+                        .showModal({
167
+                            title: "未填写团长号",
168
+                            content: "确认返回团长号填写",
169
+                            showCancel: false,
170
+                        })
171
+                        .then((res) => {
172
+                            if (res.confirm) {
173
+                                this.step = 2;
174
+                            }
175
+                        });
176
+                    // this.router.push("/index/register?step=2");
177
+                }
178
+            });
179
+        },
180
+    },
181
+
182
+    // 数据计算
183
+    computed: {
184
+        user() {
185
+            return this.$store.state.user.user;
186
+        },
187
+    },
188
+
189
+    // 数据监听
190
+    watch: {},
191
+};
192
+</script>
193
+
194
+
195
+<style lang="scss" scoped>
196
+.page {
197
+    height: 100vh;
198
+    background-color: #fff;
199
+}
200
+.main {
201
+    padding-top: px(120);
202
+    padding-left: px(40);
203
+    padding-right: px(40);
204
+}
205
+.tit {
206
+    font-size: px(50);
207
+    padding-bottom: px(100);
208
+    text-align: center;
209
+    padding-bottom: px(100);
210
+}
211
+.inp-box {
212
+    display: flex;
213
+    justify-content: space-between;
214
+    align-items: center;
215
+    border-bottom: 1px solid #c3c1c2;
216
+    padding: px(30) 0;
217
+    margin-bottom: px(30);
218
+}
219
+.inp-box span {
220
+    font-size: px(32);
221
+    color: rgb(0, 188, 38);
222
+    border-radius: px(15);
223
+    border: 1px solid rgb(0, 188, 38);
224
+    width: px(230);
225
+    height: px(80);
226
+    text-align: center;
227
+    line-height: px(80);
228
+    flex-shrink: 0;
229
+    margin-left: px(30);
230
+}
231
+.inp-box input {
232
+    width: 100%;
233
+}
234
+.inp-box .dis {
235
+    color: #999;
236
+    border-color: #999;
237
+    pointer-events: none;
238
+}
239
+.btn {
240
+    margin-top: px(120);
241
+    color: #fff;
242
+    background-color: rgb(0, 188, 38);
243
+    font-size: px(44);
244
+    margin-bottom: px(50);
245
+}
246
+.code-box {
247
+    display: flex;
248
+    justify-content: space-between;
249
+    align-items: center;
250
+    .code-btn {
251
+        width: px(250);
252
+        flex-shrink: 0;
253
+        font-size: px(40);
254
+        padding: 0 px(10);
255
+        border: none;
256
+        &.dis {
257
+            border-color: #f1f1f1;
258
+            color: #999;
259
+        }
260
+    }
261
+}
262
+.team-num-des {
263
+    padding: px(80) px(30);
264
+    text-align: center;
265
+    line-height: 1.5;
266
+    .tit {
267
+        font-size: px(48);
268
+        padding: px(10) 0;
269
+    }
270
+    .text {
271
+        font-size: px(44);
272
+        padding: px(15) 0;
273
+    }
274
+    video {
275
+        width: 80vw;
276
+        height: calc(80vw / 0.466666);
277
+        display: block;
278
+        margin: 0 auto;
279
+    }
280
+    .img,
281
+    .video {
282
+        padding: px(20) 0;
283
+    }
284
+    /deep/ img {
285
+        width: 80%;
286
+        display: block;
287
+        margin: 0 auto;
288
+    }
289
+}
290
+.add-assistant {
291
+    border-top: 1px solid #f1f1f1;
292
+    li {
293
+        display: flex;
294
+        justify-content: space-between;
295
+        font-size: px(44);
296
+        padding: px(30);
297
+        border-bottom: 1px solid #f1f1f1;
298
+        .step {
299
+            width: px(200);
300
+            flex-shrink: 0;
301
+            font-weight: bold;
302
+        }
303
+        .con {
304
+            width: 100%;
305
+        }
306
+        .wechat-img {
307
+            padding: px(10);
308
+            /deep/ img {
309
+                width: px(600);
310
+            }
311
+        }
312
+    }
313
+}
314
+.copy {
315
+    display: inline-block;
316
+    font-size: px(32);
317
+    line-height: px(44);
318
+    padding: 0 px(10);
319
+    border: 1px solid #4395ff;
320
+    color: #4395ff;
321
+    background-color: #fff;
322
+    margin-left: px(20);
323
+    border-radius: px(5);
324
+    transform: translate(0, -1px);
325
+}
326
+.wechat {
327
+    color: #4395ff;
328
+    &.red {
329
+        color: red;
330
+        font-weight: bold;
331
+    }
332
+}
333
+.go-login {
334
+    text-align: center;
335
+    padding-top: px(60);
336
+    .text {
337
+        display: inline-block;
338
+        color: #4395ff;
339
+    }
340
+}
341
+.font-blod {
342
+    font-weight: bold;
343
+}
344
+.return-page {
345
+    font-size: px(40);
346
+    color: #333;
347
+    display: flex;
348
+    justify-content: flex-start;
349
+    align-items: center;
350
+    transform: translate(0, px(-80));
351
+    color: #666;
352
+    .arrow {
353
+        width: px(40);
354
+        height: px(40);
355
+        flex-shrink: 0;
356
+        margin-right: px(20);
357
+        /deep/ img {
358
+            width: px(40);
359
+            height: px(40);
360
+        }
361
+    }
362
+}
363
+</style>

+ 14 - 5
src/pages/assistant/index.vue

@@ -24,7 +24,16 @@
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
+                <button
28
+                    class="btn"
29
+                    @click="
30
+                        jump({
31
+                            path: '/pages/assistant/add',
32
+                        })
33
+                    "
34
+                >
35
+                    添加群
36
+                </button>
28 37
             </ul>
29 38
 
30 39
             <!-- 平台 -->
@@ -46,7 +55,7 @@
46 55
             </ul>
47 56
         </div>
48 57
 
49
-        <div class="layout" @click="layout">退出登录</div>
58
+        <!-- <div class="layout" @click="layout">退出登录</div> -->
50 59
         <wyg-bottom-tab
51 60
             ref="tabbar"
52 61
             :tabIndex="3"
@@ -191,7 +200,7 @@ export default {
191 200
 .tabbar-page {
192 201
     height: 100vh;
193 202
 }
194
-.page-main{
203
+.page-main {
195 204
     overflow: auto;
196 205
     max-height: 100%;
197 206
 }
@@ -257,7 +266,7 @@ export default {
257 266
 .layout {
258 267
     color: #666;
259 268
     position: fixed;
260
-    bottom: 3.5rem;
269
+    bottom: 3.6rem;
261 270
     left: px(30);
262 271
     right: px(30);
263 272
     z-index: 10;
@@ -270,7 +279,7 @@ export default {
270 279
 }
271 280
 .btn {
272 281
     position: fixed;
273
-    bottom: 6rem;
282
+    bottom: 3.5rem;
274 283
     left: px(30);
275 284
     right: px(30);
276 285
     z-index: 10;

+ 6 - 9
src/pages/assistant/setting.vue

@@ -32,17 +32,17 @@ export default {
32 32
 
33 33
     onLoad(opts) {
34 34
         this.groupData = this.$store.state.common.groupData;
35
-        this.switchChecked = this.groupData.status === 2 ? true : false;
35
+        this.switchChecked = this.groupData.status === 1 ? true : false;
36 36
     },
37 37
     async onShow() {},
38 38
     // 函数
39 39
     methods: {
40 40
         switchChange(e) {
41 41
             let detail = e.detail.value;
42
-
42
+            this.switchChecked = detail;
43 43
             let data = {
44 44
                 id: this.groupData._id,
45
-                status: detail ? 2 : 1,
45
+                status: detail ? 1 : 2,
46 46
             };
47 47
 
48 48
             this.api
@@ -57,13 +57,10 @@ export default {
57 57
                             groupData: this.groupData,
58 58
                         });
59 59
                     } else {
60
+                        this.switchChecked = !this.switchChecked;
60 61
                         this.fn.showModal({
61 62
                             title: "设置失败",
62
-                            content:
63
-                                "错误码:" +
64
-                                res.code +
65
-                                ",错误信息:" +
66
-                                res.message,
63
+                            content: "错误信息:" + res.message,
67 64
                             showCancel: false,
68 65
                         });
69 66
                     }
@@ -110,7 +107,7 @@ export default {
110 107
         }
111 108
     }
112 109
 }
113
-switch{
110
+switch {
114 111
     transform: scale(0.7);
115 112
 }
116 113
 </style>

+ 42 - 6
src/pages/guide/form.vue

@@ -111,9 +111,8 @@
111 111
                     ></easy-upload>
112 112
                 </div>
113 113
             </section> -->
114
-            <section class="form-item">
114
+            <!-- <section class="form-item">
115 115
                 <div class="label">
116
-                    <!-- <span class="required">*</span> -->
117 116
                     推荐人:
118 117
                 </div>
119 118
                 <div class="box">
@@ -122,13 +121,12 @@
122 121
             </section>
123 122
             <section class="form-item">
124 123
                 <div class="label">
125
-                    <!-- <span class="required">*</span> -->
126 124
                     邀请码:
127 125
                 </div>
128 126
                 <div class="box">
129 127
                     <input type="text" v-model="form.invitedCode" />
130 128
                 </div>
131
-            </section>
129
+            </section> -->
132 130
         </div>
133 131
         <div class="btns">
134 132
             <div class="btn" @click="saveOk">保存</div>
@@ -158,6 +156,11 @@ export default {
158 156
                 iDCard: "",
159 157
                 recommendName: "",
160 158
                 invitedCode: "",
159
+                latitude:'',
160
+                longitude:'',
161
+                province:'',
162
+                city:'',
163
+                county:'',
161 164
             },
162 165
             mainImage: [],
163 166
             mainImage2: [],
@@ -166,12 +169,33 @@ export default {
166 169
         };
167 170
     },
168 171
 
169
-    onLoad(opts) {},
172
+    onLoad(opts) {
173
+        this.getGroupInfo();
174
+    },
170 175
 
171 176
     onShow() {},
172 177
 
173 178
     // 函数
174 179
     methods: {
180
+
181
+        getGroupInfo(){
182
+            this.api.get('/Group/getGroupInfo',{},{pass:true})
183
+                .then(res=>{
184
+                    if(res.success && res.data){
185
+                        this.form.appName = res.data.shopName || '';
186
+                        this.form.province = res.data.province || '';
187
+                        this.form.city = res.data.city || '';
188
+                        this.form.county = res.data.district || '';
189
+                        this.form.address = res.data.detialAddr || '';
190
+                        this.form.latitude = res.data.latitude || '';
191
+                        this.form.longitude = res.data.longitude || '';
192
+                        if(this.form.province){
193
+                            this.form.pickUpAddress = `${this.form.province}${this.form.city}${this.form.county}`
194
+                        }
195
+                    }
196
+                })
197
+        },
198
+
175 199
         mapClick() {
176 200
             let self = this;
177 201
             // 判断定位权限
@@ -200,6 +224,11 @@ export default {
200 224
                 type: "gcj02", //返回可以用于uni.openLocation的经纬度
201 225
                 success: function (res) {
202 226
                     self.form.pickUpAddress = res.address;
227
+                    self.form.province = '';
228
+                    self.form.city = '';
229
+                    self.form.county = '';
230
+                        this.form.latitude = res.latitude.toFixed(6) || '';
231
+                        this.form.longitude = res.longitude.toFixed(6) || '';
203 232
                     console.log("定位ok", res);
204 233
                 },
205 234
                 fail(e) {
@@ -242,6 +271,9 @@ export default {
242 271
             // if (this.form.iDCard.length !== 2) {
243 272
             //     return this.fn.showToast("请分别上传身份证照正反面");
244 273
             // }
274
+            if(this.user.parentInviteCode){
275
+                this.form.invitedCode = this.user.parentInviteCode;
276
+            }
245 277
             this.submitLoading = true;
246 278
             uni.showLoading({
247 279
                 title: "提交中...",
@@ -275,7 +307,11 @@ export default {
275 307
     },
276 308
 
277 309
     // 数据计算
278
-    computed: {},
310
+    computed: {
311
+        user() {
312
+            return this.$store.state.user.user;
313
+        },
314
+    },
279 315
 
280 316
     // 数据监听
281 317
     watch: {},

File diff suppressed because it is too large
+ 572 - 416
src/pages/index/index.vue


+ 12 - 2
src/pages/index/login.vue

@@ -20,7 +20,7 @@
20 20
             </div>
21 21
             <button class="btn" @click="submit">确定</button>
22 22
             <div class="login-other">
23
-                <a class="go-register" @click="jump('/pages/index/register')"
23
+                <a class="go-register" @click="jumpRegister"
24 24
                     >去注册</a
25 25
                 >
26 26
                 <a
@@ -44,10 +44,12 @@ export default {
44 44
         return {
45 45
             userName: "",
46 46
             password: "",
47
+            urlQuery:{},
47 48
         };
48 49
     },
49 50
 
50
-    onLoad() {
51
+    onLoad(opts) {
52
+        this.urlQuery = opts;
51 53
         uni.hideLoading();
52 54
     },
53 55
 
@@ -55,6 +57,14 @@ export default {
55 57
 
56 58
     // 函数
57 59
     methods: {
60
+
61
+        jumpRegister(){
62
+            this.router.push({
63
+                path:'/pages/index/register',
64
+                query:this.urlQuery
65
+            })
66
+        },
67
+
58 68
         submit() {
59 69
             console.log(this.mobile);
60 70
             if (!this.userName) {

+ 23 - 7
src/pages/index/register.vue

@@ -190,20 +190,25 @@ export default {
190 190
                 imageUrl:
191 191
                     "https://oss.ixiaokejia.com/images/common/share_register.jpg",
192 192
             },
193
+
193 194
             hideReturn: false,
195
+            inviteCode:''
194 196
         };
195 197
     },
196 198
 
197 199
     onLoad(opts) {
198 200
         if (opts.step) {
199 201
             this.step = Number(opts.step);
200
-            if (this.step !== 1) {
202
+            if (this.step === 3) {
201 203
                 this.getAvailableWechat();
202 204
             }
203 205
         }
204 206
         if (opts.pidCode) {
205 207
             this.pidCode = opts.pidCode;
206 208
         }
209
+        if (opts.inviteCode) {
210
+            this.inviteCode = opts.inviteCode;
211
+        }
207 212
         if (opts.fromPlatform) {
208 213
             this.form.fromPlatform = Number(opts.fromPlatform);
209 214
         }
@@ -231,9 +236,13 @@ export default {
231 236
                 });
232 237
         },
233 238
 
234
-        getAvailableWechat() {
239
+        getAvailableWechat(pid) {
240
+            let sendData = {};
241
+            if(pid){
242
+                sendData.pid = pid;
243
+            }
235 244
             this.api
236
-                .get("/Group/GetAvailableWechat", {}, { pass: true })
245
+                .get("/Group/GetAvailableWechat", sendData, { pass: true })
237 246
                 .then((res) => {
238 247
                     if (res.data.length === 0) {
239 248
                         this.fn.showModal({
@@ -325,6 +334,9 @@ export default {
325 334
                 password: this.form.password,
326 335
                 fromPlatform: this.form.fromPlatform,
327 336
             };
337
+            if(this.inviteCode){
338
+                sendData.parentInviteCode = this.inviteCode;
339
+            }
328 340
             uni.login({
329 341
                 provider: "weixin",
330 342
                 success: (result) => {
@@ -340,7 +352,6 @@ export default {
340 352
                                 curShop: {},
341 353
                             });
342 354
                             this.step = 2;
343
-                            this.getAvailableWechat();
344 355
                         } else {
345 356
                             this.fn.showModal({
346 357
                                 title: "注册失败",
@@ -378,6 +389,7 @@ export default {
378 389
                         this.fn.showToast(`团长号提交成功`);
379 390
                         this.pidCode = res.data;
380 391
                         this.step = 3;
392
+                            this.getAvailableWechat(this.form.teamNum);
381 393
                     } else {
382 394
                         this.fn.showModal({
383 395
                             title: "团长号提交失败",
@@ -409,10 +421,14 @@ export default {
409 421
             // this.router.push("/pages/index/register?step=2");
410 422
             // return;
411 423
             // self.fn.showToast("注册成功");
412
-            this.api
413
-                .get("/Group/CheckCode", {
424
+            let sendData = {
414 425
                     platform: this.form.fromPlatform,
415
-                })
426
+                };
427
+            if(this.hideReturn){
428
+                sendData.code = this.pidCode;
429
+            }
430
+            this.api
431
+                .get("/Group/CheckCode", sendData)
416 432
                 .then((res) => {
417 433
                     if (res.success) {
418 434
                         if (res.data.verified) {

+ 46 - 34
src/pages/manage/index.vue

@@ -4,27 +4,29 @@
4 4
             当前店铺没有门店,请后台添加门店后重试
5 5
         </div>
6 6
         <div v-if="!shopErr">
7
-            <div class="page__top" v-if="isAdmin">
8
-                <div class="name">当前门店:</div>
9
-                <div class="shop" v-if="!hideShop" @click="goShopSelect">
10
-                    <div class="shop__name">
11
-                        <!-- 最多6字 -->
12
-                        {{ curShop.name ? curShop.name : "加载中..." }}
13
-                        <i class="iconfont iconyoujiantou shop__arrow"></i>
7
+            <block v-if="showShop">
8
+                <div class="page__top" v-if="isAdmin">
9
+                    <div class="name">当前门店:</div>
10
+                    <div class="shop" v-if="!hideShop" @click="goShopSelect">
11
+                        <div class="shop__name">
12
+                            <!-- 最多6字 -->
13
+                            {{ curShop.name ? curShop.name : "加载中..." }}
14
+                            <i class="iconfont iconyoujiantou shop__arrow"></i>
15
+                        </div>
14 16
                     </div>
15 17
                 </div>
16
-            </div>
17
-            <div class="page__top" v-else>
18
-                <div class="name">当前门店:</div>
19
-                <div class="shop">
20
-                    <div class="shop__name">
21
-                        <!-- 最多6字 -->
18
+                <div class="page__top" v-else>
19
+                    <div class="name">当前门店:</div>
20
+                    <div class="shop">
21
+                        <div class="shop__name">
22
+                            <!-- 最多6字 -->
22 23
 
23
-                        {{ curShop.name ? curShop.name : "加载中..." }}
24
-                        <!-- <i class="iconfont iconyoujiantou shop__arrow"></i> -->
24
+                            {{ curShop.name ? curShop.name : "加载中..." }}
25
+                            <!-- <i class="iconfont iconyoujiantou shop__arrow"></i> -->
26
+                        </div>
25 27
                     </div>
26 28
                 </div>
27
-            </div>
29
+            </block>
28 30
             <ul class="menu" v-if="!menuLoading">
29 31
                 <li
30 32
                     class="item"
@@ -35,13 +37,13 @@
35 37
                     <my-image class="img" :src="item.icon"></my-image>
36 38
                     <span class="text">{{ item.name }}</span>
37 39
                 </li>
38
-                <!-- <li class="item" @click="jump('/pages/manage/user/index')">
40
+                <li class="item" @click="jump('/pages/manage/user/index')">
39 41
                     <my-image
40 42
                         class="img"
41 43
                         src="/static/icon/user.png"
42 44
                     ></my-image>
43 45
                     <span class="text">账号设置</span>
44
-                </li> -->
46
+                </li>
45 47
                 <!-- <li class="item" @click="jump('/pages/manage/cashier/index')">
46 48
                     <my-image
47 49
                         class="img"
@@ -56,24 +58,27 @@
56 58
                     ></my-image>
57 59
                     <span class="text">历史单据</span>
58 60
                 </li> -->
59
-              
60 61
             </ul>
61 62
         </div>
62 63
 
63
-        <button class="btn" @click="layout">退出登录</button>
64
+        <!-- <button class="btn" @click="layout">退出登录</button> -->
64 65
 
65
-        <div class="ver">0.4.7</div>
66
-        <wyg-bottom-tab ref="tabbar" :tabIndex="2" :tabListParent="tabList"></wyg-bottom-tab>
66
+        <div class="ver">0.4.72</div>
67
+        <wyg-bottom-tab
68
+            ref="tabbar"
69
+            :tabIndex="2"
70
+            :tabListParent="tabList"
71
+        ></wyg-bottom-tab>
67 72
     </div>
68 73
 </template>
69 74
 
70 75
 <script>
71 76
 import MyImage from "../../components/image/index";
72
-import wygBottomTab  from "../../components/wyg-bottom-tab/wyg-bottom-tab";
77
+import wygBottomTab from "../../components/wyg-bottom-tab/wyg-bottom-tab";
73 78
 
74 79
 export default {
75 80
     name: "",
76
-    components: { MyImage,wygBottomTab },
81
+    components: { MyImage, wygBottomTab },
77 82
 
78 83
     // 数据
79 84
     data() {
@@ -82,7 +87,8 @@ export default {
82 87
             shopErr: false,
83 88
             menuList: [],
84 89
             menuLoading: true,
85
-            loading:false,
90
+            loading: false,
91
+            showShop: true,
86 92
         };
87 93
     },
88 94
 
@@ -90,6 +96,7 @@ export default {
90 96
         // this.getUserMenu();
91 97
     },
92 98
     async onShow() {
99
+        this.showShop = true;
93 100
         if (this.isAdmin) {
94 101
             this.curShop = {
95 102
                 name: this.user.storeName,
@@ -103,10 +110,11 @@ export default {
103 110
                     id: this.user.storeId,
104 111
                 };
105 112
             } else {
106
-                this.fn.showModal({
107
-                    content: "当前用户无门店设置,请前往后台设置所属店铺",
108
-                });
113
+                // this.fn.showModal({
114
+                //     content: "当前用户无门店设置,请前往后台设置所属店铺",
115
+                // });
109 116
                 // this.getShopList();
117
+                this.showShop = false;
110 118
             }
111 119
         }
112 120
         this.getUserMenu();
@@ -114,7 +122,6 @@ export default {
114 122
     },
115 123
     // 函数
116 124
     methods: {
117
-
118 125
         getUserMenu() {
119 126
             uni.showLoading({
120 127
                 title: "加载中...",
@@ -162,7 +169,13 @@ export default {
162 169
             this.$store.commit("user/update", {
163 170
                 menuList: arr,
164 171
             });
165
-            this.menuList = arr;
172
+            let arr2 = [];
173
+            for(let item of arr){
174
+                if(item.id !=='mobile_setting'){
175
+                    arr2.push(item);
176
+                }
177
+            }
178
+            this.menuList = arr2;
166 179
         },
167 180
 
168 181
         getShopList() {
@@ -208,9 +221,8 @@ export default {
208 221
 
209 222
     // 数据计算
210 223
     computed: {
211
-        
212
-        tabList(){
213
-            return this.$store.state.common.tabList ;
224
+        tabList() {
225
+            return this.$store.state.common.tabList;
214 226
         },
215 227
         user() {
216 228
             return this.$store.state.user.user;
@@ -314,7 +326,7 @@ export default {
314 326
 }
315 327
 .btn {
316 328
     position: fixed;
317
-    bottom: 3.5rem;
329
+    bottom: 3.6rem;
318 330
     left: px(30);
319 331
     right: px(30);
320 332
     z-index: 10;

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

@@ -30,6 +30,7 @@
30 30
                 ></my-image>
31 31
             </li>
32 32
         </ul>
33
+        <button class="btn" @click="layout">退出登录</button>
33 34
     </div>
34 35
 </template>
35 36
 
@@ -57,7 +58,16 @@ export default {
57 58
     },
58 59
     async onShow() {},
59 60
     // 函数
60
-    methods: {},
61
+    methods: {
62
+
63
+        layout() {
64
+            this.$store.commit("user/logout", null);
65
+            this.router.push({
66
+                path: "/pages/index/login",
67
+                isTabBar: true,
68
+            });
69
+        },
70
+    },
61 71
 
62 72
     // 数据计算
63 73
     computed: {
@@ -98,4 +108,14 @@ export default {
98 108
         }
99 109
     }
100 110
 }
111
+.btn {
112
+    position: fixed;
113
+    bottom: 2rem;
114
+    left: px(30);
115
+    right: px(30);
116
+    z-index: 10;
117
+    color: #333;
118
+    background-color: #f3f3f3;
119
+    font-size: px(44);
120
+}
101 121
 </style>