Ver código fonte

收银完成

cr 4 anos atrás
pai
commit
a90707214b

+ 46 - 36
src/pages/manage/add-good-form.vue

@@ -100,7 +100,9 @@
100 100
                                 placeholder="请选择"
101 101
                             />
102 102
                         </picker>
103
-                        <span class="remove-text" @click="typeRemove(index,item)"
103
+                        <span
104
+                            class="remove-text"
105
+                            @click="typeRemove(index, item)"
104 106
                             >删除</span
105 107
                         >
106 108
                     </div>
@@ -376,7 +378,10 @@
376 378
             </section>
377 379
             <section class="form-img-item">
378 380
                 <div class="tit">
379
-                    <span class="required hide">*</span>视频<span class="gray-text">(视频文件最大不超过100M)</span>
381
+                    <span class="required hide">*</span>视频<span
382
+                        class="gray-text"
383
+                        >(视频文件最大不超过100M)</span
384
+                    >
380 385
                 </div>
381 386
                 <div class="list">
382 387
                     <easy-upload
@@ -515,7 +520,7 @@
515 520
 
516 521
 <script>
517 522
 import MyImage from "../../components/image/index";
518
-import EasyUpload from '../../components/easy-upload/easy-upload';
523
+import EasyUpload from "../../components/easy-upload/easy-upload";
519 524
 
520 525
 export default {
521 526
     name: "",
@@ -581,12 +586,12 @@ export default {
581 586
 
582 587
                 images: [], // 主图
583 588
                 detailImages: [], // 详情图
584
-                video:'',
585
-                videoConver:'',
589
+                video: "",
590
+                videoConver: "",
586 591
             },
587 592
             mainImage: [],
588
-            videoConver:[],
589
-            video:[],
593
+            videoConver: [],
594
+            video: [],
590 595
 
591 596
             // 规格
592 597
             specIndex: 0,
@@ -596,7 +601,7 @@ export default {
596 601
             curSpecIndex: 0, // 当前编辑specData
597 602
             skuTableData: [], // sku表格数据  详情见initSkuTable
598 603
             skuAttrs: {}, // sku后台保存用
599
-            submitLoading:false,
604
+            submitLoading: false,
600 605
         };
601 606
     },
