123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- <?php
- # 定义几个常用的选项
- $option = array
- (
- 1 => '显示',
- 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' => '*',
- )
- ),
- );
|