Browse Source

开店修改

cr 4 years ago
parent
commit
ac1c8198c0

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

+ 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) {

+ 2 - 2
src/common/js/plugin.js

@@ -199,8 +199,8 @@ export default {
199 199
         })
200 200
     },
201 201
 
202
-    // 订单订阅
203
-    orderTake(orderId, type) {
202
+    // 开店申请订阅
203
+    applyShopsubscribe(orderId, type) {
204 204
         api.get('/Subscription/GetMsgTpls', {
205 205
             type: type,
206 206
         }).then(res => {

+ 18 - 0
src/pages.json

@@ -377,6 +377,24 @@
377 377
             "style": {
378 378
                 "navigationBarTitleText": "添加群"
379 379
             }
380
+        },
381
+        {
382
+            "path": "pages/guide/apply",
383
+            "style": {
384
+                "navigationBarTitleText": "申请开通店铺"
385
+            }
386
+        },
387
+        {
388
+            "path": "pages/guide/success",
389
+            "style": {
390
+                "navigationBarTitleText": "开通店铺"
391
+            }
392
+        },
393
+        {
394
+            "path": "pages/custom/webview",
395
+            "style": {
396
+                "navigationBarTitleText": ""
397
+            }
380 398
         }
381 399
     ]
382 400
 }

+ 40 - 0
src/pages/custom/webview.vue

@@ -0,0 +1,40 @@
1
+<template>
2
+    <div class="page">
3
+        <web-view
4
+        class="web-view"
5
+            :src="'https://baike.baidu.com/item/%E8%8A%B1%E7%B3%96/13207983?fromtitle=%E8%8A%B1%E3%81%9F%E3%82%93&fromid=17503011&fr=aladdin'"
6
+        ></web-view>
7
+        <button class="btn" @click="jump('/pages/guide/success')">确定</button>
8
+    </div>
9
+</template>
10
+
11
+<script>
12
+export default {
13
+    name: "",
14
+
15
+    // 数据
16
+    data() {
17
+        return {
18
+            url: "",
19
+        };
20
+    },
21
+
22
+    onShow() {
23
+        const self = this;
24
+        self.url = decodeURIComponent(self.$mp.query.url);
25
+    },
26
+
27
+    // 函数
28
+    methods: {},
29
+
30
+    // 数据计算
31
+    computed: {},
32
+
33
+    // 数据监听
34
+    watch: {},
35
+};
36
+</script>
37
+
38
+<style lang="scss" scoped>
39
+
40
+</style>

+ 321 - 0
src/pages/guide/apply.vue

@@ -0,0 +1,321 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="form-card">
4
+            <section class="form-item">
5
+                <div class="label">
6
+                    <span class="required">*</span>
7
+                    店铺名称:
8
+                </div>
9
+                <div class="box">
10
+                    <input
11
+                        type="text"
12
+                        v-model="form.appName"
13
+                        placeholder="请填写店铺名称"
14
+                    />
15
+                </div>
16
+            </section>
17
+        </div>
18
+        <div class="btns">
19
+            <div class="btn" @click="saveOk">立即申请</div>
20
+        </div>
21
+    </div>
22
+</template>
23
+
24
+<script>
25
+import MyImage from "../../components/image/index";
26
+export default {
27
+    name: "",
28
+    components: { MyImage,  },
29
+    // 
30
+    data() {
31
+        return {
32
+            form: {
33
+                appName: "",
34
+            },
35
+            submitLoading: false,
36
+        };
37
+    },
38
+
39
+    onLoad(opts) {
40
+    },
41
+
42
+    onShow() {},
43
+
44
+    // 函数
45
+    methods: {
46
+
47
+ 
48
+        saveOk() {
49
+            if (this.submitLoading) {
50
+                return;
51
+            }
52
+            if (!this.form.appName) {
53
+                return this.fn.showToast("请输入店铺名称");
54
+            }
55
+            this.submitLoading = true;
56
+            uni.showLoading({
57
+                title: "提交中...",
58
+            });
59
+            // let data = { ...this.form };
60
+            this.api
61
+                .post("/Shop/Apply", {query:{name:this.form.appName}}, { pass: true })
62
+                .then((res) => {
63
+                    this.submitLoading = false;
64
+                    uni.hideLoading();
65
+                    if (res.success) {
66
+                        this.fn.showToast("申请成功");
67
+                        let user = this.$store.state.user.user;
68
+                        user.storeStatus = 2;
69
+                        this.$store.commit("user/update", {
70
+                            user,
71
+                        });
72
+                        this.router.back();
73
+                    } else {
74
+                        this.fn.showModal({
75
+                            content:
76
+                                "申请错误:" +
77
+                                res.message,
78
+                            showCancel: false,
79
+                        });
80
+                    }
81
+                });
82
+        },
83
+    },
84
+
85
+    // 数据计算
86
+    computed: {
87
+        user() {
88
+            return this.$store.state.user.user;
89
+        },
90
+    },
91
+
92
+    // 数据监听
93
+    watch: {},
94
+};
95
+</script>
96
+
97
+
98
+<style lang="scss" scoped>
99
+.page {
100
+    padding-bottom: px(120);
101
+    min-height: 100vh;
102
+    background-color: #fff;
103
+}
104
+.page--iphoneX {
105
+    padding-bottom: px(150);
106
+    .btn {
107
+        padding-bottom: px(30);
108
+        background-color: rgb(0, 188, 38);
109
+    }
110
+}
111
+.form-card {
112
+    background-color: #fff;
113
+    padding: 0 px(30);
114
+    & ~ .form-card {
115
+        margin-top: px(25);
116
+    }
117
+    .head {
118
+        display: flex;
119
+        align-items: center;
120
+        justify-content: space-between;
121
+        height: px(140);
122
+        background-color: #fbfbfb;
123
+        border-bottom: 1px solid #f1f1f1;
124
+        border-top: 1px solid #f1f1f1;
125
+        font-size: px(44);
126
+    }
127
+}
128
+.form-item {
129
+    display: flex;
130
+    min-height: px(140);
131
+    padding: px(30) 0;
132
+    box-sizing: border-box;
133
+    align-items: center;
134
+    font-size: px(44);
135
+    border-top: 1px solid #f1f1f1;
136
+    border-bottom: 1px solid #f1f1f1;
137
+    &.dis-item {
138
+        color: #999;
139
+        background: #f9f9f9;
140
+    }
141
+    .label {
142
+        width: px(280);
143
+        flex-shrink: 0;
144
+        color: #999;
145
+        margin-right: px(10);
146
+    }
147
+    .box {
148
+        width: 100%;
149
+        position: relative;
150
+        input {
151
+            width: 100%;
152
+        }
153
+    }
154
+    .tool {
155
+        flex-shrink: 0;
156
+        color: #999;
157
+        margin-left: px(10);
158
+    }
159
+    textarea,
160
+    input {
161
+        max-width: 100%;
162
+        width: 100%;
163
+    }
164
+}
165
+.list {
166
+    // min-height: 100vh;
167
+    // background-color: #fff;
168
+    // border-bottom: 1px solid #f1f1f1;
169
+    li {
170
+        padding: px(0) px(35);
171
+        height: px(140);
172
+        line-height: px(140);
173
+        font-size: px(44);
174
+        border-top: 1px solid #f1f1f1;
175
+        display: flex;
176
+        justify-content: space-between;
177
+        align-items: center;
178
+    }
179
+    .tools {
180
+        display: flex;
181
+        align-items: center;
182
+        flex-shrink: 0;
183
+        span {
184
+            display: inline-block;
185
+            border: 1px solid #f1f1f1;
186
+            font-size: px(36);
187
+            height: px(80);
188
+            width: px(120);
189
+            display: flex;
190
+            justify-content: center;
191
+            align-items: center;
192
+            & ~ span {
193
+                margin-left: px(30);
194
+            }
195
+        }
196
+        .remove {
197
+            color: #f00;
198
+        }
199
+    }
200
+}
201
+.btn {
202
+    width: 100%;
203
+    height: px(120);
204
+    background-color: rgb(0, 188, 38);
205
+    color: #fff;
206
+    display: flex;
207
+    align-items: center;
208
+    justify-content: center;
209
+}
210
+.btns {
211
+    position: fixed;
212
+    bottom: 0;
213
+    left: 0;
214
+    right: 0;
215
+    z-index: 100;
216
+}
217
+.layout {
218
+    background-color: #eee;
219
+    color: #666;
220
+}
221
+.add-btn {
222
+    height: px(120);
223
+    color: #333;
224
+    display: flex;
225
+    align-items: center;
226
+    justify-content: center;
227
+    margin: px(50) px(35) 0;
228
+    border: 1px solid #ccc;
229
+    border-radius: px(10);
230
+}
231
+.code-tool {
232
+    display: flex;
233
+    justify-content: flex-start;
234
+    align-items: center;
235
+    .scan-img {
236
+        flex-shrink: 0;
237
+        width: px(80);
238
+        height: px(80);
239
+        /deep/ img {
240
+            width: px(80);
241
+            height: px(80);
242
+        }
243
+    }
244
+    .generate {
245
+        color: #0097d1;
246
+        margin-right: px(30);
247
+        flex-shrink: 0;
248
+    }
249
+}
250
+.required {
251
+    color: #f00;
252
+    font-size: px(44);
253
+    &.hide {
254
+        visibility: hidden;
255
+    }
256
+}
257
+.inp-dis {
258
+    color: #999;
259
+}
260
+
261
+.img-card {
262
+    padding-top: px(30);
263
+    padding-bottom: px(30);
264
+}
265
+.form-img-item {
266
+    .tit {
267
+        padding: px(30);
268
+        font-size: px(44);
269
+    }
270
+}
271
+
272
+.spec-list {
273
+    width: 100%;
274
+    display: flex;
275
+    justify-content: space-between;
276
+    align-items: center;
277
+    li {
278
+        width: 33.333333%;
279
+        font-size: px(40);
280
+        height: px(100);
281
+        border: 1px solid #f1f1f1;
282
+        display: flex;
283
+        align-items: center;
284
+        justify-content: center;
285
+        color: #999;
286
+        & ~ li {
287
+            // border-left: none;
288
+        }
289
+        &.on {
290
+            color: rgb(0, 188, 38);
291
+            border-color: rgb(0, 188, 38);
292
+        }
293
+    }
294
+}
295
+.mo-date {
296
+    margin-top: px(20);
297
+    border-bottom: 1px solid #f1f1f1;
298
+    background: #fbfbfb;
299
+    font-size: px(40);
300
+    padding: px(10);
301
+}
302
+.n-date-box {
303
+    margin-top: px(20);
304
+    font-size: px(40);
305
+}
306
+.n-date {
307
+    border-bottom: 1px solid #f1f1f1;
308
+    background: #fbfbfb;
309
+    padding: 0 px(20);
310
+    display: inline-block;
311
+    width: px(200);
312
+    font-size: px(44);
313
+    vertical-align: bottom;
314
+}
315
+.address-icon {
316
+    /deep/ img {
317
+        width: px(60);
318
+        height: px(60);
319
+    }
320
+}
321
+</style>

+ 54 - 70
src/pages/guide/form.vue

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
     <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3 3
         <div class="form-card">
4
-            <section class="form-item">
4
+            <!-- <section class="form-item">
5 5
                 <div class="label">
6 6
                     <span class="required">*</span>
7 7
                     店铺名称:
@@ -13,83 +13,70 @@
13 13
                         placeholder="请填写店铺名称"
14 14
                     />
15 15
                 </div>
16
-            </section>
16
+            </section> -->
17 17
             <section class="form-item">
18 18
                 <div class="label">
19 19
                     <span class="required">*</span>
20
-                    联系方式
20
+                    店长电话
21 21
                 </div>
22 22
                 <div class="box">
23 23
                     <input
24 24
                         type="text"
25
-                        v-model="form.mobile"
26
-                        placeholder="请填写联系方式"
25
+                        v-model="form.managerTelephone"
26
+                        placeholder="请填写店长电话"
27 27
                     />
28 28
                 </div>
29 29
             </section>
30 30
             <section class="form-item">
31 31
                 <div class="label">
32 32
                     <span class="required">*</span>
33
-                    姓名
33
+                    营业开始时间
34 34
                 </div>
35 35
                 <div class="box">
36
+                    <picker mode="time" @change="timeChange($event,'startTime')">
36 37
                     <input
37 38
                         type="text"
38
-                        v-model="form.name"
39
-                        placeholder="请填写姓名"
40
-                    />
41
-                </div>
42
-            </section>
43
-            <section class="form-item">
44
-                <div class="label">
45
-                    <span class="required">*</span>
46
-                    提货点地址:
47
-                </div>
48
-                <div class="box" @click="mapClick">
49
-                    <input
50
-                        type="text"
51
-                        v-model="form.pickUpAddress"
52 39
                         :disabled="true"
53
-                        placeholder="请选择地址"
40
+                        v-model="form.startTime"
41
+                        placeholder="请选择"
54 42
                     />
55
-                </div>
56
-                <div class="tool" @click="mapClick">
57
-                    <my-image
58
-                        class="address-icon"
59
-                        src="/static/common/address.png"
60
-                    ></my-image>
43
+                    </picker>
61 44
                 </div>
62 45
             </section>
63 46
             <section class="form-item">
64 47
                 <div class="label">
65 48
                     <span class="required">*</span>
66
-                    详细地址
49
+                    营业结束时间:
67 50
                 </div>
68 51
                 <div class="box">
52
+                    <picker mode="time" @change="timeChange($event,'endTime')">
69 53
                     <input
70 54
                         type="text"
71
-                        v-model="form.address"
72
-                        placeholder="请填写详细地址"
55
+                        :disabled="true"
56
+                        v-model="form.endTime"
57
+                        placeholder="请选择"
73 58
                     />
59
+                    </picker>
74 60
                 </div>
75 61
             </section>
76
-            <!-- <section class="form-item">
62
+            <section class="form-item">
77 63
                 <div class="label">
78 64
                     <span class="required">*</span>
79
-                    身份证照 (正反面)
65
+                    Logo
80 66
                 </div>
81 67
                 <div class="box">
82 68
                     <easy-upload
83 69
                         :types="'image'"
84 70
                         v-model="mainImage"
85
-                        :uploadCount="2"
71
+                        :uploadCount="1"
86 72
                         @change="minImgChange"
87 73
                     ></easy-upload>
88 74
                 </div>
89 75
             </section>
90 76
             <section class="form-item">
91 77
                 <div class="label">
92
-                    店铺营业执照:
78
+                    <span class="required">*</span>
79
+                    店铺背景:
93 80
                 </div>
94 81
                 <div class="box">
95 82
                     <easy-upload
@@ -101,32 +88,18 @@
101 88
                 </div>
102 89
             </section>
103 90
             <section class="form-item">
104
-                <div class="label">食品许可证:</div>
105
-                <div class="box">
106
-                    <easy-upload
107
-                        :types="'image'"
108
-                        v-model="mainImage3"
109
-                        :uploadCount="1"
110
-                        @change="minImgChange3"
111
-                    ></easy-upload>
112
-                </div>
113
-            </section> -->
114
-            <!-- <section class="form-item">
115 91
                 <div class="label">
116
-                    推荐人:
92
+                    
93
+                    店铺通知:
117 94
                 </div>
118 95
                 <div class="box">
119
-                    <input type="text" v-model="form.recommendName" />
96
+                    <input
97
+                        type="text"
98
+                        v-model="form.shopNotice"
99
+                        placeholder="请填写店铺通知"
100
+                    />
120 101
                 </div>
121 102
             </section>
122
-            <section class="form-item">
123
-                <div class="label">
124
-                    邀请码:
125
-                </div>
126
-                <div class="box">
127
-                    <input type="text" v-model="form.invitedCode" />
128
-                </div>
129
-            </section> -->
130 103
         </div>
131 104
         <div class="btns">
132 105
             <div class="btn" @click="saveOk">保存</div>
@@ -147,7 +120,7 @@ export default {
147 120
         return {
148 121
             form: {
149 122
                 appName: "",
150
-                mobile: "",
123
+                managerTelephone: "",
151 124
                 name: "",
152 125
                 pickUpAddress: "",
153 126
                 address: "",
@@ -161,6 +134,11 @@ export default {
161 134
                 province:'',
162 135
                 city:'',
163 136
                 county:'',
137
+                logo:'',
138
+                shopBanner:'',
139
+                shopNotice:'',
140
+                startTime:'',
141
+                endTime:''
164 142
             },
165 143
             mainImage: [],
166 144
             mainImage2: [],
@@ -238,32 +216,37 @@ export default {
238 216
         },
239 217
 
240 218
         minImgChange(e) {
241
-            this.form.iDCard = e;
219
+            this.form.logo = e[0] || '';
242 220
         },
243 221
         minImgChange2(e) {
244
-            this.form.businessLicense = e[0] || "";
222
+            this.form.shopBanner = e[0] || "";
245 223
         },
246 224
         minImgChange3(e) {
247 225
             this.form.foodLicense = e[0] || "";
248 226
         },
227
+        timeChange(e,name){
228
+            let time = e.detail.value;
229
+            this.form[name] = time;
230
+            // console.log(e,name);
231
+        },
249 232
         saveOk() {
250 233
             if (this.submitLoading) {
251 234
                 return;
252 235
             }
253
-            if (!this.form.appName) {
254
-                return this.fn.showToast("请输入店铺名称");
236
+            if (!this.form.managerTelephone) {
237
+                return this.fn.showToast("请输入店长电话");
255 238
             }
256
-            if (!this.form.mobile) {
257
-                return this.fn.showToast("请输入联系方式");
239
+            if (!this.form.startTime) {
240
+                return this.fn.showToast("请选择营业开始时间");
258 241
             }
259
-            if (!this.form.name) {
260
-                return this.fn.showToast("请输入姓名");
242
+            if (!this.form.endTime) {
243
+                return this.fn.showToast("请选择营业结束时间");
261 244
             }
262
-            if (!this.form.pickUpAddress) {
263
-                return this.fn.showToast("请选择提货地址");
245
+            if (!this.form.logo) {
246
+                return this.fn.showToast("请上传logo");
264 247
             }
265
-            if (!this.form.address) {
266
-                return this.fn.showToast("请输入详细地址");
248
+            if (!this.form.shopBanner) {
249
+                return this.fn.showToast("请上传店铺背景");
267 250
             }
268 251
             // if (!this.form.iDCard) {
269 252
             //     return this.fn.showToast("请上传身份证照");
@@ -274,13 +257,14 @@ export default {
274 257
             if(this.user.parentInviteCode){
275 258
                 this.form.invitedCode = this.user.parentInviteCode;
276 259
             }
260
+            console.log(this.form);
277 261
             this.submitLoading = true;
278 262
             uni.showLoading({
279 263
                 title: "提交中...",
280 264
             });
281 265
             let data = { ...this.form };
282 266
             this.api
283
-                .post("/Shop/SubmitApply", data, { pass: true })
267
+                .post("/Shop/Open", data, { pass: true })
284 268
                 .then((res) => {
285 269
                     this.submitLoading = false;
286 270
                     uni.hideLoading();
@@ -362,7 +346,7 @@ export default {
362 346
         background: #f9f9f9;
363 347
     }
364 348
     .label {
365
-        width: px(280);
349
+        width: px(300);
366 350
         flex-shrink: 0;
367 351
         color: #999;
368 352
         margin-right: px(10);

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

@@ -0,0 +1,135 @@
1
+<template>
2
+    <div class="page tabbar-page">
3
+        <div v-if="!loading" class="success-main">
4
+            <h2 class="success-tit1">恭喜您!</h2>
5
+            <h2 class="success-tit1">店铺申请通过审核</h2>
6
+            <h3 class="success-shop-name">店铺名称:xxxx</h3>
7
+
8
+            <div class="success-box">
9
+                <p class="success-text">
10
+                    <checkbox-group @change="checkboxChange">
11
+                        <checkbox  class="success-checkbox"/>
12
+                    </checkbox-group>
13
+                    <a  @click="jump({path:'/pages/custom/webview'})">店铺使用协议</a>
14
+                </p>
15
+                <button class="success-btn" @click="jump('/pages/guide/form')">
16
+                    现在开通
17
+                </button> 
18
+            </div>
19
+        </div>
20
+    </div>
21
+</template>
22
+
23
+<script>
24
+import MyImage from "../../components/image/index";
25
+
26
+export default {
27
+    name: "",
28
+    components: { MyImage },
29
+    // 数据
30
+    data() {
31
+        return {
32
+            loading: false,
33
+        };
34
+    },
35
+    filters: {},
36
+    onLoad() {},
37
+    async onShow() {
38
+    },
39
+
40
+    // onPullDownRefresh() {
41
+    //     this.getList();
42
+    // },
43
+
44
+    // 函数
45
+    methods: {
46
+
47
+        checkboxChange(e){
48
+            console.log(e);
49
+        }
50
+    },
51
+
52
+    // 数据计算
53
+    computed: {
54
+        user() {
55
+            return this.$store.state.user.user;
56
+        },
57
+    },
58
+
59
+    // 数据监听
60
+    watch: {},
61
+};
62
+</script>
63
+
64
+
65
+<style lang="scss" scoped>
66
+.success-page {
67
+    min-height: 100vh;
68
+    background-color: #fff;
69
+}
70
+.success-main {
71
+    display: flex;
72
+    flex-direction: column;
73
+    justify-content: center;
74
+    align-items: center;
75
+    height: 100%;
76
+    padding-bottom: 2rem;
77
+    padding-top: px(300);
78
+}
79
+.success-btn {
80
+    color: #fff;
81
+    background-color: rgb(0, 188, 38);
82
+    font-size: px(44);
83
+    width: 100%;
84
+}
85
+.success-tit1 {
86
+    font-size: px(56);
87
+    font-weight: bold;
88
+    // color: rgb(0, 188, 38);
89
+    padding-bottom: px(40);
90
+    text-align: center;
91
+}
92
+.success-tit2 {
93
+    font-size: px(54);
94
+    font-weight: bold;
95
+    // color: rgb(0, 188, 38);
96
+    padding-bottom: px(120);
97
+    text-align: center;
98
+}
99
+.success-shop-name {
100
+    font-size: px(44);
101
+    text-align: center;
102
+    margin-top: px(100);
103
+}
104
+.success-box {
105
+    padding: px(40);
106
+    width: 100%;
107
+    margin-top: px(300);
108
+    .success-text {
109
+        width: 100%;
110
+        text-align: center;
111
+        color: #409eff;
112
+        margin-bottom: px(50);
113
+        display: flex;
114
+        align-items: center;
115
+        justify-content: center;
116
+        .success-checkbox{
117
+            transform: scale(0.8);
118
+        }
119
+    }
120
+}
121
+.success-load {
122
+    height: 100%;
123
+    padding-top: px(300);
124
+    .success-text {
125
+        width: px(700);
126
+        margin: 0 auto;
127
+        line-height: 1.6;
128
+        text-align: center;
129
+        font-size: px(44);
130
+    }
131
+}
132
+.success-link {
133
+    color: #409eff;
134
+}
135
+</style>

+ 14 - 14
src/pages/index/index-scan.vue

@@ -589,20 +589,20 @@ export default {
589 589
     },
590 590
     onLoad(opts) {
591 591
         this.vipCode = opts.vipcode;
592
-        // 判断权限
593
-        if (this.user.bundleId !== 0) {
594
-            if (this.user.authStatus === 0) {
595
-                // 未注册
596
-                this.router.replace({
597
-                    path: "/pages/manage/mina/register",
598
-                });
599
-            } else if (this.user.authStatus === 90) {
600
-                // 等待注册
601
-                this.router.replace({
602
-                    path: "/pages/manage/mina/query",
603
-                });
604
-            }
605
-        }
592
+        // // 判断权限
593
+        // if (this.user.bundleId !== 0) {
594
+        //     if (this.user.authStatus === 0) {
595
+        //         // 未注册
596
+        //         this.router.replace({
597
+        //             path: "/pages/manage/mina/register",
598
+        //         });
599
+        //     } else if (this.user.authStatus === 90) {
600
+        //         // 等待注册
601
+        //         this.router.replace({
602
+        //             path: "/pages/manage/mina/query",
603
+        //         });
604
+        //     }
605
+        // }
606 606
     },
607 607
     async onShow() {
608 608
         const self = this;

+ 146 - 32
src/pages/index/index.vue

@@ -520,7 +520,7 @@
520 520
         </block>
521 521
 
522 522
         <div class="guide" v-if="showGuide">
523
-            <div v-if="!showGuideLoading">
523
+            <div v-if="!user.storeStatus">
524 524
                 <h2 class="tit1">您还没有开通店铺,无法使用该模块</h2>
525 525
                 <h1 class="tit2">开通店铺您可以</h1>
526 526
                 <div class="box">
@@ -542,18 +542,51 @@
542 542
                         </li>
543 543
                     </ul>
544 544
                 </div>
545
-                <button class="btn" @click="jump('/pages/guide/form')">
545
+                <button class="btn" @click="jump('/pages/guide/apply')">
546 546
                     立即申请
547 547
                 </button>
548 548
             </div>
549
-            <div class="load" v-if="showGuideLoading">
549
+            <div class="load" v-if="user.storeStatus === 2">
550 550
                 <!-- 待审核 -->
551
-                <block v-if="user.storeStatus === 2">
552
-                    <h1 class="tit2">提交成功</h1>
553
-                    <div class="text">
554
-                        您的店铺开通申请提交成功,在审核通过后,我们将为您开通店铺并通知
551
+                <h1 class="tit2">提交成功</h1>
552
+                <div class="text">
553
+                    您的店铺开通申请提交成功,在审核通过后,我们将为您开通店铺并通知
554
+                </div>
555
+            </div>
556
+            <div class="load" v-if="user.storeStatus === 4">
557
+                <!-- 未通过 -->
558
+                <h1 class="tit2">审核未通过</h1>
559
+                <div class="text">
560
+                    您的店铺开通申请未通过,请联系客服修改后重新提交
561
+                </div>
562
+                <button class="btn" @click="jump('/pages/guide/apply')">
563
+                    重新提交
564
+                </button>
565
+            </div>
566
+            <div class="load" v-if="user.storeStatus === 3">
567
+                <!-- 审核通过 -->
568
+                <div class="success-main">
569
+                    <h2 class="success-tit1">恭喜您!</h2>
570
+                    <h2 class="success-tit1">店铺申请通过审核</h2>
571
+                    <!-- <h3 class="success-shop-name">店铺名称:xxxx</h3> -->
572
+
573
+                    <div class="success-box">
574
+                        <p class="success-text">
575
+                            <checkbox-group @change="checkboxChange">
576
+                                <checkbox value="1" class="success-checkbox" />
577
+                            </checkbox-group>
578
+                            <a @click="jump({ path: '/pages/custom/webview' })"
579
+                                >店铺使用协议</a
580
+                            >
581
+                        </p>
582
+                        <button
583
+                            class="success-btn"
584
+                            @click="openShop"
585
+                        >
586
+                            现在开通
587
+                        </button>
555 588
                     </div>
556
-                </block>
589
+                </div>
557 590
             </div>
558 591
         </div>
559 592
 
@@ -649,7 +682,7 @@ export default {
649 682
             loading: false, // 是否加载完成
650 683
 
651 684
             showGuide: false,
652
-            showGuideLoading: false,
685
+            agreement:false,
653 686
         };
654 687
     },
655 688
     filters: {
@@ -735,21 +768,21 @@ export default {
735 768
     },
736 769
     onLoad() {
737 770
         // 判断权限
738
-        if (this.user) {
739
-            if (this.user.bundleId !== 0) {
740
-                if (this.user.authStatus === 0) {
741
-                    // 未注册
742
-                    this.router.replace({
743
-                        path: "/pages/manage/mina/register",
744
-                    });
745
-                } else if (this.user.authStatus === 90) {
746
-                    // 等待注册
747
-                    this.router.replace({
748
-                        path: "/pages/manage/mina/query",
749
-                    });
750
-                }
751
-            }
752
-        }
771
+        // if (this.user) {
772
+        //     if (this.user.bundleId !== 0) {
773
+        //         if (this.user.authStatus === 0) {
774
+        //             // 未注册
775
+        //             this.router.replace({
776
+        //                 path: "/pages/manage/mina/register",
777
+        //             });
778
+        //         } else if (this.user.authStatus === 90) {
779
+        //             // 等待注册
780
+        //             this.router.replace({
781
+        //                 path: "/pages/manage/mina/query",
782
+        //             });
783
+        //         }
784
+        //     }
785
+        // }
753 786
     },
754 787
     async onShow() {
755 788
         const self = this;
@@ -759,15 +792,14 @@ export default {
759 792
         this.$refs.tabbar.setIndex(1);
760 793
 
761 794
         // 判断页面显示
762
-        if (this.user.roleId && this.user.bundleId !== 0) {
763
-            this.showGuide = false;
764
-        } else {
795
+        if (
796
+            this.user.storeStatus === 2 ||
797
+            this.user.storeStatus === 3 ||
798
+            this.user.storeStatus === 4
799
+        ) {
765 800
             this.showGuide = true;
766
-            if (this.user.storeStatus === 2) {
767
-                this.showGuideLoading = true;
768
-            } else {
769
-                this.showGuideLoading = false;
770
-            }
801
+        } else {
802
+            this.showGuide = false;
771 803
         }
772 804
     },
773 805
 
@@ -1232,6 +1264,22 @@ export default {
1232 1264
                 },
1233 1265
             });
1234 1266
         },
1267
+        checkboxChange(e){
1268
+            if(e.detail.value[0]==='1'){
1269
+                this.agreement = true;
1270
+            }else{
1271
+                this.agreement = false;
1272
+            }
1273
+            console.log(e);
1274
+        },
1275
+        openShop(){
1276
+            if(!this.agreement){
1277
+                return this.fn.showToast('请先同意使用协议');
1278
+            }
1279
+            this.router.push({
1280
+                path:'/pages/guide/form'
1281
+            })
1282
+        }
1235 1283
     },
1236 1284
 
1237 1285
     // 数据计算
@@ -1241,6 +1289,9 @@ export default {
1241 1289
         },
1242 1290
         user() {
1243 1291
             return this.$store.state.user.user;
1292
+            // return {
1293
+            //     storeStatus:4
1294
+            // }
1244 1295
         },
1245 1296
         orderList() {
1246 1297
             return this.list[this.tab].list;
@@ -1934,4 +1985,67 @@ page {
1934 1985
         color: #409eff;
1935 1986
     }
1936 1987
 }
1988
+.success-main {
1989
+    display: flex;
1990
+    flex-direction: column;
1991
+    justify-content: center;
1992
+    align-items: center;
1993
+    padding-bottom: 2rem;
1994
+}
1995
+.success-btn {
1996
+    color: #fff;
1997
+    background-color: rgb(0, 188, 38);
1998
+    font-size: px(44);
1999
+    width: 100%;
2000
+}
2001
+.success-tit1 {
2002
+    font-size: px(56);
2003
+    font-weight: bold;
2004
+    // color: rgb(0, 188, 38);
2005
+    padding-bottom: px(40);
2006
+    text-align: center;
2007
+}
2008
+.success-tit2 {
2009
+    font-size: px(54);
2010
+    font-weight: bold;
2011
+    // color: rgb(0, 188, 38);
2012
+    padding-bottom: px(120);
2013
+    text-align: center;
2014
+}
2015
+.success-shop-name {
2016
+    font-size: px(44);
2017
+    text-align: center;
2018
+    margin-top: px(100);
2019
+}
2020
+.success-box {
2021
+    padding: px(40);
2022
+    width: 100%;
2023
+    margin-top: px(300);
2024
+    .success-text {
2025
+        width: 100%;
2026
+        text-align: center;
2027
+        color: #409eff;
2028
+        margin-bottom: px(50);
2029
+        display: flex;
2030
+        align-items: center;
2031
+        justify-content: center;
2032
+        .success-checkbox {
2033
+            transform: scale(0.8);
2034
+        }
2035
+    }
2036
+}
2037
+.success-load {
2038
+    height: 100%;
2039
+    padding-top: px(300);
2040
+    .success-text {
2041
+        width: px(700);
2042
+        margin: 0 auto;
2043
+        line-height: 1.6;
2044
+        text-align: center;
2045
+        font-size: px(44);
2046
+    }
2047
+}
2048
+.success-link {
2049
+    color: #409eff;
2050
+}
1937 2051
 </style>

+ 13 - 13
src/pages/index/login.vue

@@ -141,19 +141,19 @@ export default {
141 141
                     if (res.success) {
142 142
                         // 判断权限
143 143
                         if (res.data.roleId && res.data.bundleId !== 0) {
144
-                            if (res.data.authStatus === 0) {
145
-                                // 未注册
146
-                                this.router.replace({
147
-                                    path: "/pages/manage/mina/register",
148
-                                });
149
-                                return;
150
-                            } else if (res.data.authStatus === 90) {
151
-                                // 等待注册
152
-                                this.router.replace({
153
-                                    path: "/pages/manage/mina/query",
154
-                                });
155
-                                return;
156
-                            }
144
+                            // if (res.data.authStatus === 0) {
145
+                            //     // 未注册
146
+                            //     this.router.replace({
147
+                            //         path: "/pages/manage/mina/register",
148
+                            //     });
149
+                            //     return;
150
+                            // } else if (res.data.authStatus === 90) {
151
+                            //     // 等待注册
152
+                            //     this.router.replace({
153
+                            //         path: "/pages/manage/mina/query",
154
+                            //     });
155
+                            //     return;
156
+                            // }
157 157
                             // 正常用户
158 158
                             this.$store.commit("user/login", res.data);
159 159
                             this.$store.commit("common/update", {

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

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