21 lines
774 B
JavaScript
21 lines
774 B
JavaScript
|
|
export const formLabel = [
|
||
|
|
{ f_label: '设备类型', f_model: 'areaId', f_type: 'ipt', },
|
||
|
|
{ f_label: '设备名称', f_model: 'departName', f_type: 'ipt' },
|
||
|
|
{ f_label: '设备编码', f_model: 'headUser', f_type: 'ipt' },
|
||
|
|
{ f_label: '状态', f_model: 'headUser', f_type: 'ipt' },
|
||
|
|
]
|
||
|
|
export const columnsList = [
|
||
|
|
{ t_props: 'departName', t_label: '设备类型', },
|
||
|
|
{ t_props: 'departType', t_label: '设备编码' },
|
||
|
|
{ t_props: 'areaName', t_label: '设备名称' },
|
||
|
|
{ t_props: 'headUser', t_label: '所属边代设备', },
|
||
|
|
{ t_props: 'headUserPhone', t_label: '预警配置', },
|
||
|
|
{ t_props: 'remarks', t_label: '设备状态', },
|
||
|
|
]
|
||
|
|
|
||
|
|
export const dialogConfig = {
|
||
|
|
outerWidth: '60%',
|
||
|
|
outerTitle: '',
|
||
|
|
outerVisible: false,
|
||
|
|
}
|