|
|
@@ -835,7 +835,7 @@
|
|
|
this.obj.deliveryDate || item.expectReceiveDate;
|
|
|
});
|
|
|
this.form = copyObj(this.obj);
|
|
|
- console.log(this.form, '');
|
|
|
+ console.log(this.form, '111');
|
|
|
|
|
|
this.radio1 = this.radio;
|
|
|
this.getSpanArr();
|
|
|
@@ -1060,7 +1060,7 @@
|
|
|
totalPriceAll() {
|
|
|
let num = 0;
|
|
|
this.form.resultList.forEach((item) => {
|
|
|
- num += item.totalPrice || 0;
|
|
|
+ num += +item.totalPrice || 0;
|
|
|
});
|
|
|
this.form.totalPrice = parseFloat(num.toFixed(2));
|
|
|
this.form.preferentialPrice = this.form.totalPrice;
|