Browse Source

修改完成

cr 4 years ago
parent
commit
149e377733

+ 101 - 45
src/pages/manage/add-good-form.vue

@@ -28,11 +28,15 @@
28 28
             </section>
29 29
             <section class="form-item">
30 30
                 <div class="label">
31
-                    <span class="required hide">*</span>
31
+                    <span class="required">*</span>
32 32
                     商品条码:
33 33
                 </div>
34 34
                 <div class="box">
35
-                    <input type="text" v-model="baseInfo.barCode"  @confirm="getBarCodeGood"/>
35
+                    <input
36
+                        type="text"
37
+                        v-model="baseInfo.barCode"
38
+                        @confirm="getBarCodeGood"
39
+                    />
36 40
                 </div>
37 41
                 <div class="tool code-tool">
38 42
                     <span class="generate" @click="createBarcode()">生成</span>
@@ -144,78 +148,78 @@
144 148
 
145 149
             <section class="form-item">
146 150
                 <div class="label">
147
-                    <span class="required hide">*</span>
148
-                    进货价
151
+                    <span class="required">*</span>
152
+                    重量
149 153
                 </div>
150 154
                 <div class="box">
151
-                    <input type="digit" v-model="baseInfo.supplyPrice" />
155
+                    <input type="digit" v-model="baseInfo.weight" />
152 156
                 </div>
153 157
                 <div class="tool">
154
-                    <span class=""></span>
158
+                    <span class=""></span>
155 159
                 </div>
156 160
             </section>
157 161
 
158 162
             <section class="form-item">
159 163
                 <div class="label">
160
-                    <span class="required hide">*</span>
161
-                    成本
164
+                    <span class="required">*</span>
165
+                    库存
162 166
                 </div>
163 167
                 <div class="box">
164
-                    <input type="digit" v-model="baseInfo.cost" />
165
-                </div>
166
-                <div class="tool">
167
-                    <span class="">元</span>
168
+                    <input type="digit" v-model="baseInfo.stock" />
168 169
                 </div>
169 170
             </section>
170 171
 
171 172
             <section class="form-item">
172 173
                 <div class="label">
173
-                    <span class="required hide">*</span>
174
-                    划线价
174
+                    <span class="required">*</span>
175
+                    sku编码
175 176
                 </div>
176 177
                 <div class="box">
177
-                    <input type="digit" v-model="baseInfo.tagPrice" />
178
+                    <input type="digit" v-model="baseInfo.skuCode" />
178 179
                 </div>
179
-                <div class="tool">
180
-                    <span class="">元</span>
180
+                <div class="tool code-tool">
181
+                    <span class="generate" @click="generateCode('skuCode')"
182
+                        >生成</span
183
+                    >
181 184
                 </div>
182 185
             </section>
183 186
 
184 187
             <section class="form-item">
185 188
                 <div class="label">
186
-                    <span class="required">*</span>
187
-                    重量
189
+                    <span class="required hide">*</span>
190
+                    进货价
188 191
                 </div>
189 192
                 <div class="box">
190
-                    <input type="digit" v-model="baseInfo.weight" />
193
+                    <input type="digit" v-model="baseInfo.supplyPrice" />
191 194
                 </div>
192 195
                 <div class="tool">
193
-                    <span class=""></span>
196
+                    <span class=""></span>
194 197
                 </div>
195 198
             </section>
196 199
 
197 200
             <section class="form-item">
198 201
                 <div class="label">
199
-                    <span class="required">*</span>
200
-                    库存
202
+                    <span class="required hide">*</span>
203
+                    成本
201 204
                 </div>
202 205
                 <div class="box">
203
-                    <input type="digit" v-model="baseInfo.stock" />
206
+                    <input type="digit" v-model="baseInfo.cost" />
207
+                </div>
208
+                <div class="tool">
209
+                    <span class="">元</span>
204 210
                 </div>
205 211
             </section>
206 212
 
207 213
             <section class="form-item">
208 214
                 <div class="label">
209
-                    <span class="required">*</span>
210
-                    sku编码
215
+                    <span class="required hide">*</span>
216
+                    划线价
211 217
                 </div>
