24 lines
994 B
JavaScript
24 lines
994 B
JavaScript
export const formLabel = [
|
|
{ f_label: '搜索关键词', f_model: 'proName', f_type: 'ipt', isShow: false },
|
|
{ f_label: '设备状态', f_model: 'relUser', f_type: 'sel', isShow: false },
|
|
{ f_label: '设备启用', f_model: 'relUser', f_type: 'sel', isShow: false },
|
|
]
|
|
export const columnsList = [
|
|
// { t_props: 'projectName', t_label: '所属工程' },
|
|
{ t_props: 'devType', t_label: '设备类型' },
|
|
{ t_props: 'devCode', t_label: '设备编码' },
|
|
{ t_props: 'typeName', t_label: '设备名称' },
|
|
{ t_props: 'typeCode', t_label: '设备级联编码' },
|
|
{ t_props: 'isOnline', t_label: '设备状态', t_slot: 'status' },
|
|
{ t_props: 'auditStatus', t_label: '设备信号' },
|
|
{ t_props: 'bdName', t_label: '所属边带' },
|
|
{ t_props: 'auditStatus', t_label: '监测区域' },
|
|
{ t_props: 'auditStatus', t_label: '备注' },
|
|
]
|
|
|
|
export const dialogConfig = {
|
|
outerWidth: '50%',
|
|
outerTitle: '设备新增',
|
|
outerVisible: false,
|
|
}
|