'可用', 2 => '不可用', ); $type = function() { return Dever::load('device/data.type', 1); }; $info = function() { return Dever::load('device/info-all'); }; return array ( # 表名 'name' => 'sensor', # 显示给用户看的名称 'lang' => '传感器管理', # 后台菜单排序 //'menu' => false, 'order' => 15, 'check' => 'key', # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', 'search' => 'order', 'order' => 'desc', //'list' => true, ), 'key' => array ( 'type' => 'varchar-52', 'name' => '标识-标识必须唯一,之后所有的操作都需要使用这个标识', 'default' => '', 'desc' => '请输入标识', 'match' => 'is_string', 'update' => 'text', 'search' => 'fulltext', 'list' => true, ), 'name' => array ( 'type' => 'varchar-80', 'name' => '名称', 'default' => '', 'desc' => '名称', 'match' => 'is_string', 'update' => 'text', 'search' => 'fulltext', 'list' => true, ), /* 'info_id' => array ( 'type' => 'int-11', 'name' => '所属设备', 'default' => Dever::input('option_info_id', 1), 'desc' => '请选择所属设备', 'match' => 'is_numeric', 'option' => $info, 'update' => 'select', 'search' => 'select', 'list' => true, ), */ 'type_id' => array ( 'type' => 'tinyint-1', 'name' => '类型', 'default' => '1', 'desc' => '请选择类型', 'match' => 'is_numeric', 'option' => $type, 'update' => 'select', 'search' => 'select', 'list' => true, 'bind' => array('onchange', 'loading', array('element' => 'unit', 'url' => Dever::url("device/data.typeOne?json=1"))), ), 'unit' => array ( 'type' => 'varchar-30', 'name' => '单位', 'default' => '', 'desc' => '单位', 'match' => 'is_string', 'update' => 'text', 'search' => 'fulltext', //'list' => true, ), 'exp' => array ( 'type' => 'varchar-200', 'name' => '数值换算公式-根据该公式计算出当前回传得数据,{b}为本次回传数据,例子:{b}*5-10', 'default' => '{b}', 'desc' => '数值换算公式', 'match' => 'is_string', 'update' => 'textarea', 'search' => 'fulltext', //'list' => true, ), 'range' => array ( 'type' => 'varchar-200', 'name' => '正常值范围-用逗号隔开,例子:40,100', 'default' => '', 'desc' => '正常值范围', 'match' => 'option', 'update' => 'text', 'search' => 'fulltext', //'list' => true, ), 'time' => array ( 'type' => 'int-11', 'name' => '发送时间间隔-单位为秒', 'default' => '600', 'desc' => '发送时间间隔', 'match' => 'is_string', 'update' => 'text', 'search' => 'fulltext', //'list' => true, ), 'pic' => array ( 'type' => 'varchar-255', 'name' => '图片-1:1的比例,如:150*150', 'default' => '', 'desc' => '请选择图片', 'match' => 'option', 'update' => 'image', 'key' => '1', ), 'info' => array ( 'type' => 'varchar-255', 'name' => '说明介绍-选填', 'default' => '', 'desc' => '请输入元件说明', 'match' => 'option', 'update' => 'textarea', //'list' => true, ), 'reorder' => array ( 'type' => 'int-11', 'name' => '排序-数值越大越靠前', 'default' => '1', 'desc' => '请输入排序', 'match' => 'option', 'update' => 'text', 'search' => 'order', 'list' => true, 'order' => 'desc', 'edit' => true, ), 'state' => array ( 'type' => 'tinyint-1', 'name' => '状态', 'default' => '1', 'desc' => '请选择状态', 'match' => 'is_numeric', 'option' => $option, 'update' => 'radio', 'list' => true, ), 'cdate' => array ( 'type' => 'int-11', 'name' => '录入时间', 'match' => array('is_numeric', time()), 'desc' => '', # 只有insert时才生效 'insert' => true, 'list' => 'date("Y-m-d H:i:s", {cdate})', ), ), 'manage' => array ( # 不允许编辑 //'edit' => false, # 列表页的类型 //'list_type' => 'parent', # 可以删除 'list_button' => array ( //oper_save_jump=system&oper_parent=system 特殊配置 oper_save_jump保存之后跳到那个表的列表页 oper_parent下级列表页中显示返回上一页的链接 //21 => array('新增命令码', '"code&option_element_id={id}&oper_parent=element"'), //11 => array('命令码列表', '"code&option_element_id={id}&oper_save_jump=element&oper_parent=element"'), //22 => array('新增设备', '"system&option_element_id={id}&oper_save_jump=system&oper_parent=system"', '{element_id}==-1'), //6 => '删除' ), //'desc' => '注意:命令码', ), # request 请求接口定义 'request' => array ( # 根据id获取 'getByids' => array ( 'where' => array ( 'id' => array('yes', 'in'), ), 'type' => 'all', 'col' => '*', ), ), );