212 218
                 <div class="box">
213
-                    <input type="digit" v-model="baseInfo.skuCode" />
219
+                    <input type="digit" v-model="baseInfo.tagPrice" />
214 220
                 </div>
215
-                <div class="tool code-tool">
216
-                    <span class="generate" @click="generateCode('skuCode')"
217
-                        >生成</span
218
-                    >
221
+                <div class="tool">
222
+                    <span class="">元</span>
219 223
                 </div>
220 224
             </section>
221 225
         </div>
@@ -237,14 +241,16 @@
237 241
                 <div class="list">
238 242
                     <easy-upload
239 243
                         :types="'image'"
240
-                        v-model="baseInfo.mainImg"
244
+                        v-model="mainImage"
241 245
                         :uploadCount="1"
242 246
                         @change="minImgChange"
243 247
                     ></easy-upload>
244 248
                 </div>
245 249
             </section>
246 250
             <section class="form-img-item">
247
-                <div class="tit"><span class="required hide">*</span>详情图</div>
251
+                <div class="tit">
252
+                    <span class="required hide">*</span>详情图
253
+                </div>
248 254
                 <div class="list">
249 255
                     <easy-upload
250 256
                         :types="'image'"
@@ -415,9 +421,7 @@ export default {
415 421
                 images: [], // 封面图
416 422
                 detailImages: [], // 详情图
417 423
             },
418
-            mainImg: [],
419
-            coverImg: [],
420
-            detailImg: [],
424
+            mainImage: [],
421 425
         };
422 426
     },
