From 6dcbdfaf9453505a469a1da238eb2acd7cbdc4b7 Mon Sep 17 00:00:00 2001 From: wangshiming Date: Thu, 24 Feb 2022 19:20:58 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/list/list.component.ts | 19 +++++++++++++++++++ .../insurance-table.component.html | 4 ++-- .../insurance-table.component.ts | 2 +- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/src/app/routes/insurance-management/components/list/list.component.ts b/src/app/routes/insurance-management/components/list/list.component.ts index a49f2c47..3a9cdc0c 100644 --- a/src/app/routes/insurance-management/components/list/list.component.ts +++ b/src/app/routes/insurance-management/components/list/list.component.ts @@ -269,6 +269,18 @@ export class insuranceManagementListComponent implements OnInit { } } as SFSelectWidgetSchema }, + insureRefundStatus: { + title: '退款状态', + type: 'string', + ui: { + widget: 'dict-select', + params: { dictKey: 'insure:refund:status' }, + containsAllLable: true, + visibleIf: { + _$expand: (value: boolean) => value + } + } as SFSelectWidgetSchema + }, enterpriseInfoId: { type: 'string', title: '网络货运人', @@ -452,6 +464,13 @@ export class insuranceManagementListComponent implements OnInit { render: 'processMessage', // processResult=2 }, + { + title: '退款状态', + width: '180px', + className: 'text-left', + index: 'insureRefundStatusLabel', + // processResult=2 + }, { title: '操作', fixed: 'right', diff --git a/src/app/shared/components/insurance-table/insurance-table.component.html b/src/app/shared/components/insurance-table/insurance-table.component.html index aa1dd8a6..535b647e 100644 --- a/src/app/shared/components/insurance-table/insurance-table.component.html +++ b/src/app/shared/components/insurance-table/insurance-table.component.html @@ -4,7 +4,7 @@ * @Author : Shiming * @Date : 2022-01-25 20:18:52 * @LastEditors : Shiming - * @LastEditTime : 2022-02-24 17:35:11 + * @LastEditTime : 2022-02-24 19:19:42 * @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\insurance-table\\insurance-table.component.html * Copyright (C) 2022 huzhenhong. All rights reserved. --> @@ -50,7 +50,7 @@ - + (含) diff --git a/src/app/shared/components/insurance-table/insurance-table.component.ts b/src/app/shared/components/insurance-table/insurance-table.component.ts index 030e3d81..6589d8ef 100644 --- a/src/app/shared/components/insurance-table/insurance-table.component.ts +++ b/src/app/shared/components/insurance-table/insurance-table.component.ts @@ -18,7 +18,7 @@ export class InsuranceTableComponent implements OnInit { schema: SFSchema = {}; ui!: SFUISchema; - formatterDollar = (value: number): string => `${value} (含)`; + formatterDollar = (value: number): string => `${value}`; minInsurancePrice: number = 0; changeSub = new Subject(); constructor(public service: BaseService, private cdr: ChangeDetectorRef) {}