You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
783 B
43 lines
783 B
2 weeks ago
|
export const baseModelOptions = () => {
|
||
|
return [
|
||
|
|
||
|
]
|
||
|
}
|
||
|
|
||
|
export const baseFilterOptions = () => {
|
||
|
return [
|
||
|
{
|
||
|
tag: 'el-input',
|
||
|
label: '设备名称:',
|
||
|
key: 'deviceName',
|
||
|
value: '',
|
||
|
default: '',
|
||
|
attribute: {//属性
|
||
|
type: 'text',
|
||
|
placeholder: '请输入设备名称',
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
tag: 'el-input',
|
||
|
label: 'IMEI:',
|
||
|
key: 'imei',
|
||
|
value: '',
|
||
|
default: '',
|
||
|
attribute: {//属性
|
||
|
type: 'text',
|
||
|
placeholder: '请输入IMEI',
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
tag: 'el-input',
|
||
|
label: '设备类型:',
|
||
|
key: 'mcType',
|
||
|
value: '',
|
||
|
default: '',
|
||
|
attribute: {//属性
|
||
|
type: 'text',
|
||
|
placeholder: '请输入设备类型',
|
||
|
},
|
||
|
},
|
||
|
]
|
||
|
}
|