cr преди 3 години
родител
ревизия
ca758beacb
променени са 3 файла, в които са добавени 651 реда и са изтрити 1 реда
  1. 6 0
      src/pages.json
  2. 637 0
      src/pages/yx/good-form.vue
  3. 8 1
      src/pages/yx/good.vue

+ 6 - 0
src/pages.json

@@ -150,6 +150,12 @@
150 150
                 "navigationBarTitleText": "新增活动"
151 151
             }
152 152
         },
153
+        {
154
+            "path": "pages/yx/good-form",
155
+            "style": {
156
+                "navigationBarTitleText": "新增商品"
157
+            }
158
+        },
153 159
         {
154 160
             "path": "pages/index/order-delivery-form",
155 161
             "style": {

+ 637 - 0
src/pages/yx/good-form.vue

@@ -0,0 +1,637 @@
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
+                    <picker
11
+                        :mode="'selector'"
12
+                        :range="platformList"
13
+                        :range-key="'name'"
14
+                        @change="platformChange($event)"
15
+                    >
16
+                        <input
17
+                            type="text"
18
+                            :disabled="true"
19
+                            :value="form.platformName"
20
+                            placeholder="请选择平台"
21
+                        />
22
+                    </picker>
23
+                </div>
24
+            </section>
25
+            <section class="form-item">
26
+                <div class="label">
27
+                    <span class="required">*</span>
28
+                    分类:
29
+                </div>
30
+                <div class="box">
31
+                    <picker
32
+                        :mode="'selector'"
33
+                        :range="classifyList"
34
+                        :range-key="'name'"
35
+                        @change="classifyChange($event)"
36
+                    >
37
+                        <input
38
+                            type="text"
39
+                            :disabled="true"
40
+                            :value="form.categoryName"
41
+                            placeholder="请选择分类"
42
+                        />
43
+                    </picker>
44
+                </div>
45
+            </section>
46
+            <section class="form-item">
47
+                <div class="label">
48
+                    <span class="required">*</span>
49
+                    品牌:
50
+                </div>
51
+                <div class="box">
52
+                    <picker
53
+                        :mode="'selector'"
54
+                        :range="brandList"
55
+                        :range-key="'name'"
56
+                        @change="brandChange($event)"
57
+                    >
58
+                        <input
59
+                            type="text"
60
+                            :disabled="true"
61
+                            :value="form.brandName"
62
+                            placeholder="请选择品牌"
63
+                        />
64
+                    </picker>
65
+                </div>
66
+            </section>
67
+            <section class="form-item">
68
+                <div class="label">货号:</div>
69
+                <div class="box">
70
+                    <input type="number" v-model="form.queryCode" />
71
+                </div>
72
+            </section>
73
+            <section class="form-item">
74
+                <div class="label">名称:</div>
75
+                <div class="box">
76
+                    <input v-model="form.name" />
77
+                </div>
78
+            </section>
79
+            <section class="form-item">
80
+                <div class="label">
81
+                    <!-- <span class="required">*</span> -->
82
+                    描述:
83
+                </div>
84
+                <div class="box">
85
+                    <textarea
86
+                        v-model="form.description"
87
+                        :maxlength="2048"
88
+                        :auto-height="true"
89
+                        placeholder="请填描述"
90
+                    ></textarea>
91
+                </div>
92
+            </section>
93
+            <section class="form-item">
94
+                <div class="label">
95
+                    <span class="required">*</span>
96
+                    图片:
97
+                </div>
98
+                <div class="box">
99
+                    <easy-upload
100
+                        :types="'image'"
101
+                        v-model="form.pictureUrls"
102
+                        :uploadCount="99"
103
+                    ></easy-upload>
104
+                </div>
105
+            </section>
106
+            <section class="form-item">
107
+                <div class="label">
108
+                    <span class="required">*</span>
109
+                    上架时间:
110
+                </div>
111
+                <div class="box">
112
+                    <date-time-picker
113
+                        @change="pickerDateChange('beginTime', $event)"
114
+                        placeholder="请选择"
115
+                        :defaultValue="form.beginTime"
116
+                    ></date-time-picker>
117
+                </div>
118
+            </section>
119
+            <section class="form-item">
120
+                <div class="label">
121
+                    <span class="required">*</span>
122
+                    下架时间:
123
+                </div>
124
+                <div class="box">
125
+                    <date-time-picker
126
+                        @change="pickerDateChange('endTime', $event)"
127
+                        placeholder="请选择"
128
+                        :defaultValue="form.endTime"
129
+                    ></date-time-picker>
130
+                </div>
131
+            </section>
132
+            <section class="form-item">
133
+                <div class="label">上下架:</div>
134
+                <div class="box">
135
+                    <radio-group @change="radioChange">
136
+                        <label class="radio"
137
+                            ><radio
138
+                                :value="false"
139
+                                :checked="form.offline === false"
140
+                            />上架</label
141
+                        >
142
+                        <label class="radio" style="margin-left: 6px"
143
+                            ><radio
144
+                                :value="true"
145
+                                :checked="form.offline === true"
146
+                            />下架</label
147
+                        >
148
+                    </radio-group>
149
+                </div>
150
+            </section>
151
+            <section class="form-item">
152
+                <div class="label">市场价:</div>
153
+                <div class="box">
154
+                    <input type="digit" v-model="form.tagPrice" />
155
+                </div>
156
+            </section>
157
+            <section class="form-item">
158
+                <div class="label">最高价:</div>
159
+                <div class="box">
160
+                    <input type="digit" v-model="form.maxPrice" />
161
+                </div>
162
+            </section>
163
+            <section class="form-item">
164
+                <div class="label">最低价:</div>
165
+                <div class="box">
166
+                    <input type="digit" v-model="form.minPrice" />
167
+                </div>
168
+            </section>
169
+            <section class="form-item">
170
+                <div class="label">成本价:</div>
171
+                <div class="box">
172
+                    <input type="digit" v-model="form.defaultPrice" />
173
+                </div>
174
+            </section>
175
+            <section class="form-item">
176
+                <div class="label">折扣:</div>
177
+                <div class="box">
178
+                    <input type="digit" v-model="form.discount" />
179
+                </div>
180
+            </section>
181
+            <section class="form-item">
182
+                <div class="label">进货价:</div>
183
+                <div class="box">
184
+                    <input type="digit" v-model="form.itemPrice" />
185
+                </div>
186
+            </section>
187
+            <section class="form-item">
188
+                <div class="label">代理费:</div>
189
+                <div class="box">
190
+                    <input type="digit" v-model="form.agentFee2" />
191
+                </div>
192
+            </section>
193
+            <section class="form-item">
194
+                <div class="label">权重:</div>
195
+                <div class="box">
196
+                    <input type="number" v-model="form.sortOrder" />
197
+                </div>
198
+            </section>
199
+        </div>
200
+        <div class="btns">
201
+            <div class="btn" @click="saveOk">保存</div>
202
+        </div>
203
+    </div>
204
+</template>
205
+
206
+<script>
207
+import MyImage from "../../components/image/index";
208
+import DateTimePicker from "../../components/biaofun-datetime-picker/biaofun-datetime-picker";
209
+import easyUpload from "../../components/easy-upload/easy-upload";
210
+
211
+export default {
212
+    name: "",
213
+    components: { MyImage, DateTimePicker, easyUpload },
214
+    // 数据
215
+    data() {
216
+        return {
217
+            pid: "",
218
+            form: {},
219
+            classifyList: [],
220
+            brandList: [],
221
+            platformList: [],
222
+            submitLoading: false,
223
+        };
224
+    },
225
+
226
+    onLoad(opts) {
227
+        if (opts.id) {
228
+            this.pid = opts.id;
229
+            this.fn.setTitle("编辑商品");
230
+            this.getActivity();
231
+        }
232
+        this.getCateList();
233
+        this.getPlatformList();
234
+    },
235
+
236
+    onShow() {},
237
+
238
+    // 函数
239
+    methods: {
240
+        getPlatformList() {
241
+            this.api.get("/Supplier/GetPlatformList", {}).then((res) => {
242
+                this.platformList = res.data;
243
+
244
+                if (this.form._id) {
245
+                    for (let item of this.platformList) {
246
+                        if (this.form.platform == item._id) {
247
+                            this.form.platformName = item.name;
248
+                        }
249
+                    }
250
+                }
251
+            });
252
+        },
253
+        getCateList() {
254
+            this.api.get("/Supplier/GetCateList", {}).then((res) => {
255
+                this.classifyList = res.data;
256
+                for (let item of this.classifyList) {
257
+                    item.value = item.name;
258
+                }
259
+            });
260
+        },
261
+
262
+        getBrand() {
263
+            this.api
264
+                .get("/Supplier/GetBrandList", {
265
+                    cateId: this.form.categoryId,
266
+                    pass: true,
267
+                })
268
+                .then((res) => {
269
+                    this.brandList = JSON.parse(res.data.list);
270
+                });
271
+        },
272
+
273
+        getActivity() {
274
+            uni.showLoading({
275
+                title: "加载中...",
276
+                mask: true,
277
+            });
278
+            this.api
279
+                .get("/Supplier/GetProduct", { id: this.pid, pass: true })
280
+                .then((res) => {
281
+                    uni.hideLoading();
282
+                    if (res.success && res.data) {
283
+                        this.form = res.data;
284
+                        if (this.platformList.length) {
285
+                            for (let item of this.platformList) {
286
+                                if (this.form.platform == item._id) {
287
+                                    this.form.platformName = item.name;
288
+                                }
289
+                            }
290
+                        }
291
+
292
+                        this.form.tagPrice /= 100;
293
+                        this.form.maxPrice /= 100;
294
+                        this.form.minPrice /= 100;
295
+                        this.form.defaultPrice /= 100;
296
+                        this.form.itemPrice /= 100;
297
+                        this.form.agentFee2 /= 100;
298
+                        this.getBrand();
299
+                    } else {
300
+                        this.fn.showModal({
301
+                            content: res.message,
302
+                            showCancel: false,
303
+                        });
304
+                    }
305
+                });
306
+        },
307
+        platformChange(e) {
308
+            let index = e.detail.value;
309
+            let val = this.platformList[index];
310
+            this.form.platform = val._id;
311
+            this.form.platformName = val.name;
312
+        },
313
+        classifyChange(e) {
314
+            let index = e.detail.value;
315
+            let val = this.classifyList[index];
316
+            this.form.categoryName = val.name;
317
+            this.form.categoryId = val.categoryId;
318
+            this.form.brandLogo = null;
319
+            this.form.brandName = null;
320
+            this.getBrand();
321
+        },
322
+        brandChange(e) {
323
+            let index = e.detail.value;
324
+            let val = this.brandList[index];
325
+            this.form.brandLogo = val.logo;
326
+            this.form.brandName = val.name;
327
+            this.brandName = null;
328
+        },
329
+        radioChange(e) {
330
+            this.form.offline = Boolean(e.detail.value);
331
+        },
332
+        pickerDateChange(name, e) {
333
+            this.form[name] = e.dt.getTime();
334
+        },
335
+        saveOk() {
336
+            if (this.submitLoading) {
337
+                return;
338
+            }
339
+            if (!this.form.platform && this.form.platform !== 0) {
340
+                return this.fn.showToast("请选择平台");
341
+            }
342
+            if (!this.form.categoryName) {
343
+                return this.fn.showToast("请选择分类");
344
+            }
345
+            if (!this.form.brandName) {
346
+                return this.fn.showToast("请选择品牌");
347
+            }
348
+            if (this.form.pictureUrls.length === 0) {
349
+                return this.fn.showToast("请选图片");
350
+            }
351
+            if (!this.form.beginTime) {
352
+                return this.fn.showToast("请选择开始时间");
353
+            }
354
+            if (!this.form.endTime) {
355
+                return this.fn.showToast("请选择结束时间");
356
+            }
357
+            console.log(this.form);
358
+            this.submitLoading = true;
359
+            uni.showLoading({
360
+                title: "提交中...",
361
+            });
362
+            if (this.pid) {
363
+                // 编辑
364
+                let data = { ...this.form };
365
+                data.tagPrice *= 100;
366
+                data.maxPrice *= 100;
367
+                data.minPrice *= 100;
368
+                data.defaultPrice *= 100;
369
+                data.itemPrice *= 100;
370
+                data.agentFee *= 100;
371
+                data.agentFee2 *= 100;
372
+                delete data._id;
373
+                this.api
374
+                    .post2(
375
+                        "/Supplier/ReplaceProduct",
376
+                        data,
377
+                        { id: this.form._id.$oid },
378
+                        { pass: true }
379
+                    )
380
+                    .then((res) => {
381
+                        this.submitLoading = false;
382
+                        uni.hideLoading();
383
+                        if (res.success) {
384
+                            this.fn.showToast("编辑成功");
385
+                            this.router.back();
386
+                        } else {
387
+                            this.fn.showModal({
388
+                                title: "编辑失败",
389
+                                content: res.message,
390
+                                showCancel: false,
391
+                            });
392
+                        }
393
+                    });
394
+            }
395
+        },
396
+    },
397
+
398
+    // 数据计算
399
+    computed: {
400
+        user() {
401
+            return this.$store.state.user.user;
402
+        },
403
+    },
404
+
405
+    // 数据监听
406
+    watch: {},
407
+};
408
+</script>
409
+
410
+
411
+<style lang="scss" scoped>
412
+.page {
413
+    padding-bottom: px(120);
414
+    min-height: 100vh;
415
+    background-color: #fff;
416
+}
417
+.page--iphoneX {
418
+    padding-bottom: px(150);
419
+    .btn {
420
+        padding-bottom: px(30);
421
+        background-color: rgb(0, 188, 38);
422
+    }
423
+}
424
+.form-card {
425
+    background-color: #fff;
426
+    padding: 0 px(30);
427
+    & ~ .form-card {
428
+        margin-top: px(25);
429
+    }
430
+    .head {
431
+        display: flex;
432
+        align-items: center;
433
+        justify-content: space-between;
434
+        height: px(140);
435
+        background-color: #fbfbfb;
436
+        border-bottom: 1px solid #f1f1f1;
437
+        border-top: 1px solid #f1f1f1;
438
+        font-size: px(44);
439
+    }
440
+}
441
+.form-item {
442
+    display: flex;
443
+    min-height: px(140);
444
+    padding: px(30) 0;
445
+    box-sizing: border-box;
446
+    align-items: flex-start;
447
+    font-size: px(44);
448
+    border-top: 1px solid #f1f1f1;
449
+    &.dis-item {
450
+        color: #999;
451
+        background: #f9f9f9;
452
+    }
453
+    .label {
454
+        width: px(340);
455
+        flex-shrink: 0;
456
+        color: #666;
457
+        margin-right: px(10);
458
+        // font-weight: bold;
459
+    }
460
+    .box {
461
+        width: 100%;
462
+        position: relative;
463
+        input {
464
+            width: 100%;
465
+        }
466
+    }
467
+    .tool {
468
+        flex-shrink: 0;
469
+        color: #999;
470
+        margin-left: px(10);
471
+    }
472
+    textarea,
473
+    input {
474
+        max-width: 100%;
475
+        width: 100%;
476
+    }
477
+}
478
+.list {
479
+    // min-height: 100vh;
480
+    // background-color: #fff;
481
+    // border-bottom: 1px solid #f1f1f1;
482
+    li {
483
+        padding: px(0) px(35);
484
+        height: px(140);
485
+        line-height: px(140);
486
+        font-size: px(44);
487
+        border-top: 1px solid #f1f1f1;
488
+        display: flex;
489
+        justify-content: space-between;
490
+        align-items: center;
491
+    }
492
+    .tools {
493
+        display: flex;
494
+        align-items: center;
495
+        flex-shrink: 0;
496
+        span {
497
+            display: inline-block;
498
+            border: 1px solid #f1f1f1;
499
+            font-size: px(36);
500
+            height: px(80);
501
+            width: px(120);
502
+            display: flex;
503
+            justify-content: center;
504
+            align-items: center;
505
+            & ~ span {
506
+                margin-left: px(30);
507
+            }
508
+        }
509
+        .remove {
510
+            color: #f00;
511
+        }
512
+    }
513
+}
514
+.btn {
515
+    width: 100%;
516
+    height: px(120);
517
+    background-color: rgb(0, 188, 38);
518
+    color: #fff;
519
+    display: flex;
520
+    align-items: center;
521
+    justify-content: center;
522
+}
523
+.btns {
524
+    position: fixed;
525
+    bottom: 0;
526
+    left: 0;
527
+    right: 0;
528
+    z-index: 100;
529
+}
530
+.layout {
531
+    background-color: #eee;
532
+    color: #666;
533
+}
534
+.add-btn {
535
+    height: px(120);
536
+    color: #333;
537
+    display: flex;
538
+    align-items: center;
539
+    justify-content: center;
540
+    margin: px(50) px(35) 0;
541
+    border: 1px solid #ccc;
542
+    border-radius: px(10);
543
+}
544
+.code-tool {
545
+    display: flex;
546
+    justify-content: flex-start;
547
+    align-items: center;
548
+    .scan-img {
549
+        flex-shrink: 0;
550
+        width: px(80);
551
+        height: px(80);
552
+        /deep/ img {
553
+            width: px(80);
554
+            height: px(80);
555
+        }
556
+    }
557
+    .generate {
558
+        color: #0097d1;
559
+        margin-right: px(30);
560
+        flex-shrink: 0;
561
+    }
562
+}
563
+.required {
564
+    color: #f00;
565
+    font-size: px(44);
566
+    &.hide {
567
+        visibility: hidden;
568
+    }
569
+}
570
+.inp-dis {
571
+    color: #999;
572
+}
573
+
574
+.img-card {
575
+    padding-top: px(30);
576
+    padding-bottom: px(30);
577
+}
578
+.form-img-item {
579
+    .tit {
580
+        padding: px(30);
581
+        font-size: px(44);
582
+    }
583
+}
584
+
585
+.spec-list {
586
+    width: 100%;
587
+    display: flex;
588
+    justify-content: space-between;
589
+    align-items: center;
590
+    li {
591
+        width: 33.333333%;
592
+        font-size: px(40);
593
+        height: px(100);
594
+        border: 1px solid #f1f1f1;
595
+        display: flex;
596
+        align-items: center;
597
+        justify-content: center;
598
+        color: #999;
599
+        & ~ li {
600
+            // border-left: none;
601
+        }
602
+        &.on {
603
+            color: rgb(0, 188, 38);
604
+            border-color: rgb(0, 188, 38);
605
+        }
606
+    }
607
+}
608
+.mo-date {
609
+    margin-top: px(20);
610
+    border-bottom: 1px solid #f1f1f1;
611
+    background: #fbfbfb;
612
+    font-size: px(40);
613
+    padding: px(10);
614
+}
615
+.n-date-box {
616
+    margin-top: px(20);
617
+    font-size: px(40);
618
+}
619
+.n-date {
620
+    border-bottom: 1px solid #f1f1f1;
621
+    background: #fbfbfb;
622
+    padding: 0 px(20);
623
+    display: inline-block;
624
+    width: px(200);
625
+    font-size: px(44);
626
+    vertical-align: bottom;
627
+}
628
+.address-icon {
629
+    /deep/ img {
630
+        width: px(60);
631
+        height: px(60);
632
+    }
633
+}
634
+.dis {
635
+    background-color: #f6f6f6;
636
+}
637
+</style>

+ 8 - 1
src/pages/yx/good.vue

@@ -715,7 +715,14 @@ export default {
715 715
         },
716 716
 
717 717
         // 编辑商品
718
-        editGood(val) {},
718
+        editGood(val) {
719
+            this.router.push({
720
+                path:'/pages/yx/good-form',
721
+                query:{
722
+                    id:val.pid,
723
+                }
724
+            })
725
+        },
719 726
 
720 727
         // 删除商品
721 728
         removeGood(val) {