20 lines
664 B
JavaScript
20 lines
664 B
JavaScript
|
|
export const formLabel = [
|
||
|
|
{
|
||
|
|
isShow: true,
|
||
|
|
f_type: 'dateTimeRange',
|
||
|
|
f_label: '时间选择',
|
||
|
|
f_model: 'timeRange',
|
||
|
|
f_width: '400px',
|
||
|
|
dateType: ['startTime', 'endTime'],
|
||
|
|
valueFormat: 'yyyy-MM-dd HH:mm',
|
||
|
|
},
|
||
|
|
]
|
||
|
|
|
||
|
|
export const columnsList = [
|
||
|
|
{ t_props: 'location', t_label: '识别地点' },
|
||
|
|
{ t_props: 'recognitionTime', t_label: '识别时间' },
|
||
|
|
{ t_props: 'licensePlate', t_label: '车牌号' },
|
||
|
|
{ t_props: 'plateColor', t_label: '车牌颜色' },
|
||
|
|
{ t_props: 'vehicleType', t_label: '车辆类型' },
|
||
|
|
{ t_slot: 'recognitionPhoto', t_label: '识别照片', t_width: '120px' },
|
||
|
|
]
|