From 10d2fc015016903b7ec32fbdbe5f01fa0bcc8d6a Mon Sep 17 00:00:00 2001 From: wangshiming Date: Thu, 20 Jan 2022 10:44:35 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=A6=E8=BE=86=E6=8E=A5=E5=8F=A3=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/bulk/bulk.component.ts | 10 +++++----- .../components/vehicle/vehicle.component.ts | 11 ++++++----- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/app/routes/order-management/components/bulk/bulk.component.ts b/src/app/routes/order-management/components/bulk/bulk.component.ts index 62c9c0d0..6921d239 100644 --- a/src/app/routes/order-management/components/bulk/bulk.component.ts +++ b/src/app/routes/order-management/components/bulk/bulk.component.ts @@ -457,17 +457,17 @@ export class OrderManagementBulkComponent implements OnInit { width: '120px', className: 'text-left', buttons: [ - { - text: '查看评价 ', - click: _record => this.viewEvaluate(_record), - iif: item => item.billStatus == '5' - }, { text: '运费变更记录', click: _record => this.OpenPrice(_record), iif: item => item.billStatus == '4' || item.billStatus == '5' || item.billStatus == '2' || item.billStatus == '3' || item.billStatus == '6' }, + { + text: '查看评价 ', + click: _record => this.viewEvaluate(_record), + iif: item => item.billStatus == '5' + }, { text: '变更运费 ', click: _record => this.updateFreight(_record), diff --git a/src/app/routes/order-management/components/vehicle/vehicle.component.ts b/src/app/routes/order-management/components/vehicle/vehicle.component.ts index 3f39db6c..6552d953 100644 --- a/src/app/routes/order-management/components/vehicle/vehicle.component.ts +++ b/src/app/routes/order-management/components/vehicle/vehicle.component.ts @@ -413,16 +413,17 @@ resourceStatus: any; width: '120px', className: 'text-left', buttons: [ - { - text: '查看评价 ', - click: (_record) => this.viewEvaluate(_record), - iif: item => item.billStatus == '5', - }, + { text: '运费变更记录', click: (_record) => this.OpenPrice(_record), iif: item => item.billStatus == '4' || item.billStatus == '5' || item.billStatus == '2' || item.billStatus == '3' || item.billStatus == '6', }, + { + text: '查看评价 ', + click: (_record) => this.viewEvaluate(_record), + iif: item => item.billStatus == '5', + }, { text: '变更运费 ', click: (_record) => this.updateFreight(_record),