602 607
     onLoad() {
@@ -897,8 +902,8 @@ export default {
897 902
             this.typeList.splice(i, 1);
898 903
             this.typeList = [...this.typeList];
899 904
             let ids = [];
900
-            for(let item of this.baseInfo.productTypeIds){
901
-                if(item !== val.id){
905
+            for (let item of this.baseInfo.productTypeIds) {
906
+                if (item !== val.id) {
902 907
                     ids.push(item);
903 908
                 }
904 909
             }
@@ -950,7 +955,7 @@ export default {
950 955
 
951 956
         // 保存
952 957
         save(type) {
953
-            if(this.submitLoading){
958
+            if (this.submitLoading) {
954 959
                 return;
955 960
             }
956 961
             let requiredFile1 = [
@@ -1090,17 +1095,19 @@ export default {
1090 1095
                 hotSaleRecommendIds: [],
1091 1096
                 businessRecommendIds: [],
1092 1097
                 participated: false,
1093
-                participatedBox:false,
1098
+                participatedBox: false,
1094 1099
                 skuInfo: skuInfo,
1095 1100
             };
1096
-            if(sendData.baseInfo.weight){
1101
+            if (sendData.baseInfo.weight) {
1097 1102
                 sendData.baseInfo.weight = Number(sendData.baseInfo.weight);
1098 1103
             }
1099
-            if(sendData.baseInfo.stock){
1104
+            if (sendData.baseInfo.stock) {
1100 1105
                 sendData.baseInfo.stock = Number(sendData.baseInfo.stock);
1101 1106
             }
1102
-            if(sendData.baseInfo.initialSale){
1103
-                sendData.baseInfo.initialSale = Number(sendData.baseInfo.initialSale);
1107
+            if (sendData.baseInfo.initialSale) {
1108
+                sendData.baseInfo.initialSale = Number(
1109
+                    sendData.baseInfo.initialSale
1110
+                );
1104 1111
             }
1105 1112
             //规格判断
1106 1113
             if (this.specIndex === 0) {
@@ -1118,29 +1125,31 @@ export default {
1118 1125
                 );
1119 1126
             }
1120 1127
             this.submitLoading = true;
1121
-            
1128
+
1122 1129
             uni.showLoading({
1123 1130
                 title: "提交中...",
1124
-                mask:true
1131
+                mask: true,
1125 1132
             });
1126
-            this.api.post("/product/SaveEdit", sendData,{pass:true}).then((res) => {
1127
-                this.submitLoading = false;
1128
-                uni.hideLoading();
1129
-                if (res.success) {
1130
-                    if (type === "next") {
1131
-                        this.fn.showToast("保存成功");
1132
-                        this.reset();
1133
+            this.api
1134
+                .post("/product/SaveEdit", sendData, { pass: true })
1135
+                .then((res) => {
1136
+                    this.submitLoading = false;
1137
+                    uni.hideLoading();
1138
+                    if (res.success) {
1139
+                        if (type === "next") {
1140
+                            this.fn.showToast("保存成功");
1141
+                            this.reset();
1142
+                        } else {
1143
+                            this.fn.showToast("保存成功");
1144
+                            this.router.back();
1145
+                        }
1133 1146
                     } else {
1134
-                        this.fn.showToast("保存成功");
1135
-                        this.router.back();
1147
+                        this.fn.showModal({
1148
+                            content: res.message,
1149
+                            showCancel: false,
1150
+                        });
1136 1151
                     }
1137
-                } else {
1138
-                    this.fn.showModal({
1139
-                        content: res.message,
1140
-                        showCancel: false,
1141
-                    });
1142
-                }
1143
-            });
1152
+                });
1144 1153
         },
1145 1154
 
1146 1155
         // 重置
@@ -1175,7 +1184,7 @@ export default {
1175 1184
 
1176 1185
                 images: [], // 封面图
1177 1186
                 detailImages: [], // 详情图
1178
-                video:''
1187
+                video: "",
1179 1188
             };
1180 1189
 
1181 1190
             this.video = [];
@@ -1619,9 +1628,10 @@ button::before {
1619 1628
 .sepc-card {
1620 1629
     padding-bottom: px(30);
1621 1630
 }
1622
-.gray-text{
1631
+.gray-text {
1623 1632
     color: #999;
1624 1633
     display: inline-block;
1625 1634
     margin-left: px(10);
1626 1635
 }
1636
+
1627 1637
 </style>

+ 2 - 0
src/pages/manage/cashier/index.vue

@@ -748,6 +748,8 @@ export default {
748 748
                                             item.select_num = res.select_num;
749 749
                                             arr.push(item);
750 750
                                         }
751
+                                    }else{
752
+                                        arr.push(item);
751 753
                                     }
752 754
                                 }
753 755
                                 this.selectList = arr;

+ 56 - 6
src/pages/manage/cashier/settlement.vue

@@ -32,7 +32,7 @@
32 32
             <div class="info" v-if="surplusPrice > 0">
33 33
                 <div class="tools">
34 34
                     <span @click="discountShow">折扣</span>
35
-                    <span>优惠券</span>
35
+                    <!-- <span>优惠券</span> -->
36 36
                 </div>
37 37
                 <div class="money">
38 38
                     <span>应收(元)</span>
@@ -142,6 +142,16 @@
142 142
                             %
143 143
                         </section>
144 144
                     </div>
145
+                    <ul
146
+                        class="dis-list"
147
+                        v-if="discountList && discountList.length"
148
+                    >
149
+                        <li v-for="item of discountList" :key="item">
150
+                            <div class="box" @click="disItemClick(item)">
151
+                                {{ item }}折
152
+                            </div>
153
+                        </li>
154
+                    </ul>
145 155
                 </div>
146 156
                 <keyboard-package
147 157
                     :disableDot="inputType === 1"
@@ -200,6 +210,7 @@ export default {
200 210
                 4: "", // 微信
201 211
             },
202 212
             // 折扣
213
+            discountList: [], // 折扣列表
203 214
             discountVisibile: false,
204 215
             discount: {
205 216
                 show: false,
@@ -215,10 +226,23 @@ export default {
215 226
         if (!this.goods) {
216 227
             this.router.back();
217 228
         }
229
+        this.getConfig();
218 230
     },
219 231
     async onShow() {},
220 232
     // 函数
221 233
     methods: {
234
+        getConfig() {
235
+            this.api
236
+                .get("/Store/GetStoreConfig", {
237
+                    id: this.user.storeId,
238
+                })
239
+                .then((res) => {
240
+                    let data = res.data;
241
+                    if (data.orderConfig && data.orderConfig.discountList) {
242
+                        this.discountList = data.orderConfig.discountList;
243
+                    }
244
+                });
245
+        },
222 246
         showPay(type) {
223 247
             this.curPayType = type;
224 248
             if (type === "1") {
@@ -345,13 +369,19 @@ export default {
345 369
             );
346 370
         },
347 371
 
372
+        // 打折点击
373
+        disItemClick(val) {
374
+            this.discount.ratio = val;
375
+            this.computeDiscountValue();
376
+        },
377
+
348 378
         submit() {
349 379
             if (this.btnLoading) {
350 380
                 return;
351 381
             }
352 382
             let sendData = {
353
-                totalAmount: this.totalPrice * 100,
354
-                payAmount: this.payAmount * 100,
383
+                totalAmount: parseInt(this.totalPrice * 100),
384
+                payAmount: parseInt(this.payAmount * 100),
355 385
                 discount: this.discount.show
356 386
                     ? Number(this.discount.ratio)
357 387
                     : 100, // 折扣
@@ -362,7 +392,7 @@ export default {
362 392
                 sendData.orderItems.push({
363 393
                     productId: item.id,
364 394
                     // skuId:item.id,
365
-                    skuId: item._sku?item._sku.skuId:'',
395
+                    skuId: item._sku ? item._sku.skuId : "",
366 396
                     count: item.select_num,
367 397
                     remark: "",
368 398
                 });
@@ -401,9 +431,9 @@ export default {
401 431
             let n = 0;
402 432
             for (let item of this.goods) {
403 433
                 if (item._sku) {
404
-                    n += item._sku.price / 100 * item.select_num;
434
+                    n += (item._sku.price / 100) * item.select_num;
405 435
                 } else {
406
-                    n += item.price / 100 * item.select_num;
436
+                    n += (item.price / 100) * item.select_num;
407 437
                 }
408 438
             }
409 439
             return n;
@@ -678,4 +708,24 @@ export default {
678 708
     justify-content: center;
679 709
     align-items: center;
680 710
 }
711
+.dis-list {
712
+    display: flex;
713
+    background-color: #eee;
714
+    flex-wrap: wrap;
715
+    padding: px(20) px(10) px(1);
716
+    margin: px(30) px(-35) 0;
717
+    li {
718
+        width: 25%;
719
+        padding: 0 px(10);
720
+        margin-bottom: px(20);
721
+    }
722
+    .box {
723
+        display: flex;
724
+        align-items: center;
725
+        justify-content: center;
726
+        height: px(90);
727
+        border-radius: px(8);
728
+        background-color: #fff;
729
+    }
730
+}
681 731
 </style>

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

@@ -49,6 +49,7 @@
49 49
                     ></my-image>
50 50
                     <span class="text">收银</span>
51 51
                 </li>
52
+              
52 53
             </ul>
53 54
         </div>
54 55
 
@@ -101,6 +102,7 @@ export default {
101 102
     },
102 103
     // 函数
103 104
     methods: {
105
+
104 106
         getUserMenu() {
105 107
             uni.showLoading({
106 108
                 title: "加载中...",