'history', # 显示给用户看的名称 'lang' => '发展历程', 'order' => 89, # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', 'list' => true, ), 'name' => array ( 'type' => 'varchar-80', 'name' => '标题-一般为时间', 'default' => '', 'desc' => '标题', 'match' => 'is_string', 'update' => 'text', 'list' => true, 'search' => 'fulltext', //增加预览 'preview' => true, ), 'desc' => array ( 'type' => 'varchar-500', 'name' => '介绍', 'default' => '', 'desc' => '介绍', 'match' => 'is_string', 'update' => 'textarea', ), 'pic' => array ( 'type' => 'varchar-150', 'name' => '图片-图片尺寸195*195px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式', 'default' => '', 'desc' => '图片', 'match' => 'is_string', 'update' => 'image', 'key' => '1', 'place' => '195', //直接上传到云端 //'upload' => 'qiniu', //上传大数据 //'large' => 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', ), 'cdate' => array ( 'type' => 'int-11', 'name' => '录入时间', 'match' => array('is_numeric', time()), 'desc' => '', # 只有insert时才生效 'insert' => true, ), ), # 管理功能 'manage' => array ( //'insert' => false, ), # request 请求接口定义 'request' => array ( ), );