浏览代码

店铺设置

cr 4 年之前
父节点
当前提交
67fd5efe96
共有 5 个文件被更改,包括 527 次插入77 次删除
  1. 6 0
      src/pages.json
  2. 58 35
      src/pages/guide/delivery.vue
  3. 18 13
      src/pages/guide/form.vue
  4. 415 0
      src/pages/guide/points.vue
  5. 30 29
      src/pages/index/index.vue

+ 6 - 0
src/pages.json

@@ -396,6 +396,12 @@
396 396
                 "navigationBarTitleText": "设置积分"
397 397
             }
398 398
         },
399
+        {
400
+            "path": "pages/guide/points",
401
+            "style": {
402
+                "navigationBarTitleText": "设置积分"
403
+            }
404
+        },
399 405
         {
400 406
             "path": "pages/manage/shop/set-shop",
401 407
             "style": {

+ 58 - 35
src/pages/guide/delivery.vue

@@ -20,15 +20,15 @@
20 20
                 <div class="box">
21 21
                     <switch
22 22
                         :value="true"
23
-                        :checked="form.ziti"
24
-                        @change="switchChange($event, 'ziti')"
23
+                        :checked="form.deliveryMethod.storePickUp"
24
+                        @change="switchChange($event, 'storePickUp')"
25 25
                     ></switch>
26 26
                 </div>
27 27
             </section>
28
-            <section class="form-item" v-if="form.ziti">
28
+            <section class="form-item" v-if="form.deliveryMethod.storePickUp">
29 29
                 <div class="label">最低自提下单金额:</div>
30 30
                 <div class="box">
31
-                    <input type="number" v-model="form.pointsMaxProportion" />
31
+                    <input type="number" v-model="form.pickupMinAmount" />
32 32
                 </div>
33 33
                 <div class="tool">元</div>
34 34
             </section>
@@ -42,21 +42,21 @@
42 42
                 <div class="box">
43 43
                     <switch
44 44
                         :value="true"
45
-                        :checked="form.shangmen"
46
-                        @change="switchChange($event, 'shangmen')"
45
+                        :checked="form.deliveryMethod.homeDelivery"
46
+                        @change="switchChange($event, 'homeDelivery')"
47 47
                     ></switch>
48 48
                 </div>
49 49
             </section>
50
-            <block v-if="form.shangmen">
50
+            <block v-if="form.deliveryMethod.homeDelivery">
51 51
                 <section class="form-item">
52 52
                     <div class="label">
53 53
                         <!-- <span class="required">*</span> -->
54
-                        最低送货下单金额:
54
+                        最低送金额:
55 55
                     </div>
56 56
                     <div class="box">
57 57
                         <input
58 58
                             type="number"
59
-                            v-model="form.inviteFriendRewardPoints"
59
+                            v-model="form.deliveryMinAmount"
60 60
                         />
61 61
                     </div>
62 62
                     <div class="tool">元</div>
@@ -69,7 +69,7 @@
69 69
                     <div class="box">
70 70
                         <input
71 71
                             type="number"
72
-                            v-model="form.inviteFriendRewardPoints"
72
+                            v-model="form.deliveryDistance"
73 73
                         />
74 74
                     </div>
75 75
                     <div class="tool">公里</div>
@@ -82,7 +82,7 @@
82 82
                     <div class="box">
83 83
                         <input
84 84
                             type="digit"
85
-                            v-model="form.inviteFriendRewardPoints"
85
+                            v-model="form.deliveryFee"
86 86
                         />
87 87
                     </div>
88 88
                     <div class="tool">元</div>
@@ -95,7 +95,7 @@
95 95
                     <div class="box">
96 96
                         <input
97 97
                             type="digit"
98
-                            v-model="form.inviteFriendRewardPoints"
98
+                            v-model="form.packageFee"
99 99
                         />
100 100
                     </div>
101 101
                     <div class="tool">元</div>
@@ -103,7 +103,7 @@
103 103
             </block>
104 104
         </div>
105 105
         <div class="btns">
106
-            <div class="btn" @click="saveOk">保存</div>
106
+            <div class="btn" @click="saveOk">下一步</div>
107 107
         </div>
108 108
     </div>
109 109
 </template>
@@ -119,11 +119,16 @@ export default {
119 119
     data() {
120 120
         return {
121 121
             form: {
122
-                enablePoints: true,
123
-                pointsMaxProportion: "",
124
-                groupSignInRewardPoints: "",
125
-                inviteFriendRewardPoints: "",
126
-                enabledOrderPayRewardPoints: false,
122
+                deliveryMethod:{
123
+                    storePickUp:false, // 自提
124
+                    homeDelivery:false  // 上门
125
+                },
126
+                pickupMinAmount:0,  // 最低自提金额
127
+
128
+                deliveryMinAmount: 0, // 最低起送金额,
129
+                deliveryDistance: 0,   // 最远配送距离
130
+                deliveryFee: 0, // 配送费
131
+                packageFee: 0,  // 打包费
127 132
             },
128 133
             submitLoading: false,
129 134
         };
@@ -138,46 +143,64 @@ export default {
138 143
     // 函数
139 144
     methods: {
140 145
         getData() {
141
-            this.api.get("/Shop/GetPoints", {}, { pass: true }).then((res) => {
146
+            this.api.get("/Shop/GetDeliveryConfig", {}, { pass: true }).then((res) => {
142 147
                 if (res.success && res.data) {
143
-                    this.form = { ...res.data };
144
-                    this.form.enablePoints = res.data.enbaled;
145
-                    this.form.pointsMaxProportion =
146
-                        res.data.maxDeductionProportion;
148
+                    this.form.deliveryMethod = res.data.deliveryMethod;
149
+                    this.form.pickupMinAmount = res.data.pickupMinAmount/100;
150
+                    this.form.deliveryMinAmount = res.data.deliveryMinAmount/100;
151
+                    this.form.deliveryDistance = res.data.deliveryDistance/1000;
152
+                    this.form.deliveryFee = res.data.deliveryFee/100;
153
+                    this.form.packageFee = res.data.packageFee/100;
154
+
155
+                    this.form = { ...this.form };
147 156
                 }
148 157
             });
149 158
         },
150 159
         switchChange(e, name) {
151 160
             let v = e.detail.value;
152
-            this.form[name] = v ? true : false;
161
+            this.form.deliveryMethod[name] = v ? true : false;
153 162
             this.form = { ...this.form };
154 163
         },
155 164
         saveOk() {
156 165
             if (this.submitLoading) {
157 166
                 return;
158 167
             }
159
-            if (
160
-                (this.form.pointsMaxProportion &&
161
-                    this.form.pointsMaxProportion > 100) ||
162
-                this.form.pointsMaxProportion < 0
163
-            ) {
164
-                this.fn.showToast("每单最高抵扣比例范围为0~100");
165
-                return;
168
+            if (!this.form.deliveryMethod.storePickUp && !this.form.deliveryMethod.homeDelivery){
169
+                return this.fn.showToast("至少选择一种方式");
166 170
             }
167
-            console.log(this.form);
171
+            
168 172
             this.submitLoading = true;
169 173
             uni.showLoading({
170 174
                 title: "提交中...",
171 175
             });
172 176
             let data = { ...this.form };
177
+            if(data.pickupMinAmount){
178
+                data.pickupMinAmount*=100;
179
+                data.pickupMinAmount = parseInt(data.pickupMinAmount);
180
+            }
181
+            if(data.deliveryMinAmount){
182
+                data.deliveryMinAmount*=100;
183
+                data.deliveryMinAmount = parseInt(data.deliveryMinAmount);
184
+            }
185
+            if(data.deliveryDistance){
186
+                data.deliveryDistance*=1000;
187
+                data.deliveryDistance = parseInt(data.deliveryDistance);
188
+            }
189
+            if(data.deliveryFee){
190
+                data.deliveryFee*=100;
191
+                data.deliveryFee = parseInt(data.deliveryFee);
192
+            }
193
+            if(data.packageFee){
194
+                data.packageFee*=100;
195
+                data.packageFee = parseInt(data.packageFee);
196
+            }
173 197
             this.api
174
-                .post("/Shop/SetPoints", data, { pass: true })
198
+                .post("/Shop/SetDeliveryConfig", data, { pass: true })
175 199
                 .then((res) => {
176 200
                     this.submitLoading = false;
177 201
                     uni.hideLoading();
178 202
                     if (res.success) {
179
-                        this.fn.showToast("设置成功");
180
-                        this.router.back();
203
+                        this.router.replace('/pages/guide/points');
181 204
                     } else {
182 205
                         this.fn.showModal({
183 206
                             title: "设置错误",

+ 18 - 13
src/pages/guide/form.vue

@@ -1,5 +1,15 @@
1 1
 <template>
2 2
     <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="step">
4
+            <uni-steps
5
+                :options="[
6
+                    { title: '基础设置' },
7
+                    { title: '配送设置' },
8
+                    { title: '积分设置' },
9
+                ]"
10
+                :active="0"
11
+            ></uni-steps>
12
+        </div>
3 13
         <div class="form-card">
4 14
             <section class="form-item dis">
5 15
                 <div class="label">
@@ -105,7 +115,7 @@
105 115
             </section>
106 116
         </div>
107 117
         <div class="btns">
108
-            <div class="btn" @click="saveOk">保存</div>
118
+            <div class="btn" @click="saveOk">下一步</div>
109 119
         </div>
110 120
     </div>
111 121
 </template>
@@ -114,10 +124,11 @@
114 124
 import MyImage from "../../components/image/index";
115 125
 import DateTimePicker from "../../components/biaofun-datetime-picker/biaofun-datetime-picker";
116 126
 import easyUpload from "../../components/easy-upload/easy-upload";
127
+import uSteps from "../../components/uni-steps/uni-steps";
117 128
 
118 129
 export default {
119 130
     name: "",
120
-    components: { MyImage, DateTimePicker, easyUpload },
131
+    components: { MyImage, DateTimePicker, easyUpload,uSteps },
121 132
     // 数据
122 133
     data() {
123 134
         return {
@@ -216,17 +227,7 @@ export default {
216 227
                     this.submitLoading = false;
217 228
                     uni.hideLoading();
218 229
                     if (res.success) {
219
-                        this.fn.showModal({
220
-                            title:'开通成功',
221
-                            content:`恭喜!您的店铺${''}已开通成功。现在设置积分规则后立即使用`,
222
-                            confirmText:'设置积分',
223
-                            showCancel:false,
224
-                            confirmColor:'#02bb00'
225
-                        }).then(res=>{
226
-                            if (res.confirm) {
227
-                                this.router.replace('/pages/manage/points')
228
-                            }
229
-                        })
230
+                        this.router.replace('/pages/guide/delivery');
230 231
                     } else {
231 232
                         this.fn.showModal({
232 233
                             content:
@@ -479,4 +480,8 @@ export default {
479 480
 .dis{
480 481
     background-color: #f6f6f6;
481 482
 }
483
+.step {
484
+    padding-top: px(50);
485
+    padding-bottom: px(50);
486
+}
482 487
 </style>

+ 415 - 0
src/pages/guide/points.vue

@@ -0,0 +1,415 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="step">
4
+            <uni-steps
5
+                :options="[
6
+                    { title: '基础设置' },
7
+                    { title: '配送设置' },
8
+                    { title: '积分设置' },
9
+                ]"
10
+                :active="2"
11
+            ></uni-steps>
12
+        </div>
13
+        <div class="form-card">
14
+            <section class="form-item">
15
+                <div class="label">开启积分:</div>
16
+                <div class="box">
17
+                    <switch
18
+                        :value="true"
19
+                        :checked="form.enablePoints"
20
+                        @change="switchChange($event, 'enablePoints')"
21
+                    ></switch>
22
+                    <span class="tip">积分现金比:100积分=1元</span>
23
+                </div>
24
+            </section>
25
+            <block v-if="form.enablePoints">
26
+                <section class="form-item">
27
+                    <div class="label">每单最高抵扣比例:</div>
28
+                    <div class="box">
29
+                        <input
30
+                            type="number"
31
+                            v-model="form.pointsMaxProportion"
32
+                            placeholder="数值范围0~100"
33
+                        />
34
+                    </div>
35
+                    <div class="tool">%</div>
36
+                </section>
37
+                <section class="form-item">
38
+                    <div class="label">
39
+                        <!-- <span class="required">*</span> -->
40
+                        群内签到赠积分:
41
+                    </div>
42
+                    <div class="box">
43
+                        <input
44
+                            type="number"
45
+                            v-model="form.groupSignInRewardPoints"
46
+                        />
47
+                    </div>
48
+                </section>
49
+                <section class="form-item">
50
+                    <div class="label">
51
+                        <!-- <span class="required">*</span> -->
52
+                        邀请好友入群赠送积分:
53
+                    </div>
54
+                    <div class="box">
55
+                        <input
56
+                            type="number"
57
+                            v-model="form.inviteFriendRewardPoints"
58
+                        />
59
+                    </div>
60
+                </section>
61
+                <section class="form-item">
62
+                    <div class="label">
63
+                        <!-- <span class="required">*</span> -->
64
+                        下单付款赠积分:
65
+                    </div>
66
+                    <div class="box">
67
+                        <switch
68
+                            :value="true"
69
+                            :checked="form.enabledOrderPayRewardPoints"
70
+                            @change="
71
+                                switchChange(
72
+                                    $event,
73
+                                    'enabledOrderPayRewardPoints'
74
+                                )
75
+                            "
76
+                        ></switch>
77
+                        <span class="tip">购买每支付1元赠1积分</span>
78
+                    </div>
79
+                </section>
80
+            </block>
81
+        </div>
82
+        <div class="btns">
83
+            <div class="btn" @click="saveOk">保存</div>
84
+        </div>
85
+    </div>
86
+</template>
87
+
88
+<script>
89
+import MyImage from "../../components/image/index";
90
+import uSteps from "../../components/uni-steps/uni-steps";
91
+
92
+export default {
93
+    name: "",
94
+    components: { MyImage,uSteps },
95
+    // 数据
96
+    data() {
97
+        return {
98
+            form: {
99
+                enablePoints: true,
100
+                pointsMaxProportion: "",
101
+                groupSignInRewardPoints: "",
102
+                inviteFriendRewardPoints: "",
103
+                enabledOrderPayRewardPoints: false,
104
+            },
105
+            submitLoading: false,
106
+        };
107
+    },
108
+
109
+    onLoad(opts) {
110
+        this.getData();
111
+    },
112
+
113
+    onShow() {},
114
+
115
+    // 函数
116
+    methods: {
117
+        getData() {
118
+            this.api.get("/Shop/GetPoints", {}, { pass: true }).then((res) => {
119
+                if (res.success && res.data) {
120
+                    this.form = { ...res.data };
121
+                    this.form.enablePoints = res.data.enbaled;
122
+                    this.form.pointsMaxProportion =
123
+                        res.data.maxDeductionProportion;
124
+                }
125
+            });
126
+        },
127
+        switchChange(e, name) {
128
+            let v = e.detail.value;
129
+            this.form[name] = v ? true : false;
130
+            this.form = { ...this.form };
131
+        },
132
+        saveOk() {
133
+            if (this.submitLoading) {
134
+                return;
135
+            }
136
+            if (
137
+                (this.form.pointsMaxProportion &&
138
+                    this.form.pointsMaxProportion > 100) ||
139
+                this.form.pointsMaxProportion < 0
140
+            ) {
141
+                this.fn.showToast("每单最高抵扣比例范围为0~100");
142
+                return;
143
+            }
144
+            console.log(this.form);
145
+            this.submitLoading = true;
146
+            uni.showLoading({
147
+                title: "提交中...",
148
+            });
149
+            let data = { ...this.form };
150
+            this.api
151
+                .post("/Shop/SetPoints", data, { pass: true })
152
+                .then((res) => {
153
+                    this.submitLoading = false;
154
+                    uni.hideLoading();
155
+                    if (res.success) {
156
+                        this.fn.showToast("设置成功");
157
+                        this.router.back();
158
+                    } else {
159
+                        this.fn.showModal({
160
+                            title: "设置错误",
161
+                            content: res.message,
162
+                            showCancel: false,
163
+                        });
164
+                    }
165
+                });
166
+        },
167
+    },
168
+
169
+    // 数据计算
170
+    computed: {
171
+        user() {
172
+            return this.$store.state.user.user;
173
+        },
174
+    },
175
+
176
+    // 数据监听
177
+    watch: {},
178
+};
179
+</script>
180
+
181
+
182
+<style lang="scss" scoped>
183
+.page {
184
+    padding-bottom: px(120);
185
+    min-height: 100vh;
186
+    background-color: #fff;
187
+}
188
+.page--iphoneX {
189
+    padding-bottom: px(150);
190
+    .btn {
191
+        padding-bottom: px(30);
192
+        background-color: rgb(0, 188, 38);
193
+    }
194
+}
195
+.form-card {
196
+    background-color: #fff;
197
+    padding: 0 px(30);
198
+    & ~ .form-card {
199
+        margin-top: px(25);
200
+    }
201
+    .head {
202
+        display: flex;
203
+        align-items: center;
204
+        justify-content: space-between;
205
+        height: px(140);
206
+        background-color: #fbfbfb;
207
+        border-bottom: 1px solid #f1f1f1;
208
+        border-top: 1px solid #f1f1f1;
209
+        font-size: px(44);
210
+    }
211
+}
212
+.form-item {
213
+    display: flex;
214
+    min-height: px(140);
215
+    padding: px(30) 0;
216
+    box-sizing: border-box;
217
+    align-items: center;
218
+    font-size: px(44);
219
+    border-top: 1px solid #f1f1f1;
220
+    &.dis-item {
221
+        color: #999;
222
+        background: #f9f9f9;
223
+    }
224
+    .label {
225
+        // width: px(400);
226
+        flex-shrink: 0;
227
+        color: #666;
228
+        margin-right: px(20);
229
+    }
230
+    .box {
231
+        width: 100%;
232
+        position: relative;
233
+        input {
234
+            width: 100%;
235
+        }
236
+    }
237
+    .tool {
238
+        flex-shrink: 0;
239
+        color: #999;
240
+        margin-left: px(10);
241
+    }
242
+    textarea,
243
+    input {
244
+        max-width: 100%;
245
+        width: 100%;
246
+    }
247
+}
248
+.list {
249
+    // min-height: 100vh;
250
+    // background-color: #fff;
251
+    // border-bottom: 1px solid #f1f1f1;
252
+    li {
253
+        padding: px(0) px(35);
254
+        height: px(140);
255
+        line-height: px(140);
256
+        font-size: px(44);
257
+        border-top: 1px solid #f1f1f1;
258
+        display: flex;
259
+        justify-content: space-between;
260
+        align-items: center;
261
+    }
262
+    .tools {
263
+        display: flex;
264
+        align-items: center;
265
+        flex-shrink: 0;
266
+        span {
267
+            display: inline-block;
268
+            border: 1px solid #f1f1f1;
269
+            font-size: px(36);
270
+            height: px(80);
271
+            width: px(120);
272
+            display: flex;
273
+            justify-content: center;
274
+            align-items: center;
275
+            & ~ span {
276
+                margin-left: px(30);
277
+            }
278
+        }
279
+        .remove {
280
+            color: #f00;
281
+        }
282
+    }
283
+}
284
+.btn {
285
+    width: 100%;
286
+    height: px(120);
287
+    background-color: rgb(0, 188, 38);
288
+    color: #fff;
289
+    display: flex;
290
+    align-items: center;
291
+    justify-content: center;
292
+}
293
+.btns {
294
+    position: fixed;
295
+    bottom: 0;
296
+    left: 0;
297
+    right: 0;
298
+    z-index: 100;
299
+}
300
+.layout {
301
+    background-color: #eee;
302
+    color: #666;
303
+}
304
+.add-btn {
305
+    height: px(120);
306
+    color: #333;
307
+    display: flex;
308
+    align-items: center;
309
+    justify-content: center;
310
+    margin: px(50) px(35) 0;
311
+    border: 1px solid #ccc;
312
+    border-radius: px(10);
313
+}
314
+.code-tool {
315
+    display: flex;
316
+    justify-content: flex-start;
317
+    align-items: center;
318
+    .scan-img {
319
+        flex-shrink: 0;
320
+        width: px(80);
321
+        height: px(80);
322
+        /deep/ img {
323
+            width: px(80);
324
+            height: px(80);
325
+        }
326
+    }
327
+    .generate {
328
+        color: #0097d1;
329
+        margin-right: px(30);
330
+        flex-shrink: 0;
331
+    }
332
+}
333
+.required {
334
+    color: #f00;
335
+    font-size: px(44);
336
+    &.hide {
337
+        visibility: hidden;
338
+    }
339
+}
340
+.inp-dis {
341
+    color: #999;
342
+}
343
+
344
+.img-card {
345
+    padding-top: px(30);
346
+    padding-bottom: px(30);
347
+}
348
+.form-img-item {
349
+    .tit {
350
+        padding: px(30);
351
+        font-size: px(44);
352
+    }
353
+}
354
+
355
+.spec-list {
356
+    width: 100%;
357
+    display: flex;
358
+    justify-content: space-between;
359
+    align-items: center;
360
+    li {
361
+        width: 33.333333%;
362
+        font-size: px(40);
363
+        height: px(100);
364
+        border: 1px solid #f1f1f1;
365
+        display: flex;
366
+        align-items: center;
367
+        justify-content: center;
368
+        color: #999;
369
+        & ~ li {
370
+            // border-left: none;
371
+        }
372
+        &.on {
373
+            color: rgb(0, 188, 38);
374
+            border-color: rgb(0, 188, 38);
375
+        }
376
+    }
377
+}
378
+.mo-date {
379
+    margin-top: px(20);
380
+    border-bottom: 1px solid #f1f1f1;
381
+    background: #fbfbfb;
382
+    font-size: px(40);
383
+    padding: px(10);
384
+}
385
+.n-date-box {
386
+    margin-top: px(20);
387
+    font-size: px(40);
388
+}
389
+.n-date {
390
+    border-bottom: 1px solid #f1f1f1;
391
+    background: #fbfbfb;
392
+    padding: 0 px(20);
393
+    display: inline-block;
394
+    width: px(200);
395
+    font-size: px(44);
396
+    vertical-align: bottom;
397
+}
398
+.address-icon {
399
+    /deep/ img {
400
+        width: px(60);
401
+        height: px(60);
402
+    }
403
+}
404
+.dis {
405
+    background-color: #f6f6f6;
406
+}
407
+.tip {
408
+    color: #999;
409
+    margin-left: px(10);
410
+}
411
+.step {
412
+    padding-top: px(50);
413
+    padding-bottom: px(50);
414
+}
415
+</style>

+ 30 - 29
src/pages/index/index.vue

@@ -579,10 +579,7 @@
579 579
                                 >店铺使用协议</a
580 580
                             >
581 581
                         </p>
582
-                        <button
583
-                            class="success-btn"
584
-                            @click="openShop"
585
-                        >
582
+                        <button class="success-btn" @click="openShop">
586 583
                             现在开通
587 584
                         </button>
588 585
                     </div>
@@ -682,8 +679,8 @@ export default {
682 679
             loading: false, // 是否加载完成
683 680
 
684 681
             showGuide: false,
685
-            agreement:false,
686
-            storeStatus:-1
682
+            agreement: false,
683
+            storeStatus: -1,
687 684
         };
688 685
     },
689 686
     filters: {
@@ -796,27 +793,31 @@ export default {
796 793
 
797 794
     // 函数
798 795
     methods: {
799
-        checkStatus(){
796
+        checkStatus() {
800 797
             /* 
801 798
                 闭店中 = 0,  // 已开通,店铺未营业
802 799
                 营业中 = 1,  // 店铺营业中
803 800
                 待审核 = 2,  // 通过审核后,状态改为闭店中
804 801
                 待开通 = 3,  // 通过审核,等待开通
805 802
                 未通过审核 = 4  // 未通过审核
803
+                待设置配送 = 5,  // 等待设置配送设置
804
+                待设置积分 = 6   // 等待设置积分
806 805
             */
807
-            this.api.get('/Shop/checkStatus')
808
-                .then(res=>{
809
-                    this.storeStatus = res.data;
810
-                            // 判断页面显示
811
-                    if (
812
-                        this.storeStatus === 0 ||
813
-                        this.storeStatus === 1
814
-                    ) {
815
-                        this.showGuide = false;
816
-                    } else {
817
-                        this.showGuide = true;
818
-                    }
819
-                })
806
+            this.api.get("/Shop/checkStatus").then((res) => {
807
+                this.storeStatus = res.data;
808
+                // 判断页面显示
809
+                if (this.storeStatus === 0 || this.storeStatus === 1) {
810
+                    this.showGuide = false;
811
+                } else {
812
+                    this.showGuide = true;
813
+                }
814
+                if (this.storeStatus === 5) {
815
+                    this.router.replace("/pages/guide/delivery");
816
+                }
817
+                if (this.storeStatus === 6) {
818
+                    this.router.replace("/pages/guide/points");
819
+                }
820
+            });
820 821
         },
821 822
         // 切换导航
822 823
         setTab(index) {
@@ -1277,22 +1278,22 @@ export default {
1277 1278
                 },
1278 1279
             });
1279 1280
         },
1280
-        checkboxChange(e){
1281
-            if(e.detail.value[0]==='1'){
1281
+        checkboxChange(e) {
1282
+            if (e.detail.value[0] === "1") {
1282 1283
                 this.agreement = true;
1283
-            }else{
1284
+            } else {
1284 1285
                 this.agreement = false;
1285 1286
             }
1286 1287
             console.log(e);
1287 1288
         },
1288
-        openShop(){
1289
-            if(!this.agreement){
1290
-                return this.fn.showToast('请先同意使用协议');
1289
+        openShop() {
1290
+            if (!this.agreement) {
1291
+                return this.fn.showToast("请先同意使用协议");
1291 1292
             }
1292 1293
             this.router.push({
1293
-                path:'/pages/guide/form'
1294
-            })
1295
-        }
1294
+                path: "/pages/guide/form",
1295
+            });
1296
+        },
1296 1297
     },
1297 1298
 
1298 1299
     // 数据计算