This commit is contained in:
wangshiming
2022-04-13 18:52:55 +08:00
parent 6919e5864b
commit cb9d0ed593
6 changed files with 36 additions and 7 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming
* @Date : 2021-12-28 14:42:03
* @LastEditors : Shiming
* @LastEditTime : 2022-04-13 15:55:47
* @LastEditTime : 2022-04-13 18:51:46
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\vehicle-detail\\vehicle-detail.component.ts
* Copyright (C) 2022 huzhenhong. All rights reserved.
*/
@ -51,6 +51,11 @@ export class OrderManagementVehicleDetailComponent implements OnInit {
{ title: '时间', index: 'warningTime' },
{ title: '异常预警类型', index: 'warningTypeLabel' }
];
operateLogColums: STColumn[] = [
{ title: '内容', index: 'operationContent' },
{ title: '操作人', render: 'operator' },
{ title: '操作时间', index: 'operatorTimestamp' },
];
logColumns: STColumn[] = [
{ title: '款项', index: 'expenseCodeLabel' },
{ title: '小计(元)', render: 'prices' },
@ -63,6 +68,9 @@ export class OrderManagementVehicleDetailComponent implements OnInit {
index: 'paymentStatusLabel'
}
];
get logParams() {
return { operateObject: this.i?.billCode, operateTypeList: ['3','8'] }
}
constructor(
public route: ActivatedRoute,
private msgSrv: NzMessageService,