From 5fe34208af76f19ffead852f50e273d9964619f9 Mon Sep 17 00:00:00 2001 From: wangshiming Date: Sat, 9 Apr 2022 17:21:05 +0800 Subject: [PATCH] fix bug --- .../abnormal-warning.component.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/routes/order-management/components/abnormal-warning/abnormal-warning.component.ts b/src/app/routes/order-management/components/abnormal-warning/abnormal-warning.component.ts index 4e3b658f..29a61f01 100644 --- a/src/app/routes/order-management/components/abnormal-warning/abnormal-warning.component.ts +++ b/src/app/routes/order-management/components/abnormal-warning/abnormal-warning.component.ts @@ -99,7 +99,7 @@ export class OrderManagementAbnormalWarningComponent implements OnInit { ui: { } }, - wayCode: { + wayBillCode: { type: 'string', title: '运单号', ui: { @@ -213,13 +213,6 @@ export class OrderManagementAbnormalWarningComponent implements OnInit { */ initST() { this.columns = [ - { - title: '运单号', - width: '180px', - fixed: 'left', - className: 'text-left', - index: 'wayCode' - }, { title: '订单号', width: '180px', @@ -227,6 +220,13 @@ export class OrderManagementAbnormalWarningComponent implements OnInit { className: 'text-left', index: 'billCode' }, + { + title: '运单号', + width: '180px', + fixed: 'left', + className: 'text-left', + index: 'wayCode' + }, { title: '服务类型', index: 'serviceTypeLabel', width: '220px', className: 'text-left',format: (item) => { return item?.resourceTypeLabel + item?.serviceTypeLabel } },