'显示', 2 => '不显示', ); $type = array ( 1 => '非通讯设备', 2 => '通讯设备', ); /* $system = function() { $data = Dever::load('device/system-all'); return $data; }; */ $system = Dever::url('data.system?id={level}', 'device'); $park = Dever::input('option_park_id'); $server = function() use($park) { $param['option_park_id'] = $park; $data = Dever::load('company/park_server-all', $param); return $data; }; $list = function() { $data = Dever::load('company/park-all'); return $data; }; return array ( # 表名 'name' => 'device', # 显示给用户看的名称 'lang' => '设备列表', 'menu' => false, # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => '设备ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', 'search' => 'order', 'order' => 'desc', 'list' => true, ), 'park_id' => array ( 'type' => 'int-11', 'name' => '所属园区', 'default' => Dever::input('option_park_id', '-1'), 'desc' => '所属园区ID', 'match' => 'is_numeric', 'update' => 'hidden', 'option' => $list, 'search' => 'select', 'list' => 'Dever::load("company/park-one#name", {park_id})', ), /* 'device' => array ( 'type' => 'varchar-80', 'name' => '设备ID', 'default' => '', 'desc' => '设备ID', 'match' => 'is_string', 'update' => 'text', 'list' => true, ), */ 'name' => array ( 'type' => 'varchar-32', 'name' => '设备名', 'default' => '', 'desc' => '设备名', 'match' => 'is_string', 'update' => 'text', 'list' => true, ), 'type' => array ( 'type' => 'tinyint-1', 'name' => '设备类型', 'default' => '1', 'desc' => '请选择类型', 'match' => 'is_numeric', 'option' => $type, 'update' => 'radio', 'show' => 'type', //'list' => true, ), 'element_id' => array ( 'type' => 'varchar-200', 'name' => '通讯码设备', 'default' => '1', 'desc' => '选择通讯码设备', 'match' => 'is_numeric', //'list' => true, 'update' => 'mul', //'search' => 'mul', 'option' => $system, 'order' => 'desc', 'show' => array('type_2'), ), 'element_id_value' => array ( 'type' => 'int-11', 'name' => '通讯码设备-最终的值', 'default' => '1', 'desc' => '请选择通讯码设备', 'match' => 'is_numeric', 'update' => 'hidden', //'list' => true, ), 'server_id' => array ( 'type' => 'int-11', 'name' => '通讯服务器', 'default' => '1', 'desc' => '选择通讯服务器', 'match' => 'is_numeric', 'list' => '{type} == 2 ? {server_id} > 0 ? Dever::load("company/park_server-one#name", {server_id}) : "未选择服务器" : "非通讯设备"', 'update' => 'radio', 'option' => $server, 'show' => array('type_2'), ), 'sdate' => array ( 'type' => 'int-11', 'name' => '应用日期', 'match' => 'is_numeric', 'desc' => '', 'list' => 'date("Y-m-d", {sdate})', 'update' => 'time', 'callback' => 'maketime', ), 'info' => array ( 'type' => 'varchar-100', 'name' => '备注', 'default' => '', 'desc' => '备注', 'match' => 'option', 'update' => 'text', 'list' => true, 'edit' => 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})', ), ), //'auth' => 'company', 'manage' => array ( //'insert' => false, //'edit' => false, 'excel' => true, ), # request 请求接口定义 'request' => array ( 'allKey' => array ( 'type' => 'all', 'where' => array ( 'park_id' => 'yes', 'state' => 1, 'type' => 2, ), 'order' => array('reorder` desc,`element_id_value` desc,`id', 'desc'), 'col' => '*|element_id_value|', ), 'getOrderBySdate' => array ( 'type' => 'all', 'where' => array ( 'park_id' => 'yes', 'state' => 1, ), 'order' => array('sdate` desc, `reorder` desc,`element_id_value` desc,`id', 'desc'), 'col' => '*', ) ), );