|
@@ -431,7 +431,9 @@ export default {
|
431
|
431
|
productId: item.id,
|
432
|
432
|
// skuId:item.id,
|
433
|
433
|
skuId: item._sku ? item._sku.skuId : "",
|
434
|
|
- count: item.isWeightGood?parseInt(item.select_num*1000):item.select_num,
|
|
434
|
+ count: item.isWeightGood
|
|
435
|
+ ? parseInt(item.select_num * 1000)
|
|
436
|
+ : item.select_num,
|
435
|
437
|
remark: "",
|
436
|
438
|
});
|
437
|
439
|
}
|
|
@@ -512,7 +514,10 @@ export default {
|
512
|
514
|
scanType: "barCode",
|
513
|
515
|
success(res) {
|
514
|
516
|
console.log("扫码", res);
|
515
|
|
- if (res.scanType === "CODE_128" || res.scanType === "QR_CODE") {
|
|
517
|
+ if (
|
|
518
|
+ res.scanType === "CODE_128" ||
|
|
519
|
+ res.scanType === "QR_CODE"
|
|
520
|
+ ) {
|
516
|
521
|
uni.showLoading({
|
517
|
522
|
title: "支付中...",
|
518
|
523
|
mask: true,
|
|
@@ -602,11 +607,18 @@ export default {
|
602
|
607
|
// 总金额
|
603
|
608
|
totalPrice() {
|
604
|
609
|
let n = 0;
|
605
|
|
- for (let item of this.goods) {
|
606
|
|
- if (item._sku) {
|
607
|
|
- n += (item._sku.price / 100) * item.select_num;
|
608
|
|
- } else {
|
609
|
|
- n += (item.price / 100) * item.select_num;
|
|
610
|
+ // 是否为称重
|
|
611
|
+ if (item.isWeightGood) {
|
|
612
|
+ let m = (item.price / 100) * item.select_num;
|
|
613
|
+ m = Number(n.toFixed(2));
|
|
614
|
+ n += m;
|
|
615
|
+ } else {
|
|
616
|
+ for (let item of this.goods) {
|
|
617
|
+ if (item._sku) {
|
|
618
|
+ n += (item._sku.price / 100) * item.select_num;
|
|
619
|
+ } else {
|
|
620
|
+ n += (item.price / 100) * item.select_num;
|
|
621
|
+ }
|
610
|
622
|
}
|
611
|
623
|
}
|
612
|
624
|
n = n.toFixed(2);
|