车辆接口更新

This commit is contained in:
wangshiming
2022-01-20 13:34:31 +08:00
parent 2d3d12bdac
commit 6bfc719245
6 changed files with 76 additions and 71 deletions

View File

@ -18,9 +18,9 @@ export class SupplyManagementBulkDetailComponent implements OnInit {
id = this.route.snapshot.params.id;
i: any;
logColumns: STColumn[] = [
{ title: '内容', index: 'theme' },
{ title: '操作人', index: 'operationUserPhone' },
{ title: '操作时间', index: ' createTime' },
{ title: '内容', index: 'operationContent' },
{ title: '操作人', index: 'operator' },
{ title: '操作时间', index: ' operatorTimestamp' },
];
driverColums: STColumn[] = [
{ title: '司机姓名', index: 'theme' },
@ -62,13 +62,18 @@ export class SupplyManagementBulkDetailComponent implements OnInit {
2: '抹除小数',
3: '抹除个数'
} // 取整规则
get reqParams() {
return {
operateObject: this.i?.resourceCode,
operateType: 4,
};
}
currentStatus = 0;
constructor(
private route: ActivatedRoute,
private msgSrv: NzMessageService,
private service: SupplyManagementService,
public service: SupplyManagementService,
private modal: NzModalService,
private router: Router
) {