|
@@ -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>
|