123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <?php
- # 定义几个常用的选项
- $option = array
- (
- 1 => '正常',
- 2 => '冻结',
- );
- $level = array
- (
- 1 => '普通账号',
- 2 => '测试账号',
- //3 => '编辑',
- );
- $bind = array
- (
- 1 => '已绑定',
- 2 => '未绑定',
- );
- $auth = function()
- {
- return Dever::load('company/park-all');
- $data = Dever::load('company/park.all');
-
- return $data;
- };
- return array
- (
- # 表名
- 'name' => 'user',
- # 显示给用户看的名称
- 'lang' => '用户管理',
- # 后台菜单排序
- 'order' => 10,
- 'check' => 'mobile',
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => '用户ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- 'list' => true,
- ),
-
- 'company' => array
- (
- 'type' => 'int-11',
- 'name' => '所属公司',
- 'default' => '',
- 'desc' => '请选择所属公司',
- 'match' => 'is_numeric',
- ),
-
- 'username' => array
- (
- 'type' => 'varchar-80',
- 'name' => '用户名',
- 'default' => '',
- 'desc' => '请输入用户名',
- 'match' => 'is_string',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
-
- 'auth' => array
- (
- 'type' => 'varchar-500',
- 'name' => '园区权限设置',
- 'default' => '',
- 'desc' => '请选择园区权限设置',
- 'match' => 'is_string',
- 'update' => 'radio',
- //每个项对应的一个input以及父级更新的类型
- //'update_input' => '数量',
- //'update_parent' => 'radio',
- 'option' => $auth,
- ),
-
- 'nickname' => array
- (
- 'type' => 'varchar-50',
- 'name' => '用户昵称',
- 'default' => '',
- 'desc' => '请输入用户昵称',
- 'match' => 'is_string',
- //'update' => 'text',
- //'search' => 'fulltext',
- //'list' => true,
- ),
- 'mobile' => array
- (
- 'type' => 'varchar-32',
- 'name' => '手机号',
- 'default' => '',
- 'desc' => '请输入用户手机号',
- 'match' => '/^(1(([358][0-9])|(45)|(47)))\d{8}$/',
- 'match' => 'option',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
-
- 'password' => array
- (
- 'type' => 'varchar-50',
- 'name' => '密码',
- 'default' => '',
- 'desc' => '请输入密码',
- 'match' => 'option',
- 'update' => 'password',
- 'callback' => 'md5',
- ),
-
- 'avatar' => array
- (
- 'type' => 'varchar-150',
- 'name' => '头像',
- 'default' => '',
- 'desc' => '请选择头像',
- 'match' => 'option',
- 'update' => 'image',
- 'key' => '1',
- 'place' => '150',
- ),
-
- 'weixin' => array
- (
- 'type' => 'varchar-50',
- 'name' => '微信号',
- 'default' => '',
- 'desc' => '微信号',
- 'match' => 'option',
- 'update' => 'text',
- //'list' => true,
- ),
- 'level' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '用户级别',
- 'default' => '1',
- 'desc' => '请选择用户级别',
- 'match' => 'is_numeric',
- 'option' => $level,
- 'update' => 'radio',
- 'list' => true,
- //'show' => 'yes',
- ),
-
- 'login_date' => array
- (
- 'type' => 'int-11',
- 'name' => '最近登录',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- 'default' => '0',
- //'list' => 'date("Y-m-d H:i:s", {login_date})',
- ),
- 'reg_date' => array
- (
- 'type' => 'int-11',
- 'name' => '注册时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- 'default' => '0',
- ),
- 'bind' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '是否绑定手机',
- 'default' => '2',
- 'desc' => '请选择是否绑定手机',
- 'match' => 'is_numeric',
- 'option' => $bind,
- 'update' => 'radio',
- 'show' => 'yes',
- 'list' => 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
- (
-
- ),
-
- # request 请求接口定义
- 'request' => array
- (
- # 此处定义是为跳出auth
- 'login' => array
- (
- 'where' => array
- (
- 'username' => 'yes',
- 'password' => 'yes',
- ),
- 'type' => 'one',
- ),
- 'getByCompany' => array
- (
- 'where' => array
- (
- 'company' => array('yes', 'in'),
- 'state' => 1,
- ),
- 'type' => 'all',
- ),
- ),
- );
|