423 427
     onLoad() {
@@ -461,9 +465,9 @@ export default {
461 465
         },
462 466
 
463 467
         // 条码回车
464
-        barCodeKeyup(){
468
+        barCodeKeyup() {
465 469
             let self = this;
466
-            if(self.baseInfo.barCode){
470
+            if (self.baseInfo.barCode) {
467 471
                 self.getBarCodeGood();
468 472
             }
469 473
         },
@@ -495,15 +499,19 @@ export default {
495 499
         getBarCodeGood() {
496 500
             let self = this;
497 501
             this.api
498
-                .get("/Product/GetProductByBarcode", {
499
-                    barcode: self.baseInfo.barCode,
500
-                },{pass:true})
502
+                .get(
503
+                    "/Product/GetProductByBarcode",
504
+                    {
505
+                        barcode: self.baseInfo.barCode,
506
+                    },
507
+                    { pass: true }
508
+                )
501 509
                 .then((res) => {
502 510
                     uni.hideLoading();
503 511
                     if (res.code === "200203") {
504 512
                         // 标准库存在
505 513
                         self.barCodeData = res.data;
506
-                         self.pullBarCodeData();
514
+                        self.pullBarCodeData();
507 515
                         // self.fn
508 516
                         //     .showModal({
509 517
                         //         content: "该条码存在标准库数据,是否复制",
@@ -587,10 +595,10 @@ export default {
587 595
             this.baseInfo.tagPrice = this.baseInfo.tagPrice / 100;
588 596
 
589 597
             //编码 sku吗 等于条码
590
-            if(!this.baseInfo.code){
598
+            if (!this.baseInfo.code) {
591 599
                 this.baseInfo.code = this.baseInfo.barcode;
592 600
             }
593
-            if(!this.baseInfo.skuCode){
601
+            if (!this.baseInfo.skuCode) {
594 602
                 this.baseInfo.skuCode = this.baseInfo.barcode;
595 603
             }
596 604
 
@@ -668,7 +676,6 @@ export default {
668 676
                 name += "/" + this.cateList[1][index2].name;
669 677
                 id = this.cateList[1][index2].id;
670 678
             }
671
-            console.log(name, id);
672 679
             this.typeList[typeListIndex].name = name;
673 680
             this.typeList[typeListIndex].id = id;
674 681
             this.typeList = [...this.typeList];
@@ -802,6 +809,7 @@ export default {
802 809
             this.api.post("/product/SaveEdit", sendData).then((res) => {
803 810
                 if (res.success) {
804 811
                     if (type === "next") {
812
+                        this.reset();
805 813
                     } else {
806 814
                         this.router.back();
807 815
                     }
@@ -813,6 +821,54 @@ export default {
813 821
                 }
814 822
             });
815 823
         },
824
+
825
+        // 重置
826
+        reset() {
827
+            this.typeList = [{}];
828
+            this.baseInfo = {
829
+                storeId: "", // 店铺id
830
+                _storeName: "", // 店铺名 前台显示用
831
+                barCode: "", // 条码
832
+                name: "", // 标题
833
+                code: "", // 编码
834
+                description: "", // 描述
835
+                productTypeIds: [], // 分类
836
+
837
+                price: 0, // 价格
838
+                supplyPrice: 0, // 进货价
839
+                cost: 0, // 成本
840
+                tagPrice: 0, //划线价,单位为分
841
+                weight: 0, //商品重量,单位为g
842
+                stock: 0, // 库存
843
+                skuCode: "", // sku编码
844
+
845
+                initialSale: 0, // 初始销量
846
+                status: 1, // 出售方式 0-放入仓库(即没有上架),1-立即出售(即上架)
847
+                _statusName: "立即出售",
848
+                maxBuyableCount: 0, // 限购数
849
+
850
+                mainImage: "", // 主图 300 *300
851
+            };
852
+            this.productForm = {
853
+                useTemplate: true, // 是否使用模板
854
+
855
+                images: [], // 封面图
856
+                detailImages: [], // 详情图
857
+            };
858
+
859
+            this.mainImage = [];
860
+            if (this.user.storeId) {
861
+                this.baseInfo.storeId = this.user.storeId;
862
+                this.baseInfo._storeName = this.user.storeName;
863
+            } else {
864
+                this.baseInfo.storeId = this.$store.state.common.manageShop.id;
865
+                this.baseInfo._storeName = this.$store.state.common.manageShop.name;
866
+            }
867
+            uni.pageScrollTo({
868
+                scrollTop: 0,
869
+            });
870
+            this.$forceUpdate();
871
+        },
816 872
     },
817 873
 
818 874
     // 数据计算

+ 200 - 79
src/pages/manage/edit-good-form.vue

@@ -28,25 +28,24 @@
28 28
             </section>
29 29
             <section class="form-item">
30 30
                 <div class="label">
31
-                    <span class="required hide">*</span>
31
+                    <span class="required">*</span>
32 32
                     商品条码:
33 33
                 </div>
34 34
                 <div class="box">
35 35
                     <input
36 36
                         type="text"
37
-                        class="dis"
38
-                        :disabled="true"
39 37
                         v-model="baseInfo.barCode"
38
+                        @confirm="getBarCodeGood"
40 39
                     />
41 40
                 </div>
42
-                <!-- <div class="tool code-tool">
41
+                <div class="tool code-tool">
43 42
                     <span class="generate" @click="createBarcode()">生成</span>
44 43
                     <my-image
45 44
                         class="scan-img"
46 45
                         @click="scan"
47 46
                         src="/static/icon/scan.png"
48 47
                     ></my-image>
49
-                </div> -->
48
+                </div>
50 49
             </section>
51 50
 
52 51
             <section class="form-item">
@@ -149,107 +148,109 @@
149 148
 
150 149
             <section class="form-item">
151 150
                 <div class="label">
152
-                    <span class="required hide">*</span>
153
-                    进货价
151
+                    <span class="required">*</span>
152
+                    重量
154 153
                 </div>
155 154
                 <div class="box">
156
-                    <input type="digit" v-model="baseInfo.supplyPrice" />
155
+                    <input type="digit" v-model="baseInfo.weight" />
157 156
                 </div>
158 157
                 <div class="tool">
159
-                    <span class=""></span>
158
+                    <span class=""></span>
160 159
                 </div>
161 160
             </section>
162 161
 
163 162
             <section class="form-item">
164 163
                 <div class="label">
165
-                    <span class="required hide">*</span>
166
-                    成本
164
+                    <span class="required">*</span>
165
+                    库存
167 166
                 </div>
168 167
                 <div class="box">
169
-                    <input type="digit" v-model="baseInfo.cost" />
170
-                </div>
171
-                <div class="tool">
172
-                    <span class="">元</span>
168
+                    <input type="digit" v-model="baseInfo.stock" />
173 169
                 </div>
174 170
             </section>
175 171
 
176 172
             <section class="form-item">
177 173
                 <div class="label">
178
-                    <span class="required hide">*</span>
179
-                    划线价
174
+                    <span class="required">*</span>
175
+                    sku编码
180 176
                 </div>
181 177
                 <div class="box">
182
-                    <input type="digit" v-model="baseInfo.tagPrice" />
178
+                    <input type="digit" v-model="baseInfo.skuCode" />
183 179
                 </div>
184
-                <div class="tool">
185
-                    <span class="">元</span>
180
+                <div class="tool code-tool">
181
+                    <span class="generate" @click="generateCode('skuCode')"
182
+                        >生成</span
183
+                    >
186 184
                 </div>
187 185
             </section>
188 186
 
189 187
             <section class="form-item">
190 188
                 <div class="label">
191
-                    <span class="required">*</span>
192
-                    重量
189
+                    <span class="required hide">*</span>
190
+                    进货价
193 191
                 </div>
194 192
                 <div class="box">
195
-                    <input type="digit" v-model="baseInfo.weight" />
193
+                    <input type="digit" v-model="baseInfo.supplyPrice" />
196 194
                 </div>
197 195
                 <div class="tool">
198
-                    <span class=""></span>
196
+                    <span class=""></span>
199 197
                 </div>
200 198
             </section>
201 199
 
202 200
             <section class="form-item">
203 201
                 <div class="label">
204
-                    <span class="required">*</span>
205
-                    库存
202
+                    <span class="required hide">*</span>
203
+                    成本
206 204
                 </div>
207 205
                 <div class="box">
208
-                    <input type="digit" v-model="baseInfo.stock" />
206
+                    <input type="digit" v-model="baseInfo.cost" />
207
+                </div>
208
+                <div class="tool">
209
+                    <span class="">元</span>
209 210
                 </div>
210 211
             </section>
211 212
 
212 213
             <section class="form-item">
213 214
                 <div class="label">
214
-                    <span class="required">*</span>
215
-                    sku编码
215
+                    <span class="required hide">*</span>
216
+                    划线价
216 217
                 </div>
217 218
                 <div class="box">
218
-                    <input type="digit" v-model="baseInfo.skuCode" />
219
+                    <input type="digit" v-model="baseInfo.tagPrice" />
219 220
                 </div>
220
-                <div class="tool code-tool">
221
-                    <span class="generate" @click="generateCode('skuCode')"
222
-                        >生成</span
223
-                    >
221
+                <div class="tool">
222
+                    <span class="">元</span>
224 223
                 </div>
225 224
             </section>
226 225
         </div>
227 226
 
228 227
         <div class="form-card img-card">
229 228
             <section class="form-img-item">
230
-                <div class="tit"><span class="required">*</span>图</div>
229
+                <div class="tit"><span class="required">*</span>封面图</div>
231 230
                 <div class="list">
232 231
                     <easy-upload
233 232
                         :types="'image'"
234
-                        v-model="mainImage"
235
-                        :uploadCount="1"
236
-                        @change="minImgChange"
233
+                        v-model="productForm.images"
234
+                        :uploadCount="100"
235
+                        @change="imagesChange"
237 236
                     ></easy-upload>
238 237
                 </div>
239 238
             </section>
240 239
             <section class="form-img-item">
241
-                <div class="tit"><span class="required">*</span>封面图</div>
240
+                <div class="tit"><span class="required">*</span>图</div>
242 241
                 <div class="list">
243 242
                     <easy-upload
244 243
                         :types="'image'"
245
-                        v-model="productForm.images"
246
-                        :uploadCount="100"
247
-                        @change="imagesChange"
244
+                        v-model="mainImage"
245
+                        :uploadCount="1"
246
+                        @change="minImgChange"
248 247
                     ></easy-upload>
249 248
                 </div>
250 249
             </section>
251 250
             <section class="form-img-item">
252
-                <div class="tit"><span class="required">*</span>详情图</div>
251
+                <div class="tit">
252
+                    <span class="required hide">*</span>详情图
253
+                </div>
253 254
                 <div class="list">
254 255
                     <easy-upload
255 256
                         :types="'image'"
@@ -461,6 +462,13 @@ export default {
461 462
                 this.productForm.useTemplate = this.oldData.useTemplate;
462 463
                 this.productForm.images = this.oldData.images;
463 464
                 this.productForm.detailImages = this.oldData.detailImages;
465
+
466
+                if(this.baseInfo.status ===0){
467
+                    this.baseInfo._statusName = '放入仓库';
468
+                }else{
469
+                    this.baseInfo._statusName = '立即出售';
470
+                }
471
+
464 472
                 this.$forceUpdate();
465 473
 
466 474
                 this.getStore();
@@ -468,6 +476,7 @@ export default {
468 476
             });
469 477
         },
470 478
 
479
+
471 480
         // 获取分类
472 481
         getClassify(storeId) {
473 482
             this.api
@@ -486,6 +495,8 @@ export default {
486 495
                 });
487 496
         },
488 497
 
498
+
499
+
489 500
         // 初始已选分类
490 501
         initCate(cateList) {
491 502
             let cateIds = this.baseInfo.productTypeIds;
@@ -517,42 +528,158 @@ export default {
517 528
             }
518 529
         },
519 530
 
531
+
532
+                // 条码回车
533
+        barCodeKeyup() {
534
+            let self = this;
535
+            if (self.baseInfo.barCode) {
536
+                self.getBarCodeGood();
537
+            }
538
+        },
539
+
540
+        // 条码扫描
541
+        scan() {
542
+            let self = this;
543
+            wx.scanCode({
544
+                scanType: "barCode",
545
+                success(res) {
546
+                    console.log("扫码", res);
547
+                    let code = res.result;
548
+                    self.baseInfo.barCode = code;
549
+                    self.baseInfo.code = code;
550
+                    self.baseInfo.skuCode = code;
551
+                    uni.showLoading({
552
+                        title: "识别条码中...",
553
+                    });
554
+                    self.getBarCodeGood();
555
+                },
556
+                fail(res) {
557
+                    self.fn.showToast("扫码失败");
558
+                    console.log("扫码失败:", res);
559
+                },
560
+            });
561
+        },
562
+
563
+        // 获取条码商品
564
+        getBarCodeGood() {
565
+            let self = this;
566
+            this.api
567
+                .get(
568
+                    "/Product/GetProductByBarcode",
569
+                    {
570
+                        barcode: self.baseInfo.barCode,
571
+                    },
572
+                    { pass: true }
573
+                )
574
+                .then((res) => {
575
+                    uni.hideLoading();
576
+                    if (res.code === "200203") {
577
+                        // 标准库存在
578
+                        self.barCodeData = res.data;
579
+                        self.pullBarCodeData();
580
+                        // self.fn
581
+                        //     .showModal({
582
+                        //         content: "该条码存在标准库数据,是否复制",
583
+                        //     })
584
+                        //     .then((res) => {
585
+                        //         if (res.confirm) {
586
+                        //             self.pullBarCodeData();
587
+                        //         }
588
+                        //     });
589
+                        self.pullBarCodeData();
590
+                    } else if (res.code === "200202") {
591
+                        // 其他门店存在
592
+                        self.barCodeData = res.data;
593
+                        self.fn
594
+                            .showModal({
595
+                                content: "该条码在其他门店存在数据,是否复制",
596
+                            })
597
+                            .then((res) => {
598
+                                if (res.confirm) {
599
+                                    self.pullBarCodeData();
600
+                                }
601
+                            });
602
+                    } else if (res.code === "200201") {
603
+                        // 当前门店存在
604
+                        self.barCodeData = res.data;
605
+                        self.fn
606
+                            .showModal({
607
+                                content:
608
+                                    "该条码在当前门店存在已有数据,是否去编辑",
609
+                            })
610
+                            .then((res) => {
611
+                                if (res.confirm) {
612
+                                    self.router.replace({
613
+                                        path: "/pages/manage/edit-good-form",
614
+                                        query: {
615
+                                            id: self.barCodeData.baseInfo.id,
616
+                                        },
617
+                                    });
618
+                                }
619
+                            });
620
+                    } else {
621
+                        self.fn.showToast("当前条码无已有商品数据");
622
+                    }
623
+                });
624
+        },
625
+
626
+        // 赋值条码数据
627
+        pullBarCodeData() {
628
+            let data = this.barCodeData;
629
+            this.baseInfo = {
630
+                ...data.baseInfo,
631
+            };
632
+            this.mainImage = [data.baseInfo.mainImage];
633
+            this.productForm.useTemplate = data.useTemplate;
634
+            this.productForm.images = data.images;
635
+            this.productForm.detailImages = data.detailImages;
636
+
637
+            // 店铺不变
638
+            if (this.user.storeId) {
639
+                this.baseInfo.storeId = this.user.storeId;
640
+                this.baseInfo._storeName = this.user.storeName;
641
+            } else {
642
+                this.baseInfo.storeId = this.$store.state.common.manageShop.id;
643
+                this.baseInfo._storeName = this.$store.state.common.manageShop.name;
644
+            }
645
+
646
+            // 状态判断
647
+            if (this.baseInfo.status === 1) {
648
+                this.baseInfo._statusName = "立即出售";
649
+            } else if (this.baseInfo.status === 0) {
650
+                this.baseInfo._statusName = "放入仓库";
651
+            } else {
652
+                this.baseInfo.status = 1;
653
+                this.baseInfo._statusName = "立即出售";
654
+            }
655
+
656
+            // 价格处理
657
+            this.baseInfo.price = this.baseInfo.price / 100;
658
+            this.baseInfo.supplyPrice = this.baseInfo.supplyPrice / 100;
659
+            this.baseInfo.cost = this.baseInfo.cost / 100;
660
+            this.baseInfo.tagPrice = this.baseInfo.tagPrice / 100;
661
+
662
+            //编码 sku吗 等于条码
663
+            if (!this.baseInfo.code) {
664
+                this.baseInfo.code = this.baseInfo.barcode;
665
+            }
666
+            if (!this.baseInfo.skuCode) {
667
+                this.baseInfo.skuCode = this.baseInfo.barcode;
668
+            }
669
+
670
+            this.$forceUpdate();
671
+        },
672
+
520 673
         // 生成编码
521 674
         generateCode(name) {
522 675
             // 后台编码生成方式
523 676
             const timestamp = Date.parse(new Date());
524 677
             this.baseInfo[name] = timestamp;
525 678
         },
526
-        //生成13位条形码功能函数
527
-        //获取校验位
528
-        CheckBarCode(s) {
529
-            let a = 0,
530
-                b = 0,
531
-                c = 0,
532
-                d = 0,
533
-                e = 0;
534
-            for (let i = 1; i <= 12; i++) {
535
-                let sc = parseInt(s[i - 1]);
536
-                if (i <= 12 && i % 2 == 0) {
537
-                    a += sc;
538
-                } else if (i <= 11 && i % 2 == 1) {
539
-                    b += sc;
540
-                }
541
-            }
542
-            c = a * 3;
543
-            d = b + c;
544
-            if (d % 10 == 0) e = d - d;
545
-            else e = d + (10 - (d % 10)) - d;
546
-            return e;
547
-        },
548 679
         //随机生成13位条形码
549 680
         createBarcode() {
550
-            let str = "69";
551
-            for (let i = 0; i < 10; i++) {
552
-                str += Math.floor(Math.random() * 10);
553
-            }
554
-            let checkcode = this.CheckBarCode(str);
555
-            this.baseInfo.barCode = str + checkcode;
681
+            const timestamp = Date.parse(new Date());
682
+            this.baseInfo.barCode = timestamp;
556 683
         },
557 684
 
558 685
         // 其他面板切换
@@ -615,7 +742,6 @@ export default {
615 742
                 name += "/" + this.cateList[1][index2].name;
616 743
                 id = this.cateList[1][index2].id;
617 744
             }
618
-            console.log(name, id);
619 745
             this.typeList[typeListIndex].name = name;
620 746
             this.typeList[typeListIndex].id = id;
621 747
             this.typeList = [...this.typeList];
@@ -814,7 +940,6 @@ export default {
814 940
     .box {
815 941
         width: 100%;
816 942
         position: relative;
817
-        height: 100%;
818 943
         input {
819 944
             width: 100%;
820 945
         }
@@ -863,8 +988,6 @@ radio-group {
863 988
         padding: px(30);
864 989
         font-size: px(44);
865 990
     }
866
-    .list {
867
-    }
868 991
 }
869 992
 .btns {
870 993
     margin-top: px(60);
@@ -895,7 +1018,8 @@ radio-group {
895 1018
     .remove-text {
896 1019
         color: red;
897 1020
         flex-shrink: 0;
898
-        margin-left: px(20);
1021
+        margin-left: px(10);
1022
+        padding-left: px(30);
899 1023
     }
900 1024
 }
901 1025
 .type-tip {
@@ -913,7 +1037,4 @@ radio-group {
913 1037
     align-items: center;
914 1038
     pointer-events: none;
915 1039
 }
916
-// input.dis{
917
-//     background-color: #f1f1f1;
918
-// }
919 1040
 </style>

+ 62 - 32
src/pages/manage/good-list.vue

@@ -10,14 +10,15 @@
10 10
             <div class="page__box">
11 11
                 <scroll-view class="category" :scroll-y="true">
12 12
                     <ul class="category__list">
13
-                        <li
14
-                            class="category__item item_one"
15
-                            :class="{
16
-                                'category__item--active': categoryId === '0',
17
-                            }"
18
-                            @click="setCategory('0')"
19
-                        >
20
-                            未上架
13
+                        <li class="category__item item_one">
14
+                            <!-- 未上架 -->
15
+                            <switch
16
+                                :checked="typeStatus === 1"
17
+                                class="switch"
18
+                                type="switch"
19
+                                @change="switchChange"
20
+                            />
21
+                            <span>是否上架</span>
21 22
                         </li>
22 23
                         <li
23 24
                             class="category__item"
@@ -41,6 +42,16 @@
41 42
                                 :scroll-x="true"
42 43
                             >
43 44
                                 <ul class="category-sub__list">
45
+                                    <li
46
+                                        class="category-sub__item"
47
+                                        :class="{
48
+                                            'category-sub__item--active':
49
+                                                subCategoryId === '',
50
+                                        }"
51
+                                        @click="setSubCategory('')"
52
+                                    >
53
+                                        全部
54
+                                    </li>
44 55
                                     <li
45 56
                                         class="category-sub__item"
46 57
                                         :class="{
@@ -72,6 +83,16 @@
72 83
                             :scroll-y="true"
73 84
                         >
74 85
                             <ul class="category-sub-all__list">
86
+                                <li
87
+                                    class="category-sub-all__item"
88
+                                    @click="setSubCategory('')"
89
+                                    :class="{
90
+                                        'category-sub-all__item--active':
91
+                                            subCategoryId === '',
92
+                                    }"
93
+                                >
94
+                                    全部
95
+                                </li>
75 96
                                 <li
76 97
                                     class="category-sub-all__item"
77 98
                                     v-for="(item, index) in subCategoryList"
@@ -301,6 +322,8 @@ export default {
301 322
             // 修改库存文字
302 323
             reStockText: "",
303 324
             reStockData: {},
325
+            // 上下架状态
326
+            typeStatus: 1,
304 327
         };
305 328
     },
306 329
 
@@ -377,8 +400,11 @@ export default {
377 400
         // 设置商品二级分类
378 401
         setSubCategory(val) {
379 402
             const self = this;
380
-
381
-            self.subCategoryId = val.id;
403
+            if (val === "") {
404
+                self.subCategoryId = "";
405
+            } else {
406
+                self.subCategoryId = val.id;
407
+            }
382 408
 
383 409
             self.getGoodsList();
384 410
         },
@@ -391,13 +417,9 @@ export default {
391 417
                 sort: self.sort,
392 418
                 pageIndex: self.page,
393 419
                 pageSize: 20,
420
+                type: self.subCategoryId || self.categoryId,
421
+                status: this.typeStatus,
394 422
             };
395
-            if (this.categoryId === "0") {
396
-                // 仓库
397
-                sendData.status = 0;
398
-            } else {
399
-                sendData.type = self.subCategoryId || self.categoryId;
400
-            }
401 423
 
402 424
             uni.showLoading({
403 425
                 title: "加载中...",
@@ -428,24 +450,18 @@ export default {
428 450
                 sort: self.sort,
429 451
                 pageIndex: self.page,
430 452
                 pageSize: 20,
453
+                type: self.subCategoryId || self.categoryId,
454
+                status: this.typeStatus,
431 455
             };
432
-            if (this.categoryId === "0") {
433
-                // 仓库
434
-                sendData.status = 0;
435
-            } else {
436
-                sendData.type = self.subCategoryId || self.categoryId;
437
-            }
438
-            self.api
439
-                .get("/Product/GetList", sendData)
440
-                .then((res) => {
441
-                    if (res.data.data.length) {
442
-                        self.page++;
443
-                    } else {
444
-                        self.isHaveMore = false;
445
-                    }
456
+            self.api.get("/Product/GetList", sendData).then((res) => {
457
+                if (res.data.data.length) {
458
+                    self.page++;
459
+                } else {
460
+                    self.isHaveMore = false;
461
+                }
446 462
 
447
-                    self.goodsList = self.goodsList.concat(res.data.data);
448
-                });
463
+                self.goodsList = self.goodsList.concat(res.data.data);
464
+            });
449 465
         },
450 466
 
451 467
         // 分类展开切换
@@ -479,6 +495,12 @@ export default {
479 495
             });
480 496
         },
481 497
 
498
+        // 上下架状态切换
499
+        switchChange(e) {
500
+            this.typeStatus = e.detail.value ? 1 : 0;
501
+            this.getGoodsList();
502
+        },
503
+
482 504
         // 上下架
483 505
         setStatus(val, status) {
484 506
             this.api
@@ -1181,5 +1203,13 @@ page {
1181 1203
 .item_one {
1182 1204
     border-bottom: 3px solid #c9c9c9;
1183 1205
     background-color: #efefef;
1206
+    padding: px(20) 0;
1207
+    display: flex;
1208
+    flex-direction: column;
1209
+    justify-content: center;
1210
+    align-items: center;
1211
+}
1212
+.switch {
1213
+    transform: scale(0.7);
1184 1214
 }
1185 1215
 </style>

+ 3 - 9
src/pages/manage/index.vue

@@ -19,17 +19,11 @@
19 19
                 <span class="text">订单管理</span>
20 20
             </li> -->
21 21
             <li class="item" @click="jump('/pages/manage/add-good-form')">
22
-                <my-image
23
-                    class="img"
24
-                    src="/static/icon/add.png"
25
-                ></my-image>
22
+                <my-image class="img" src="/static/icon/add.png"></my-image>
26 23
                 <span class="text">新增商品</span>
27 24
             </li>
28 25
             <li class="item" @click="jump('/pages/manage/good-list')">
29
-                <my-image
30
-                    class="img"
31
-                    src="/static/icon/edit.png"
32
-                ></my-image>
26
+                <my-image class="img" src="/static/icon/edit.png"></my-image>
33 27
                 <span class="text">编辑商品</span>
34 28
             </li>
35 29
         </ul>
@@ -63,7 +57,6 @@ export default {
63 57
             this.getShopList();
64 58
         }
65 59
 
66
-
67 60
         //  uni.getLocation({
68 61
         //         type: "wgs84",
69 62
         //         success(res){
@@ -176,6 +169,7 @@ export default {
176 169
 }
177 170
 .menu {
178 171
     display: flex;
172
+    border-top: 1px solid #f1f1f1;
179 173
     .item {
180 174
         width: 33.333333%;
181 175
         height: px(330);

BIN
src/static/common/arrows_left.png


BIN
src/static/common/cart_null.jpg


BIN
src/static/common/goods_null.jpg


BIN
src/static/common/goods_null_2.jpg