/** * 查询字段名:{ * type:组件查询类型, * sql_type:数据库查询类型, * meltiple:是否多选(select时生效), * width:组件宽度, * placeholder:placeholder, * options:选项(select时生效) * default:默认选项 * text:label文字 * } */ let filterOptions = { Device: { address: { type: "input", text: "地址", multiple: false, sql_type: "8", width: "140px", placeholder: "请输入地址" }, log_id: { type: 'input', text: '逻辑编号', multiple: false, sql_type: '8', width: '140px', placeholder: '请输入逻辑编号' }, phy_id: { type: 'input', text: '物理编号', multiple: false, sql_type: '8', width: '140px', placeholder: '请输入物理编号' } }, Cycle: { detail: { type: "input", text: "任务说明", multiple: false, sql_type: "8", width: "140px", placeholder: "请输入说明" } }, TaskRecord: { task_type: { type: "select", text: "任务类型", width: "150px", sql_type: "1", placeholder: "请选择", options: [ { name: "周期任务", id: "周期任务" }, { name: "即时任务", id: "即时任务" } ] }, task_id: { type: "input", text: "任务号", width: "150px", sql_type: "8", placeholder: "请输入任务号" }, start_time: { sql_type: "4", type: "daterange", text: "执行时间", width: "300px" } }, RadioRecord: { result: { type: "select", sql_type: "1", text: "电台类型", width: "120px", placeholder: "请选择", options: [{ name: '合法电台', id: '1' }, { name: '区域非法', id: '2' }, { name: '时间非法', id: '3' }, { name: '频率非法', id: '4' }, { name: '内容非法', id: '5' }] }, frequency: { type: "input", text: "频率", sql_type: "8", width: "120px", placeholder: "请输入频率" }, upload_day: { type: "daterange", text: "上传时间", width: "300px", sql_type: "4" } }, WhiteList: { name: { type: "input", sql_type: "8", text: "电台名称", width: "170px", placeholder: "请输入电台名称", options: null } }, Keyword: { name: { type: "input", sql_type: "8", text: "关键词", width: "170px", placeholder: "请输入关键词", options: null } }, roleMembers: { role_key: { type: "select", sql_type: "1", text: "用户权限", width: "170px", placeholder: "请选择", options: null }, user_name: { type: "input", sql_type: "8", text: "用户名称", width: "170px", placeholder: "请输入用户名称" } }, systemLog: { log_type: { type: "select", sql_type: "1", text: "日志类型", width: "150px", placeholder: "请选择", options: [ { name: "响应日志", id: "响应日志" }, { name: "错误日志", id: "错误日志" }, { name: "登入登出", id: "登入登出" } ] }, create_day: { type: "date", sql_type: "1", text: "记录日期", width: "150px", placeholder: "请选择日期" }, response_status: { type: "select", sql_type: "1", text: "响应状态", width: "150px", options: [ { name: "200", id: "200" }, { name: "201", id: "201" }, { name: "400", id: "400" }, { name: "403", id: "403" }, { name: "404", id: "404" }, { name: "500", id: "500" }, { name: "503", id: "503" }, { name: "505", id: "505" } ] }, logDes: { type: "input", sql_type: "8", text: "描述查询", width: "150px", placeholder: "请描述关键词" } }, version: { version_name: { type: "input", sql_type: "8", text: "版本号", width: "170px", placeholder: "请输入版本号", options: null } }, InforRelease: { type: { type: "radioGroup", sql_type: "1", width: "200px", placeholder: "请选择", options: [ { name: "通知短信", id: "SMS" }, { name: "邮件通知", id: "EMAIL" } ] }, send_day: { type: "date", sql_type: "1", text: '发送日期', width: "150px", placeholder: "请选择" } }, ReportExport: { user_name: { type: "input", sql_type: "8", text: "姓名", width: "170px", placeholder: "请输入用户名", options: null } }, frequencyAddress: { frequency: { type: "input", sql_type: "8", text: "广播频率", width: "170px", placeholder: "请输入频率" } }, manageDay: { send_day: { type: "date", sql_type: "1", text: '发送日期', width: "150px", placeholder: "请选择" } }, dictionary: { prarm_id: { type: "input", sql_type: "8", text: '参数ID', width: "150px", placeholder: "请选择" } } }; export default filterOptions;