This commit is contained in:
wangshiming
2022-04-27 19:58:29 +08:00
parent 63175bd00d
commit 944d3830c1
3 changed files with 6 additions and 5 deletions

View File

@ -1039,11 +1039,12 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
paymentDays: this.sf7.value.paymentDays,
estimatedKilometers: this.totalDistance,
estimatedTravelTime: this.totalTime,
subtotal: this.sf7.value.subtotal,
total: this.sf7.value.total,
subtotal: this.sf7.value.subtotal.toFixed(2),
total: this.sf7.value.total.toFixed(2),
insurancePackagedGoods: this.sf4.value.insurancePackagedGoods,
goodsValue: this.sf4.value.goodsValue
};
console.log(params)
const modalRef = this.modalService.create({
nzTitle: '运输协议',
nzContent: TranAgreementComponent,