fix bug
This commit is contained in:
@ -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: '是否已备案',
|
||||
|
||||
Reference in New Issue
Block a user