From a017104170c1904a1019a0f7c2219df0ec28aa31 Mon Sep 17 00:00:00 2001 From: Taric Xin Date: Wed, 2 Mar 2022 17:29:08 +0800 Subject: [PATCH 1/2] edit --- .../invoice-requested-detail.component.html | 2 +- .../invoice-requested-detail.component.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.html b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.html index cb94640e..04e52e6a 100644 --- a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.html +++ b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.html @@ -106,7 +106,7 @@ - diff --git a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.ts b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.ts index 4f65c1cb..fc9c0897 100644 --- a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.ts +++ b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.ts @@ -166,9 +166,9 @@ export class InvoiceRequestedDetailComponent implements OnInit { routeToOrder(item: any) { if (item.billType === 1) { - this.router.navigate(['/order-management/vehicle-detail/' + item.billHId]); + this.router.navigate(['/order-management/vehicle/vehicle-detail/' + item.billHId]); } else { - this.router.navigate(['/order-management/bulk-detail/' + item.billHId]); + this.router.navigate(['/order-management/bulk/bulk-detail/' + item.billHId]); } } From a8ed4b000010c344ddd5cac500592f72f79a6d98 Mon Sep 17 00:00:00 2001 From: Taric Xin Date: Wed, 2 Mar 2022 17:30:58 +0800 Subject: [PATCH 2/2] edit --- .../components/payment-record/payment-record.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/routes/financial-management/components/payment-record/payment-record.component.html b/src/app/routes/financial-management/components/payment-record/payment-record.component.html index f8e57409..38aa1e2f 100644 --- a/src/app/routes/financial-management/components/payment-record/payment-record.component.html +++ b/src/app/routes/financial-management/components/payment-record/payment-record.component.html @@ -36,9 +36,9 @@ {{ item.orderPaymentCode }}
{{ item.paymentStatusLabel }}
- 预付:¥{{ item.price }}
+ 预付:{{ item.price | currency }}
- 附加费:¥ {{ item.surcharge }} + 附加费: {{ item.surcharge| currency }}