|
@@ -418,8 +418,8 @@ export default {
|
418
|
418
|
return;
|
419
|
419
|
}
|
420
|
420
|
let sendData = {
|
421
|
|
- totalAmount: parseInt(this.totalPrice * 100),
|
422
|
|
- payAmount: parseInt(this.payAmount * 100),
|
|
421
|
+ totalAmount: Math.round(this.totalPrice * 100),
|
|
422
|
+ payAmount: Math.round(this.payAmount * 100),
|
423
|
423
|
discount: this.discount.show
|
424
|
424
|
? Number(this.discount.ratio)
|
425
|
425
|
: 100, // 折扣
|
|
@@ -431,12 +431,12 @@ export default {
|
431
|
431
|
// 无码商品
|
432
|
432
|
sendData.orderItems.push({
|
433
|
433
|
count: item.isWeightGood
|
434
|
|
- ? parseInt(item.select_num * 1000)
|
|
434
|
+ ? Math.round(item.select_num * 1000)
|
435
|
435
|
: item.select_num,
|
436
|
436
|
price: item.price,
|
437
|
437
|
weighingGoods: item.isWeightGood ? true : false,
|
438
|
438
|
weight: item.isWeightGood
|
439
|
|
- ? parseInt(item.select_num * 1000)
|
|
439
|
+ ? Math.round(item.select_num * 1000)
|
440
|
440
|
: item.select_num,
|
441
|
441
|
});
|
442
|
442
|
} else {
|
|
@@ -444,11 +444,11 @@ export default {
|
444
|
444
|
productId: item.id,
|
445
|
445
|
skuId: item._sku ? item._sku.skuId : "",
|
446
|
446
|
count: item.isWeightGood
|
447
|
|
- ? parseInt(item.select_num * 1000)
|
|
447
|
+ ? Math.round(item.select_num * 1000)
|
448
|
448
|
: item.select_num,
|
449
|
449
|
weighingGoods: item.isWeightGood ? true : false,
|
450
|
450
|
weight: item.isWeightGood
|
451
|
|
- ? parseInt(item.select_num * 1000)
|
|
451
|
+ ? Math.round(item.select_num * 1000)
|
452
|
452
|
: item.select_num,
|
453
|
453
|
});
|
454
|
454
|
}
|
|
@@ -639,6 +639,7 @@ export default {
|
639
|
639
|
}
|
640
|
640
|
}
|
641
|
641
|
n = n.toFixed(2);
|
|
642
|
+ console.log(parseFloat(n));
|
642
|
643
|
return parseFloat(n);
|
643
|
644
|
// return 100;
|
644
|
645
|
},
|
|
@@ -653,7 +654,6 @@ export default {
|
653
|
654
|
// 收款金额
|
654
|
655
|
payAmount() {
|
655
|
656
|
let v = 0;
|
656
|
|
- console.log(this.payType, this.curPayType);
|
657
|
657
|
if (this.payType[this.curPayType]) {
|
658
|
658
|
v += Number(this.payType[this.curPayType]);
|
659
|
659
|
}
|