This commit is contained in:
wangshiming
2022-03-25 13:57:30 +08:00
parent 11527ff5d6
commit 24a87e913c
3 changed files with 30 additions and 5 deletions

View File

@ -127,6 +127,15 @@ export class VehicleComponentsListComponent implements OnInit {
}
}
},
carLoad: {
title: '载重',
type: 'string',
ui: {
visibleIf: {
expand: (value: boolean) => value
}
}
},
isSelf: {
type: 'string',
title: '是否挂靠',
@ -174,7 +183,23 @@ export class VehicleComponentsListComponent implements OnInit {
expand: (value: boolean) => value
}
}
}
},
isSelfs: {
type: 'string',
title: '是否入网',
enum: [
{ label: '全部', value: '' },
{ label: '是', value: 1 },
{ label: '否', value: 0 }
],
ui: {
widget: 'select',
allowClear: true,
visibleIf: {
expand: (value: boolean) => value
}
}
},
// putOnRecord: {
// type: 'string',
// title: '是否已备案',