From d0f51f799916d3ba795dc0ce527e067a2c6443cc Mon Sep 17 00:00:00 2001 From: wangshiming Date: Fri, 25 Mar 2022 16:41:12 +0800 Subject: [PATCH 1/2] fix bug --- .../compliance-audit.component.ts | 29 ++++++++++--------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/src/app/routes/order-management/components/compliance-audit/compliance-audit.component.ts b/src/app/routes/order-management/components/compliance-audit/compliance-audit.component.ts index 26b95ccb..5a524963 100644 --- a/src/app/routes/order-management/components/compliance-audit/compliance-audit.component.ts +++ b/src/app/routes/order-management/components/compliance-audit/compliance-audit.component.ts @@ -491,20 +491,21 @@ export class OrderManagementComplianceAuditComponent implements OnInit { } // 申诉记录 appeal(item: any) { - const modalRef = this.modal.create({ - nzTitle: '申诉', - nzContent: OneCarOrderAppealComponent, - nzComponentParams: { - i: item - }, - nzFooter: null - }); - modalRef.afterClose.subscribe((res) => { - if(res){ - this.resetSF; - this.st.load(); - } - }); + // const modalRef = this.modal.create({ + // nzTitle: '申诉', + // nzContent: OneCarOrderAppealComponent, + // nzComponentParams: { + // i: item + // }, + // nzFooter: null + // }); + // modalRef.afterClose.subscribe((res) => { + // if(res){ + // this.resetSF; + // this.st.load(); + // } + // }); + this.router.navigate(['/order-management/risk-detail', item.id]); } /** * 浮动费用查看 From 9020192e824765fcc52e65ab1d6904aeffbbea4d Mon Sep 17 00:00:00 2001 From: wangshiming Date: Fri, 25 Mar 2022 16:51:36 +0800 Subject: [PATCH 2/2] fix bug --- .../supply-management/components/bulk/bulk.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/routes/supply-management/components/bulk/bulk.component.html b/src/app/routes/supply-management/components/bulk/bulk.component.html index 3061d17c..570e07f3 100644 --- a/src/app/routes/supply-management/components/bulk/bulk.component.html +++ b/src/app/routes/supply-management/components/bulk/bulk.component.html @@ -4,7 +4,7 @@ * @Author : Shiming * @Date : 2022-01-12 10:52:50 * @LastEditors : Shiming - * @LastEditTime : 2022-03-04 15:45:58 + * @LastEditTime : 2022-03-25 16:51:13 * @FilePath : \\tms-obc-web\\src\\app\\routes\\supply-management\\components\\bulk\\bulk.component.html * Copyright (C) 2022 huzhenhong. All rights reserved. --> @@ -86,7 +86,7 @@ {{ item?.resourceCode }}
{{ item?.resourceTypeLabel }}{{ item?.serviceTypeLabel }}
-
{{ item?.resourceStatusLabel }}
+
{{ item?.resourceStatusLabel === '已完成' ? '已完结' : item?.resourceStatusLabel }}