status; return array ( # 表名 'name' => 'buy', # 显示给用户看的名称 'lang' => '购买设置', 'order' => 100, 'menu' => false, 'ends' => array ( 'insert' => 'collection/lib/manage.setBuyCache', 'update' => 'collection/lib/manage.setBuyCache', ), # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', 'search' => 'order', //'list' => true, ), 'info_id' => array ( 'type' => 'int-11', 'name' => '合集', 'default' => '', 'desc' => '合集', 'match' => 'is_numeric', 'update' => 'hidden', 'value' => Dever::input('search_option_info_id') ), 'num' => array ( 'type' => 'int-11', 'name' => '购买数量-直接填写购买的数字即可', 'default' => '1', 'desc' => '购买数量', 'match' => 'option', 'update' => 'text', 'search' => 'order', 'list' => true, 'order' => 'asc', ), 'name' => array ( 'type' => 'varchar-80', 'name' => '购买名称-一般为“购买n张”,如购买1张,如果为空,则根据购买本数自动生成如“购买n张”', 'default' => '', 'desc' => '购买名称', 'match' => 'option', 'update' => 'text', //'search' => 'fulltext', 'list' => 'Dever::load("collection/lib/buy.getName", {id})', ), 'price' => array ( 'type' => 'varchar-50', 'name' => '购买时的标价-为空则自动根据合集的门票单张支付价格计算', 'default' => '', 'desc' => '购买时的标价', 'match' => 'option', 'update' => 'text', 'list' => 'Dever::load("collection/lib/buy.getPriceName", {id})', ), '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 ( ), 'request' => array ( 'getAll' => array ( # 匹配的正则或函数 选填项 'option' => array ( 'info_id' => 'yes', 'state' => 1, ), 'type' => 'all', 'order' => array('num' => 'asc', 'cdate' => 'desc'), 'col' => '*', 'call' => 'collection/lib/buy.getInfo', ), ), );