车辆接口更新

This commit is contained in:
wangshiming
2022-01-14 17:04:32 +08:00
parent c10d02316e
commit 3a88615847

View File

@ -125,25 +125,25 @@ export class VehicleComponentsAuditComponent implements OnInit {
},
},
},
approvalStatus: {
type: 'string',
title: '审核状态',
enum: [
{ label: '未提交', value: '-1' },
{ label: '草稿', value: 0},
{ label: '待审核', value: 10 },
{ label: '审核通过', value: 20 },
{ label: '驳回', value: 30 },
{ label: '证件过期', value: 40 },
],
default: '',
ui: {
widget: 'select',
visibleIf: {
expand: (value: boolean) => value,
},
},
},
// approvalStatus: {
// type: 'string',
// title: '审核状态',
// enum: [
// { label: '未提交', value: '-1' },
// { label: '草稿', value: 0},
// { label: '待审核', value: 10 },
// { label: '审核通过', value: 20 },
// { label: '驳回', value: 30 },
// { label: '证件过期', value: 40 },
// ],
// default: '',
// ui: {
// widget: 'select',
// visibleIf: {
// expand: (value: boolean) => value,
// },
// },
// },
},
};
this.ui = { '*': { spanLabelFixed: 90, grid: { span: 8, gutter: 4 }, enter: () => this.st.load() } };