cr лет назад: 4
Родитель
Сommit
2dd9872b4d

+ 32 - 47
src/App.vue

@@ -35,53 +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
-        //                     // 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
+                        } 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
+        }
85 70
     },
86 71
 
87 72
     onShow: async function (option) {

+ 3 - 2
src/components/layout/manage-nav.vue

@@ -156,7 +156,8 @@ export default {
156 156
     height: px(80);
157 157
     border-radius: px(40);
158 158
     line-height: px(80);
159
-
160
-    background-color: transparent;
159
+    border: none;
160
+    color: #fff;
161
+    background-color: rgb(0, 188, 38);
161 162
 }
162 163
 </style>

+ 5 - 1
src/pages/guide/form.vue

@@ -32,7 +32,7 @@
32 32
                 </div>
33 33
                 <div class="box">
34 34
                     <input
35
-                        type="text"
35
+                        type="number"
36 36
                         v-model="form.managerTelephone"
37 37
                         placeholder=" "
38 38
                     />
@@ -194,6 +194,10 @@ export default {
194 194
             if (!this.form.managerTelephone) {
195 195
                 return this.fn.showToast("请输入店长电话");
196 196
             }
197
+            let phoneReg = /^[1][1-9][0-9]{9}$/;
198
+            if (!phoneReg.test(this.form.managerTelephone)) {
199
+                return this.fn.showToast("店长电话格式不正确");
200
+            }
197 201
             if (!this.form.startTime) {
198 202
                 return this.fn.showToast("请选择营业开始时间");
199 203
             }

+ 1 - 0
src/pages/guide/success.vue

@@ -43,6 +43,7 @@ export default {
43 43
     },
44 44
     filters: {},
45 45
     onLoad() {
46
+        this.fn.getToken();
46 47
         this.getData();
47 48
         this.getQrCode();
48 49
     },

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

@@ -69,7 +69,7 @@
69 69
 
70 70
         <!-- <button class="btn" @click="layout">退出登录</button> -->
71 71
 
72
-        <div class="ver">0.5.01</div>
72
+        <div class="ver">0.5.02</div>
73 73
         <wyg-bottom-tab
74 74
             ref="tabbar"
75 75
             :tabIndex="2"

+ 5 - 1
src/pages/manage/shop/set-shop.vue

@@ -22,7 +22,7 @@
22 22
                 </div>
23 23
                 <div class="box">
24 24
                     <input
25
-                        type="text"
25
+                        type="number"
26 26
                         :disabled="true"
27 27
                         v-model="form.managerTelephone"
28 28
                         placeholder=" "
@@ -189,6 +189,10 @@ export default {
189 189
             if (!this.form.managerTelephone) {
190 190
                 return this.fn.showToast("请输入店长电话");
191 191
             }
192
+            let phoneReg = /^[1][1-9][0-9]{9}$/;
193
+            if (!phoneReg.test(this.form.managerTelephone)) {
194
+                return this.fn.showToast("店长电话格式不正确");
195
+            }
192 196
             if (!this.form.startTime) {
193 197
                 return this.fn.showToast("请选择营业开始时间");
194 198
             }