'支出', 2 => '收入', ); $cash_type = array ( 1 => '微信', 2 => '支付宝', ); //后台只显示 $type = array ( //1 => '积分兑现-申请', //2 => '积分兑现-完成', //3 => '积分兑现-失败', 4 => '任务奖励', 5 => '任务提成', //6 => '系统奖励', ); return array ( # 表名 'name' => 'user_score_log', # 显示给用户看的名称 'lang' => '用户积分日志', 'menu' => false, 'order' => 19, # 数据结构 '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})', ), 'group_uid' => array ( 'type' => 'int-11', 'name' => '下线用户名', 'default' => '', 'desc' => '下线用户名', 'match' => 'is_numeric', ), 'score' => array ( 'type' => 'varchar-11', 'name' => '积分', 'default' => '', 'desc' => '积分', 'match' => 'is_numeric', 'update' => 'text', 'list' => true, ), 'cash' => array ( 'type' => 'varchar-11', 'name' => '兑换现金', 'default' => '', 'desc' => '兑换现金', 'match' => 'is_numeric', 'update' => 'text', ), '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}) : "系统"', ), 'report_id' => array ( 'type' => 'int-11', 'name' => '报告', 'default' => '-1', 'desc' => '报告', 'match' => 'is_numeric', ), 'type' => array ( 'type' => 'tinyint-1', 'name' => '积分类型', 'default' => '1', 'desc' => '积分类型', 'match' => 'is_numeric', 'update' => 'select', 'option' => $type, 'search' => 'select', 'list' => true, //'edit' => true, ), 'type_desc' => array ( 'type' => 'varchar-300', 'name' => '积分类型描述', 'default' => '', 'desc' => '请输入积分类型描述', 'match' => 'option', 'update' => 'textarea', ), 'cash_type' => array ( 'type' => 'tinyint-1', 'name' => '兑现途径', 'default' => '1', 'desc' => '兑现途径', 'match' => 'is_numeric', 'update' => 'select', //'option' => $cash_type, //'search' => 'select', //'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', ), 'cash_date' => array ( 'type' => 'int-11', 'name' => '申请兑现时间', 'default' => '', 'match' => 'is_numeric', 'desc' => '申请兑现时间', ), '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})', ), ), # 更新表结构 'alter' => array ( 1 => array ( array('update', 'score', 'score', 'varchar-11 0 积分'), array('update', 'cash', 'cash', 'varchar-11 0 兑换金额'), ), 'version' => 1, ), 'manage' => array ( 'insert' => false, 'edit' => false, 'delete' => false, ), 'request' => array ( 'getAll' => array ( # 匹配的正则或函数 选填项 'option' => array ( 'uid' => 'yes', 'task_id' => 'yes', 'report_id' => 'yes', 'status' => 'yes', 'type' => 'yes', 'state' => 1, ), 'type' => 'all', 'order' => array('cdate' => 'desc'), 'col' => '*', ), ) );