Bläddra i källkod

优惠券列表

cr 4 år sedan
förälder
incheckning
fa5bc27cef

+ 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

+ 2 - 2
.env.develop

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
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

+ 2 - 2
.env.production

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
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

+ 31 - 0
src/common/api/index.js

@@ -62,6 +62,37 @@ export default {
62 62
         })
63 63
     },
64 64
 
65
+    /**
66
+     * post请求
67
+     * @param url
68
+     * @param data
69
+     * @param config
70
+     * @returns {Promise<any>}
71
+     */
72
+    put(url, data = {query: ''}, config = {}) {
73
+        if (data.query) {
74
+            url = url + '?' + qs.stringify(data)
75
+            delete data.query
76
+        }
77
+
78
+        return new Promise((resolve, reject) => {
79
+            ajax.put(url, {
80
+                // preview: Number(store.state.common.preview),
81
+                ...data,
82
+            }, {
83
+                isJson: true,
84
+                ...config,
85
+            }).then(res => {
86
+                if (res.code === '0' || config.pass === true) {
87
+                    resolve(res)
88
+                } else {
89
+                    plugin.showToast(res.message)
90
+                    reject(res)
91
+                }
92
+            })
93
+        })
94
+    },
95
+
65 96
     /**
66 97
      * delete请求
67 98
      * @param data

+ 1 - 0
src/common/store/common.js

@@ -13,6 +13,7 @@ const module = {
13 13
         skuItem: null,   // manage/spec-item-form 编辑时临时保存
14 14
         curOrder: null,   // index/refund 售后临时保存
15 15
         disparityData:null, // index/disparity 售后临时保存
16
+        couponData:null, // manage/coupon/form 优惠券临时保存
16 17
     },
17 18
 
18 19
     // 同步方法

+ 19 - 0
src/pages.json

@@ -148,6 +148,25 @@
148 148
                 "navigationBarTitleText": "访客数据分析"
149 149
             }
150 150
         },
151
+        {
152
+            "path": "pages/manage/coupon/form",
153
+            "style": {
154
+                "navigationBarTitleText": "新增优惠券"
155
+            }
156
+        },
157
+        {
158
+            "path": "pages/manage/coupon/form2",
159
+            "style": {
160
+                "navigationBarTitleText": "新增优惠券"
161
+            }
162
+        },
163
+        {
164
+            "path": "pages/manage/coupon/list",
165
+            "style": {
166
+                "navigationBarTitleText": "优惠券列表",
167
+                "enablePullDownRefresh": true
168
+            }
169
+        },
151 170
         {
152 171
             "path": "pages/pic/pic",
153 172
             "style": {

+ 6 - 0
src/pages/manage/add-good-form.vue

@@ -1119,8 +1119,14 @@ export default {
1119 1119
                 );
1120 1120
             }
1121 1121
             this.submitLoading = true;
1122
+            
1123
+            uni.showLoading({
1124
+                title: "提交中...",
1125
+                mask:true
1126
+            });
1122 1127
             this.api.post("/product/SaveEdit", sendData,{pass:true}).then((res) => {
1123 1128
                 this.submitLoading = false;
1129
+                uni.hideLoading();
1124 1130
                 if (res.success) {
1125 1131
                     if (type === "next") {
1126 1132
                         this.fn.showToast("保存成功");

+ 623 - 0
src/pages/manage/coupon/form.vue

@@ -0,0 +1,623 @@
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
+                        class="inp-dis"
13
+                        v-model="form.activityName"
14
+                    />
15
+                </div>
16
+            </section>
17
+
18
+            <section class="form-item">
19
+                <div class="label">
20
+                    <span class="required hide">*</span>
21
+                    活动备注:
22
+                </div>
23
+                <div class="box">
24
+                    <input type="digit" v-model="form.activityRemark" />
25
+                </div>
26
+                <div class="tool">
27
+                    <!-- <span class="">元</span> -->
28
+                </div>
29
+            </section>
30
+            <section class="form-item">
31
+                <div class="label">
32
+                    <span class="required">*</span>
33
+                    开始时间:
34
+                </div>
35
+                <div class="box">
36
+                    <picker
37
+                        mode="date"
38
+                        @change="pickerDateChange('startReceiveTime', $event)"
39
+                        :end="pickerDateRange.endReceiveTime"
40
+                    >
41
+                        <input
42
+                            type="digit"
43
+                            v-model="form.startReceiveTime"
44
+                            :disabled="true"
45
+                        />
46
+                    </picker>
47
+                </div>
48
+                <div class="tool">
49
+                    <!-- <span class="">元</span> -->
50
+                </div>
51
+            </section>
52
+            <section class="form-item">
53
+                <div class="label">
54
+                    <span class="required">*</span>
55
+                    结束时间:
56
+                </div>
57
+                <div class="box">
58
+                    <picker
59
+                        mode="date"
60
+                        @change="pickerDateChange('endReceiveTime', $event)"
61
+                        :start="pickerDateRange.startReceiveTime"
62
+                    >
63
+                        <input
64
+                            type="digit"
65
+                            v-model="form.endReceiveTime"
66
+                            :disabled="true"
67
+                        />
68
+                    </picker>
69
+                </div>
70
+                <div class="tool">
71
+                    <!-- <span class="">元</span> -->
72
+                </div>
73
+            </section>
74
+
75
+            <section class="form-item" stype>
76
+                <div class="label">
77
+                    <span class="required hide">*</span>
78
+                    用券时间:
79
+                </div>
80
+                <div class="box">
81
+                    <ul class="spec-list">
82
+                        <li
83
+                            :class="{ on: form.couponTime === 0 }"
84
+                            @click="couponTimeClick(0)"
85
+                        >
86
+                            同步发券
87
+                        </li>
88
+                        <li
89
+                            :class="{ on: form.couponTime === 1 }"
90
+                            @click="couponTimeClick(1)"
91
+                        >
92
+                            自定义
93
+                        </li>
94
+                        <li
95
+                            :class="{ on: form.couponTime === 2 }"
96
+                            @click="couponTimeClick(2)"
97
+                        >
98
+                            n天内有效
99
+                        </li>
100
+                    </ul>
101
+                    <!-- 自定义时间 -->
102
+                    <black v-if="form.couponTime === 1">
103
+                        <div class="mo-date">
104
+                            <picker mode="date">
105
+                                <input
106
+                                    type="digit"
107
+                                    v-model="form.startUseTime"
108
+                                    :disabled="true"
109
+                                    @change="
110
+                                        pickerDateChange('startUseTime', $event)
111
+                                    "
112
+                                    :start="pickerDateRange.endUseTime"
113
+                                    placeholder="劵生效时间"
114
+                                />
115
+                            </picker>
116
+                        </div>
117
+                        <div class="mo-date">
118
+                            <picker mode="date">
119
+                                <input
120
+                                    type="digit"
121
+                                    v-model="form.endUseTime"
122
+                                    :disabled="true"
123
+                                    @change="
124
+                                        pickerDateChange('endUseTime', $event)
125
+                                    "
126
+                                    :start="pickerDateRange.startUseTime"
127
+                                    placeholder="券结束日期"
128
+                                />
129
+                            </picker>
130
+                        </div>
131
+                    </black>
132
+                    <!-- 多少天内有效 -->
133
+                    <div v-if="form.couponTime === 2" class="n-date-box">
134
+                        领取成功后
135
+                        <div class="n-date">
136
+                            <input
137
+                                type="digit"
138
+                                v-model="form.expiredDays"
139
+                                placeholder=""
140
+                            />
141
+                        </div>
142
+                        天有效
143
+                    </div>
144
+                </div>
145
+            </section>
146
+
147
+            <!-- <section class="form-item">
148
+                <div class="label">
149
+                    <span class="required hide hide">*</span>
150
+                    成本:
151
+                </div>
152
+                <div class="box">
153
+                    <input type="digit" v-model="form.cost" />
154
+                </div>
155
+            </section> -->
156
+            <section class="form-item">
157
+                <div class="label">
158
+                    <span class="required hide">*</span>
159
+                    发放方式:
160
+                </div>
161
+                <div class="box">
162
+                    <picker
163
+                        :mode="'selector'"
164
+                        :range="opts.grantMethod"
165
+                        :range-key="'key'"
166
+                        @change="pickerChange('grantMethod', $event)"
167
+                    >
168
+                        <input
169
+                            type="text"
170
+                            :disabled="true"
171
+                            :value="pickerView('grantMethod', form.grantMethod)"
172
+                            placeholder="请选择"
173
+                        />
174
+                    </picker>
175
+                </div>
176
+                <div class="tool"></div>
177
+            </section>
178
+            <section class="form-item">
179
+                <div class="label">
180
+                    <span class="required hide">*</span>
181
+                    重复领取:
182
+                </div>
183
+                <div class="box">
184
+                    <picker
185
+                        :mode="'selector'"
186
+                        :range="opts.repeatClaim"
187
+                        :range-key="'key'"
188
+                        @change="pickerChange('repeatClaim', $event)"
189
+                    >
190
+                        <input
191
+                            type="text"
192
+                            :disabled="true"
193
+                            :value="pickerView('repeatClaim', form.repeatClaim)"
194
+                            placeholder="请选择"
195
+                        />
196
+                    </picker>
197
+                </div>
198
+                <div class="tool"></div>
199
+            </section>
200
+            <section class="form-item">
201
+                <div class="label">
202
+                    <span class="required hide">*</span>
203
+                    活动范围:
204
+                </div>
205
+                <div class="box">
206
+                    <picker
207
+                        :mode="'selector'"
208
+                        :range="opts.isCurrency"
209
+                        :range-key="'key'"
210
+                        @change="pickerChange('isCurrency', $event)"
211
+                    >
212
+                        <input
213
+                            type="text"
214
+                            :disabled="true"
215
+                            :value="pickerView('isCurrency', form.isCurrency)"
216
+                            placeholder="请选择"
217
+                        />
218
+                    </picker>
219
+                </div>
220
+            </section>
221
+            <section class="form-item">
222
+                <div class="label">
223
+                    <span class="required hide">*</span>
224
+                    面向人群:
225
+                </div>
226
+                <div class="box">
227
+                    <picker
228
+                        :mode="'selector'"
229
+                        :range="opts.facingForCrowd"
230
+                        :range-key="'key'"
231
+                        @change="pickerChange('facingForCrowd', $event)"
232
+                    >
233
+                        <input
234
+                            type="text"
235
+                            :disabled="true"
236
+                            :value="
237
+                                pickerView(
238
+                                    'facingForCrowd',
239
+                                    form.facingForCrowd
240
+                                )
241
+                            "
242
+                            placeholder="请选择"
243
+                        />
244
+                    </picker>
245
+                </div>
246
+            </section>
247
+            <section class="form-item">
248
+                <div class="label">
249
+                    <span class="required hide">*</span>
250
+                    支持赠送:
251
+                </div>
252
+                <div class="box">
253
+                    <picker
254
+                        :mode="'selector'"
255
+                        :range="opts.giveToFriends"
256
+                        :range-key="'key'"
257
+                        @change="pickerChange('giveToFriends', $event)"
258
+                    >
259
+                        <input
260
+                            type="text"
261
+                            :disabled="true"
262
+                            :value="
263
+                                pickerView('giveToFriends', form.giveToFriends)
264
+                            "
265
+                            placeholder="请选择"
266
+                        />
267
+                    </picker>
268
+                </div>
269
+            </section>
270
+        </div>
271
+        <div class="btn" @click="saveOk">下一步</div>
272
+    </div>
273
+</template>
274
+
275
+<script>
276
+import MyImage from "../../../components/image/index";
277
+
278
+export default {
279
+    name: "",
280
+    components: { MyImage },
281
+    // 数据
282
+    data() {
283
+        return {
284
+            form: {
285
+                activityName: "",
286
+                activityRemark: "",
287
+                startReceiveTime: "",
288
+                endReceiveTime: "",
289
+                couponTime: 0, //用券时间 0-同步发券时间,1-自定义时间,2-领取成功后多少天内有效
290
+                startUseTime: "", // -自定义时间使用
291
+                endUseTime: "", // -自定义时间使用
292
+                expiredDays: 0, // 领取成功后多少天内有效使用
293
+                grantMethod: 0,
294
+                repeatClaim: true,
295
+                isCurrency: true,
296
+                facingForCrowd: 0,
297
+                giveToFriends: true,
298
+            },
299
+            pickerDateRange: {
300
+                startReceiveTime: "",
301
+                endReceiveTime: "",
302
+                startUseTime: "",
303
+                endUseTime: "",
304
+            },
305
+            opts: {
306
+                grantMethod: [
307
+                    { key: "公开发放", value: 0 },
308
+                    { key: "自行发放", value: 1 },
309
+                ],
310
+                repeatClaim: [
311
+                    { key: "可以", value: true },
312
+                    { key: "不可以", value: false },
313
+                ],
314
+                isCurrency: [
315
+                    { key: "全店商品", value: true },
316
+                    { key: "部分商品", value: false },
317
+                ],
318
+                facingForCrowd: [
319
+                    { key: "所有用户", value: 0 },
320
+                    { key: "所有会员", value: 2 },
321
+                    { key: "新人专享", value: 3 },
322
+                ],
323
+                giveToFriends: [
324
+                    { key: "支持", value: true },
325
+                    { key: "不支持", value: false },
326
+                ],
327
+            },
328
+        };
329
+    },
330
+
331
+    onLoad() {},
332
+
333
+    onShow() {},
334
+
335
+    // 函数
336
+    methods: {
337
+        couponTimeClick(v) {
338
+            this.form.couponTime = v;
339
+            switch (v) {
340
+                case 0:
341
+                    this.startUseTime = "";
342
+                    this.endUseTime = "";
343
+                    this.expiredDays = "";
344
+                    break;
345
+                case 1:
346
+                    this.expiredDays = "";
347
+                    break;
348
+                case 2:
349
+                    this.startUseTime = "";
350
+                    this.endUseTime = "";
351
+                    break;
352
+            }
353
+        },
354
+
355
+        pickerChange(name, e) {
356
+            let index = e.detail.value;
357
+            this.form[name] = this.opts[name][index].value;
358
+        },
359
+        pickerDateChange(name, e) {
360
+            console.log(e);
361
+            this.form[name] = e.detail.value + " 00:00:00";
362
+            this.pickerDateRange[name] = e.detail.value;
363
+        },
364
+        pickerView(name, v) {
365
+            for (let item of this.opts[name]) {
366
+                if (item.value === v) {
367
+                    return item.key;
368
+                }
369
+            }
370
+        },
371
+
372
+        saveOk() {
373
+            if (!this.form.activityName) {
374
+                return this.fn.showToast("请输入活动名称");
375
+            }
376
+            if (!this.form.startReceiveTime) {
377
+                return this.fn.showToast("请选择开始时间");
378
+            }
379
+            if (!this.form.endReceiveTime) {
380
+                return this.fn.showToast("请选择结束时间");
381
+            }
382
+
383
+            let data = { ...this.form };
384
+            switch (this.form.couponTime) {
385
+                case 0:
386
+                    delete data.startUseTime;
387
+                    delete data.endUseTime;
388
+                    delete data.expiredDays;
389
+                    break;
390
+                case 1:
391
+                    delete data.expiredDays;
392
+                    break;
393
+                case 2:
394
+                    delete data.startUseTime;
395
+                    delete data.endUseTime;
396
+                    break;
397
+            }
398
+            this.$store.commit("common/update", {
399
+                couponData: data,
400
+            });
401
+            this.router.push({
402
+                path: "/pages/manage/coupon/form2",
403
+            });
404
+        },
405
+    },
406
+
407
+    // 数据计算
408
+    computed: {},
409
+
410
+    // 数据监听
411
+    watch: {},
412
+};
413
+</script>
414
+
415
+
416
+<style lang="scss" scoped>
417
+.page {
418
+    padding-bottom: px(120);
419
+    min-height: 100vh;
420
+}
421
+.page--iphoneX {
422
+    padding-bottom: px(150);
423
+    .btn {
424
+        padding-bottom: px(30);
425
+        background-color: rgb(0, 188, 38);
426
+    }
427
+}
428
+.form-card {
429
+    background-color: #fff;
430
+    padding: 0 px(30);
431
+    & ~ .form-card {
432
+        margin-top: px(25);
433
+    }
434
+    .head {
435
+        display: flex;
436
+        align-items: center;
437
+        justify-content: space-between;
438
+        height: px(140);
439
+        background-color: #fbfbfb;
440
+        border-bottom: 1px solid #f1f1f1;
441
+        border-top: 1px solid #f1f1f1;
442
+        font-size: px(44);
443
+    }
444
+}
445
+.form-item {
446
+    display: flex;
447
+    min-height: px(140);
448
+    padding: px(30) 0;
449
+    box-sizing: border-box;
450
+    align-items: center;
451
+    font-size: px(44);
452
+    & ~ .form-item {
453
+        border-top: 1px solid #f1f1f1;
454
+    }
455
+    .label {
456
+        width: px(240);
457
+        flex-shrink: 0;
458
+        color: #999;
459
+        margin-right: px(10);
460
+    }
461
+    .box {
462
+        width: 100%;
463
+        position: relative;
464
+        input {
465
+            width: 100%;
466
+        }
467
+    }
468
+    .tool {
469
+        flex-shrink: 0;
470
+        color: #999;
471
+        margin-left: px(10);
472
+    }
473
+    textarea,
474
+    input {
475
+        max-width: 100%;
476
+        width: 100%;
477
+    }
478
+}
479
+.list {
480
+    // min-height: 100vh;
481
+    // background-color: #fff;
482
+    // border-bottom: 1px solid #f1f1f1;
483
+    li {
484
+        padding: px(0) px(35);
485
+        height: px(140);
486
+        line-height: px(140);
487
+        font-size: px(44);
488
+        border-top: 1px solid #f1f1f1;
489
+        display: flex;
490
+        justify-content: space-between;
491
+        align-items: center;
492
+    }
493
+    .tools {
494
+        display: flex;
495
+        align-items: center;
496
+        flex-shrink: 0;
497
+        span {
498
+            display: inline-block;
499
+            border: 1px solid #f1f1f1;
500
+            font-size: px(36);
501
+            height: px(80);
502
+            width: px(120);
503
+            display: flex;
504
+            justify-content: center;
505
+            align-items: center;
506
+            & ~ span {
507
+                margin-left: px(30);
508
+            }
509
+        }
510
+        .remove {
511
+            color: #f00;
512
+        }
513
+    }
514
+}
515
+.btn {
516
+    position: fixed;
517
+    bottom: 0;
518
+    left: 0;
519
+    right: 0;
520
+    width: 100%;
521
+    height: px(120);
522
+    background-color: rgb(0, 188, 38);
523
+    color: #fff;
524
+    display: flex;
525
+    align-items: center;
526
+    justify-content: center;
527
+    z-index: 100;
528
+}
529
+.add-btn {
530
+    height: px(120);
531
+    color: #333;
532
+    display: flex;
533
+    align-items: center;
534
+    justify-content: center;
535
+    margin: px(50) px(35) 0;
536
+    border: 1px solid #ccc;
537
+    border-radius: px(10);
538
+}
539
+.code-tool {
540
+    display: flex;
541
+    justify-content: flex-start;
542
+    align-items: center;
543
+    .scan-img {
544
+        flex-shrink: 0;
545
+        width: px(80);
546
+        height: px(80);
547
+        /deep/ img {
548
+            width: px(80);
549
+            height: px(80);
550
+        }
551
+    }
552
+    .generate {
553
+        color: #0097d1;
554
+        margin-right: px(30);
555
+        flex-shrink: 0;
556
+    }
557
+}
558
+.required {
559
+    color: #f00;
560
+    font-size: px(44);
561
+    &.hide {
562
+        visibility: hidden;
563
+    }
564
+}
565
+.inp-dis {
566
+    color: #999;
567
+}
568
+
569
+.img-card {
570
+    padding-top: px(30);
571
+    padding-bottom: px(30);
572
+}
573
+.form-img-item {
574
+    .tit {
575
+        padding: px(30);
576
+        font-size: px(44);
577
+    }
578
+}
579
+
580
+.spec-list {
581
+    width: 100%;
582
+    display: flex;
583
+    justify-content: space-between;
584
+    align-items: center;
585
+    li {
586
+        width: 33.333333%;
587
+        font-size: px(40);
588
+        height: px(100);
589
+        border: 1px solid #f1f1f1;
590
+        display: flex;
591
+        align-items: center;
592
+        justify-content: center;
593
+        color: #999;
594
+        & ~ li {
595
+            // border-left: none;
596
+        }
597
+        &.on {
598
+            color: rgb(0, 188, 38);
599
+            border-color: rgb(0, 188, 38);
600
+        }
601
+    }
602
+}
603
+.mo-date {
604
+    margin-top: px(20);
605
+    border-bottom: 1px solid #f1f1f1;
606
+    background: #fbfbfb;
607
+    font-size: px(40);
608
+    padding: px(10);
609
+}
610
+.n-date-box {
611
+    margin-top: px(20);
612
+    font-size: px(40);
613
+}
614
+.n-date {
615
+    border-bottom: 1px solid #f1f1f1;
616
+    background: #fbfbfb;
617
+    padding: 0 px(20);
618
+    display: inline-block;
619
+    width: px(200);
620
+    font-size: px(44);
621
+    vertical-align: bottom;
622
+}
623
+</style>

+ 354 - 0
src/pages/manage/coupon/form2.vue

@@ -0,0 +1,354 @@
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 hide">*</span>
7
+                    满减券
8
+                </div>
9
+                <div class="box">
10
+                    <!-- <input type="text" class="inp-dis" v-model="form.key" /> -->
11
+                </div>
12
+            </section>
13
+
14
+            <section class="form-item">
15
+                <div class="label">
16
+                    <span class="required hide">*</span>
17
+                    无门槛:
18
+                </div>
19
+                <div class="box">
20
+                    <switch
21
+                        :checked="form.noThreshold"
22
+                        @change="noThresholdChange"
23
+                    ></switch>
24
+                </div>
25
+                <div class="tool"></div>
26
+            </section>
27
+
28
+            <section class="form-item" v-if="form.noThreshold === false">
29
+                <div class="label">
30
+                    <span class="required hide">*</span>
31
+                    满:
32
+                </div>
33
+                <div class="box">
34
+                    <input type="digit" v-model="form.minimumAmount" />
35
+                </div>
36
+                <div class="tool">
37
+                    <span class="">元</span>
38
+                </div>
39
+            </section>
40
+
41
+            <section class="form-item">
42
+                <div class="label">
43
+                    <span class="required hide">*</span>
44
+                    减:
45
+                </div>
46
+                <div class="box">
47
+                    <input type="digit" v-model="form.value" />
48
+                </div>
49
+                <div class="tool">
50
+                    <span class="">元</span>
51
+                </div>
52
+            </section>
53
+
54
+            <section class="form-item">
55
+                <div class="label">
56
+                    <span class="required hide">*</span>
57
+                    发行数量:
58
+                </div>
59
+                <div class="box">
60
+                    <input type="digit" v-model="form.total" />
61
+                </div>
62
+                <div class="tool">
63
+                    <span class="">张</span>
64
+                </div>
65
+            </section>
66
+        </div>
67
+        <div class="btn" @click="saveOk">提交</div>
68
+    </div>
69
+</template>
70
+
71
+<script>
72
+import MyImage from "../../../components/image/index";
73
+
74
+export default {
75
+    name: "",
76
+    components: { MyImage },
77
+    // 数据
78
+    data() {
79
+        return {
80
+            couponData: {},
81
+            form: {
82
+                type: 0,
83
+                noThreshold: false,
84
+                minimumAmount: null,
85
+                value: null,
86
+                total: null,
87
+            },
88
+        };
89
+    },
90
+
91
+    onLoad() {},
92
+
93
+    onShow() {
94
+        if (this.$store.state.common.couponData) {
95
+            this.couponData = { ...this.$store.state.common.couponData };
96
+
97
+            this.$store.commit("common/update", {
98
+                couponData: null,
99
+            });
100
+        } else {
101
+            this.router.back();
102
+        }
103
+    },
104
+
105
+    // 函数
106
+    methods: {
107
+        noThresholdChange(e) {
108
+            this.form.noThreshold = e.detail.value;
109
+            if (this.form.noThreshold) {
110
+                this.minimumAmount = null;
111
+            }
112
+        },
113
+        saveOk() {
114
+            if (this.submitLoading) {
115
+                return;
116
+            }
117
+            if (this.form.noThreshold === true) {
118
+                if (!this.form.value) {
119
+                    return this.fn.showToast("请输入优惠金额");
120
+                }
121
+            } else {
122
+                if (!this.form.minimumAmount) {
123
+                    return this.fn.showToast("请输入门槛金额");
124
+                }
125
+                if (!this.form.value) {
126
+                    return this.fn.showToast("请输入优惠金额");
127
+                }
128
+                if (
129
+                    Number(this.form.minimumAmount) <= Number(this.form.value)
130
+                ) {
131
+                    return this.fn.showToast("优惠金额必须小于门槛金额");
132
+                }
133
+            }
134
+            if (!this.form.minimumAmount) {
135
+                return this.fn.showToast("请输入门槛金额");
136
+            }
137
+            if (!this.form.value) {
138
+                return this.fn.showToast("请输入优惠金额");
139
+            }
140
+            if (Number(this.form.minimumAmount) <= Number(this.form.value)) {
141
+                return this.fn.showToast("优惠金额必须小于门槛金额");
142
+            }
143
+            if (!this.form.total) {
144
+                return this.fn.showToast("请输入发行数量");
145
+            }
146
+            let sendData = {
147
+                ...this.couponData,
148
+                ...this.form,
149
+            };
150
+            if (this.form.noThreshold === true) {
151
+                delete sendData.minimumAmount;
152
+            } else {
153
+                sendData.minimumAmount = parseInt(sendData.minimumAmount * 100);
154
+                sendData.value = parseInt(sendData.value * 100);
155
+                sendData.total = parseInt(sendData.total);
156
+            }
157
+
158
+            this.submitLoading = true;
159
+            uni.showLoading({
160
+                title: "提交中...",
161
+                mask: true,
162
+            });
163
+            console.log(sendData);
164
+            this.api
165
+                .put("/Coupon/AddCoupon", sendData, { pass: true })
166
+                .then((res) => {
167
+                    this.submitLoading = false;
168
+                    uni.hideLoading();
169
+                    if (res.success) {
170
+                        this.fn.showToast("保存成功");
171
+                        this.router.go(2);
172
+                    } else {
173
+                        this.fn.showModal({
174
+                            content: res.message,
175
+                            showCancel: false,
176
+                        });
177
+                    }
178
+                });
179
+        },
180
+    },
181
+
182
+    // 数据计算
183
+    computed: {},
184
+
185
+    // 数据监听
186
+    watch: {},
187
+};
188
+</script>
189
+
190
+
191
+<style lang="scss" scoped>
192
+.page {
193
+    padding-bottom: px(120);
194
+    min-height: 100vh;
195
+}
196
+.page--iphoneX {
197
+    padding-bottom: px(150);
198
+    .btn {
199
+        padding-bottom: px(30);
200
+        background-color: rgb(0, 188, 38);
201
+    }
202
+}
203
+.form-card {
204
+    background-color: #fff;
205
+    padding: 0 px(30);
206
+    & ~ .form-card {
207
+        margin-top: px(25);
208
+    }
209
+    .head {
210
+        display: flex;
211
+        align-items: center;
212
+        justify-content: space-between;
213
+        height: px(140);
214
+        background-color: #fbfbfb;
215
+        border-bottom: 1px solid #f1f1f1;
216
+        border-top: 1px solid #f1f1f1;
217
+        font-size: px(44);
218
+    }
219
+}
220
+.form-item {
221
+    display: flex;
222
+    min-height: px(140);
223
+    padding: px(30) 0;
224
+    box-sizing: border-box;
225
+    align-items: center;
226
+    font-size: px(44);
227
+    & ~ .form-item {
228
+        border-top: 1px solid #f1f1f1;
229
+    }
230
+    .label {
231
+        width: px(240);
232
+        flex-shrink: 0;
233
+        color: #999;
234
+        margin-right: px(10);
235
+    }
236
+    .box {
237
+        width: 100%;
238
+        position: relative;
239
+        input {
240
+            width: 100%;
241
+        }
242
+    }
243
+    .tool {
244
+        flex-shrink: 0;
245
+        color: #999;
246
+        margin-left: px(10);
247
+    }
248
+    textarea,
249
+    input {
250
+        max-width: 100%;
251
+        width: 100%;
252
+    }
253
+}
254
+.list {
255
+    // min-height: 100vh;
256
+    // background-color: #fff;
257
+    // border-bottom: 1px solid #f1f1f1;
258
+    li {
259
+        padding: px(0) px(35);
260
+        height: px(140);
261
+        line-height: px(140);
262
+        font-size: px(44);
263
+        border-top: 1px solid #f1f1f1;
264
+        display: flex;
265
+        justify-content: space-between;
266
+        align-items: center;
267
+    }
268
+    .tools {
269
+        display: flex;
270
+        align-items: center;
271
+        flex-shrink: 0;
272
+        span {
273
+            display: inline-block;
274
+            border: 1px solid #f1f1f1;
275
+            font-size: px(36);
276
+            height: px(80);
277
+            width: px(120);
278
+            display: flex;
279
+            justify-content: center;
280
+            align-items: center;
281
+            & ~ span {
282
+                margin-left: px(30);
283
+            }
284
+        }
285
+        .remove {
286
+            color: #f00;
287
+        }
288
+    }
289
+}
290
+.btn {
291
+    position: fixed;
292
+    bottom: 0;
293
+    left: 0;
294
+    right: 0;
295
+    width: 100%;
296
+    height: px(120);
297
+    background-color: rgb(0, 188, 38);
298
+    color: #fff;
299
+    display: flex;
300
+    align-items: center;
301
+    justify-content: center;
302
+    z-index: 100;
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
+</style>

+ 279 - 0
src/pages/manage/coupon/list.vue

@@ -0,0 +1,279 @@
1
+<template>
2
+    <div class="page">
3
+        <!-- data-list -->
4
+        <div class="btn" @click="jump('/pages/manage/coupon/form')">
5
+            新增优惠券
6
+        </div>
7
+        <div class="data-list">
8
+            <div class="filter">
9
+                <!-- <div >时间选择</div> -->
10
+                <ul class="date-list">
11
+                    <li @click="tabClick(0)" :class="{ on: activeTab === 0 }">
12
+                        全店优惠券
13
+                    </li>
14
+                    <li @click="tabClick(1)" :class="{ on: activeTab === 1 }">
15
+                        部分优惠券
16
+                    </li>
17
+                </ul>
18
+                <ul class="date-list chart-view">
19
+                    <li
20
+                        :class="{ on: activestatus === 1 }"
21
+                        @click="statusClick(1)"
22
+                    >
23
+                        进行中
24
+                    </li>
25
+                    <li
26
+                        :class="{ on: activestatus === 0 }"
27
+                        @click="statusClick(0)"
28
+                    >
29
+                        未开始
30
+                    </li>
31
+                    <li
32
+                        :class="{ on: activestatus === 2 }"
33
+                        @click="statusClick(2)"
34
+                    >
35
+                        已结束
36
+                    </li>
37
+                </ul>
38
+            </div>
39
+            <ul class="coupon-list">
40
+                <li class="item" v-for="item of dataList" :key="item.id">
41
+                    <div class="val name">
42
+                        活动名称:{{ item.activityName }}
43
+                    </div>
44
+                    <div class="val">
45
+                        <span class="k">优惠内容:</span> {{ item.name }}
46
+                    </div>
47
+                    <div class="val">
48
+                        <span class="k">有效期:</span>
49
+                        {{ item.startReceiveTime }}——{{ item.endReceiveTime }}
50
+                    </div>
51
+                    <div class="con">
52
+                        <div class="val">
53
+                            <span class="k">发放形式:</span
54
+                            >{{ item.grantMethod ? "自行发放" : "公开发放" }}
55
+                        </div>
56
+                        <div class="val">
57
+                            <span class="k">面向人群:</span
58
+                            >{{ item.facingForCrowd | facingForCrowdFilter }}
59
+                        </div>
60
+                        <div class="val">
61
+                            <span class="k">总数量:</span>{{ item.stock }}
62
+                        </div>
63
+                        <div class="val">
64
+                            <span class="k">已发放:</span
65
+                            >{{ item.total - item.stock }}
66
+                        </div>
67
+                        <div class="val">
68
+                            <span class="k">已使用:</span>{{ item.usedCount }}
69
+                        </div>
70
+                        <div class="val">
71
+                            <span class="k">是否有门槛:</span
72
+                            >{{ item.noThreshold ? "无" : "有" }}
73
+                        </div>
74
+                    </div>
75
+                </li>
76
+            </ul>
77
+            <div class="empty-text" v-if="dataList.length === 0">无数据</div>
78
+        </div>
79
+    </div>
80
+</template>
81
+
82
+<script>
83
+import MyImage from "../../../components/image/index";
84
+
85
+export default {
86
+    name: "",
87
+    components: { MyImage },
88
+    filters: {
89
+        facingForCrowdFilter(v) {
90
+            switch (v) {
91
+                case 0:
92
+                    return "所有用户";
93
+                case 2:
94
+                    return "所有会员";
95
+                case 3:
96
+                    return "新人专享";
97
+
98
+                default:
99
+                    return "";
100
+            }
101
+        },
102
+    },
103
+    // 数据
104
+    data() {
105
+        return {
106
+            activeTab: 0,
107
+            activestatus: 1,
108
+            pageIndex: 1,
109
+            dataList: [],
110
+            dataEnd: false,
111
+        };
112
+    },
113
+
114
+    onLoad() {},
115
+    async onShow() {
116
+        this.getList();
117
+    },
118
+    onPullDownRefresh() {
119
+        this.getListMore();
120
+    },
121
+    // 函数
122
+    methods: {
123
+        tabClick(v) {
124
+            this.activeTab = v;
125
+            this.getList();
126
+        },
127
+        statusClick(v) {
128
+            this.activestatus = v;
129
+            this.getList();
130
+        },
131
+
132
+        getList() {
133
+            this.pageIndex = 1;
134
+            this.dataEnd = false;
135
+            let sendData = {
136
+                storeId: this.user.storeId,
137
+                type: this.activeTab,
138
+                status: this.activestatus,
139
+                pageIndex: this.pageIndex,
140
+                pageSize: 20,
141
+            };
142
+            uni.showLoading({
143
+                title: "加载中...",
144
+            });
145
+            this.api.get("/Coupon/GetList", sendData).then((res) => {
146
+                uni.hideLoading();
147
+                this.dataList = res.data.data;
148
+            });
149
+        },
150
+
151
+        getListMore() {
152
+            if (this.dataEnd) {
153
+                return;
154
+            }
155
+            this.pageIndex++;
156
+            let sendData = {
157
+                storeId: this.user.storeId,
158
+                type: this.activeTab,
159
+                status: this.activestatus,
160
+                pageIndex: this.pageIndex,
161
+                pageSize: 20,
162
+            };
163
+            this.api.get("/Coupon/GetList", sendData).then((res) => {
164
+                uni.hideLoading();
165
+                this.dataList = [...this.dataList, ...res.data.data];
166
+                if (res.data.data.length === 0) {
167
+                    this.dataEnd = true;
168
+                }
169
+            });
170
+        },
171
+    },
172
+
173
+    // 数据计算
174
+    computed: {
175
+        user() {
176
+            return this.$store.state.user.user;
177
+        },
178
+    },
179
+
180
+    // 数据监听
181
+    watch: {},
182
+};
183
+</script>
184
+
185
+<style lang="scss" scoped>
186
+.page {
187
+    padding-bottom: px(50);
188
+}
189
+.data-list {
190
+    background-color: #fff;
191
+}
192
+.filter {
193
+    padding: px(30);
194
+    .date-list {
195
+        display: flex;
196
+        justify-content: space-between;
197
+        font-size: px(44);
198
+        text-align: center;
199
+        li {
200
+            border: 1px solid #f1f1f1;
201
+            padding: px(20) 0;
202
+            width: 50%;
203
+            flex-shrink: 0;
204
+            &:first-child {
205
+                border-radius: px(20) 0 0 px(20);
206
+            }
207
+            &:last-child {
208
+                border-radius: 0 px(20) px(20) 0;
209
+            }
210
+            &.on {
211
+                border-color: rgb(0, 188, 38);
212
+                color: rgb(0, 188, 38);
213
+            }
214
+        }
215
+    }
216
+
217
+    .chart-view {
218
+        width: 100%;
219
+        margin: px(30) auto 0;
220
+        border-radius: px(10);
221
+        li {
222
+            width: 33.333333%;
223
+            &:first-child {
224
+                border-radius: px(20) 0 0 px(20);
225
+            }
226
+            &:last-child {
227
+                border-radius: 0 px(20) px(20) 0;
228
+            }
229
+        }
230
+    }
231
+}
232
+.empty-text {
233
+    text-align: center;
234
+    padding: px(30);
235
+    font-size: px(44);
236
+    color: #999;
237
+}
238
+.link {
239
+    color: #4395ff;
240
+}
241
+.coupon-list {
242
+    .item {
243
+        padding: px(35);
244
+        border-bottom: 1px solid #f1f1f1;
245
+    }
246
+    .val {
247
+        font-size: px(40);
248
+        padding: px(5);
249
+    }
250
+    .con {
251
+        display: flex;
252
+        flex-direction: row;
253
+        flex-wrap: wrap;
254
+        .val {
255
+            width: 50%;
256
+        }
257
+    }
258
+    .k {
259
+        color: #999;
260
+    }
261
+    .name {
262
+        font-size: px(44);
263
+        font-weight: 700;
264
+        padding-bottom: px(10);
265
+    }
266
+}
267
+.btn {
268
+    margin: px(20) px(35);
269
+    border-radius: px(20);
270
+    height: px(120);
271
+    background-color: #fff;
272
+    border: 1px solid #f1f1f1;
273
+    color: #333;
274
+    display: flex;
275
+    align-items: center;
276
+    justify-content: center;
277
+    z-index: 100;
278
+}
279
+</style>

+ 5 - 0
src/pages/manage/edit-good-form.vue

@@ -1248,10 +1248,15 @@ export default {
1248 1248
                 );
1249 1249
             }
1250 1250
             this.submitLoading = true;
1251
+            uni.showLoading({
1252
+                title: "提交中...",
1253
+                mask:true
1254
+            });
1251 1255
             this.api
1252 1256
                 .post("/product/SaveEdit", sendData, { pass: true })
1253 1257
                 .then((res) => {
1254 1258
                     this.submitLoading = false;
1259
+                uni.hideLoading();
1255 1260
                     if (res.success) {
1256 1261
                         if (type === "next") {
1257 1262
                         } else {

+ 7 - 0
src/pages/manage/index.vue

@@ -51,6 +51,13 @@
51 51
                 ></my-image>
52 52
                 <span class="text">数据统计</span>
53 53
             </li>
54
+            <li class="item" @click="jump('/pages/manage/coupon/list')">
55
+                <my-image
56
+                    class="img"
57
+                    src="/static/icon/coupon.png"
58
+                ></my-image>
59
+                <span class="text">优惠券</span>
60
+            </li>
54 61
         </ul>
55 62
 
56 63
         <button class="btn" @click="layout">退出登录</button>

BIN
src/static/icon/coupon.png