|
@@ -1381,7 +1381,7 @@ const computeSingleDeliveryMaterialsFee = (index) => {
|
|
|
for (let i = 0; i < list.length; i++) {
|
|
|
num = Number(Math.round(num + list[i].quantity));
|
|
|
}
|
|
|
- singlePrice = Number(Math.ceil((money / num) * 100) / 100);
|
|
|
+ singlePrice = Number(Math.ceil((money / num) * 1000) / 1000);
|
|
|
}
|
|
|
formData.data.orderSkuList[index].deliveryMaterialsFee = singlePrice;
|
|
|
return formData.data.orderSkuList[index].deliveryMaterialsFee;
|