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),