'进行中', 2 => '已提交报告', 3 => '已完成一次报告', 4 => '已完成', 9 => '冻结', ); $company = function() { $array = array(); $info = Dever::load('task/company-state'); if($info) { $array += $info; } return $array; }; $cate = function() { $array = array(); $info = Dever::load('task/cate-state'); if($info) { $array += $info; } return $array; }; $level = function() { $array = array(); $info = Dever::load('task/level-state'); if($info) { $array += $info; } return $array; }; return array ( # 表名 'name' => 'user_task', # 显示给用户看的名称 'lang' => '用户任务', 'menu' => 'passport', 'order' => 100, # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', //'search' => 'order', 'order' => 'desc', 'list' => true, ), 'uid' => array ( 'type' => 'int-11', 'name' => '用户名', 'default' => '', 'desc' => '用户名', 'match' => 'is_numeric', //'update' => 'text', 'search' => array ( 'api' => 'passport/user-all', 'col' => 'username', 'result' => 'id', ), 'list' => 'Dever::load("passport/user-one#username", {uid})', ), 'task_id' => array ( 'type' => 'int-11', 'name' => '任务名', 'default' => '-1', 'desc' => '任务名', 'match' => 'is_numeric', //'update' => 'select', 'search' => array ( 'api' => 'task/info-all', 'col' => 'name', 'result' => 'id', ), 'list' => '{task_id} > 0 ? Dever::load("task/info-one#name", {task_id}) : "系统"', ), 'company_id' => array ( 'type' => 'int-11', 'name' => '商家', 'default' => '-1', 'desc' => '商家', 'match' => 'is_numeric', //'update' => 'select', 'search' => 'select', 'option' => $company, 'list' => true, ), 'cate_id' => array ( 'type' => 'int-11', 'name' => '类别', 'default' => '-1', 'desc' => '类别', 'match' => 'is_numeric', //'update' => 'select', 'search' => 'select', 'option' => $cate, 'list' => true, ), 'level_id' => array ( 'type' => 'int-11', 'name' => '等级', 'default' => '-1', 'desc' => '等级', 'match' => 'is_numeric', //'update' => 'select', 'search' => 'select', 'option' => $level, 'list' => true, ), 'status' => array ( 'type' => 'tinyint-1', 'name' => '状态', 'default' => '1', 'desc' => '状态', 'match' => 'is_numeric', 'update' => 'select', 'option' => $status, //'search' => 'select', //'list' => true, //'edit' => true, ), 'state' => array ( 'type' => 'tinyint-1', 'name' => '状态', 'default' => '1', 'desc' => '请选择状态', 'match' => 'is_numeric', ), 'cdate' => array ( 'type' => 'int-11', 'name' => '领取时间', 'match' => array('is_numeric', time()), 'desc' => '', # 只有insert时才生效 'insert' => true, 'search' => 'date', 'list' => 'date("Y-m-d H:i:s", {cdate})', ), ), 'manage' => array ( 'insert' => false, 'edit' => false, 'delete' => false, ), 'request' => array ( 'getAll' => array ( 'where' => array ( 'uid' => 'yes', 'state' => 1, 'status' => 'yes-t_2.status', ), 'join' => array ( array ( 'table' => 'task/info', 'type' => 'left join', 'on' => array('task_id','id'), 'col' => 't_2.id as id', ), ), 'type' => 'all', 'page' => array(15, 'list'), 'order' => array('t_2.reorder' => 'desc', 't_2.edate' => 'asc'), 'col' => 'id,t_2.*,t_1.uid', ), ) );