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: '请输入设备类型', }, }, ] }