123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- <?php
- $up = array
- (
- 1 => '是',
- 2 => '否',
- );
- $source_type = array (
- 'ios' => 'ios',
- 'android' => 'android',
- );
- $vip = array
- (
- 1 => '显示',
- 2 => '不显示',
- );
- $button = array
- (
- 1 => '显示',
- 2 => '不显示',
- );
- $update = array
- (
- 1 => '显示',
- 2 => '不显示',
- );
- $login = array
- (
- 1 => '是',
- 2 => '否',
- );
- $anonymous = array
- (
- 1 => '是',
- 2 => '否',
- );
- return array
- (
- # 表名
- 'name' => 'version',
- # 显示给用户看的名称
- 'lang' => '版本管理',
- # 后台菜单排序
- 'order' => 1,
- 'menu' => false,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- //'list' => true,
- 'order' => 'desc',
- ),
- 'source_type' => array
- (
- 'type' => 'varchar-32',
- 'name' => '平台',
- 'default' => '1',
- 'desc' => '平台',
- 'match' => 'is_string',
- 'update' => 'select',
- 'search' => 'select',
- 'option' => $source_type,
- 'list' => true,
- ),
- 'appname' => array
- (
- 'type' => 'varchar-50',
- 'name' => 'app名称',
- 'default' => '',
- 'desc' => 'app名称',
- 'match' => 'is_string',
- 'update' => 'text',
- //'list' => true,
- ),
-
- 'name' => array
- (
- 'type' => 'varchar-32',
- 'name' => '版本名称',
- 'default' => '',
- 'desc' => '请输入名称',
- 'match' => 'is_string',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
- 'code' => array
- (
- 'type' => 'int-11',
- 'name' => '版本号-只能填写数字',
- 'default' => '',
- 'desc' => '版本号',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'order' => 'desc',
- 'list' => true,
- ),
- 'desc' => array
- (
- 'type' => 'varchar-500',
- 'name' => '版本描述',
- 'default' => '',
- 'desc' => '版本描述',
- 'match' => 'is_string',
- 'update' => 'textarea',
- ),
- 'up' => array
- (
- 'type' => 'int-11',
- 'name' => '是否强制升级',
- 'default' => '2',
- 'desc' => '是否强制升级',
- 'match' => 'is_numeric',
- 'update' => 'select',
- 'option' => $up,
- ),
- 'link' => array
- (
- 'type' => 'varchar-400',
- 'name' => '下载链接',
- 'default' => '',
- 'desc' => '下载链接',
- 'match' => 'is_string',
- 'update' => 'text',
- ),
- 'file' => array
- (
- 'type' => 'varchar-150',
- 'name' => '上传APP文件',
- 'default' => '',
- 'desc' => '上传APP文件',
- 'match' => 'option',
- 'update' => 'upload',
- 'key' => '7',
- 'upload' => 'qiniu',
- 'large' => true,
- //不覆盖原文件,生成新文件
- 'cover' => 2,
- ),
- 'updates' => array
- (
- 'type' => 'int-11',
- 'name' => '是否显示更新提醒',
- 'default' => '2',
- 'desc' => '是否显示更新提醒',
- 'match' => 'is_numeric',
- 'update' => 'radio',
- 'option' => $update,
- ),
- 'login' => array
- (
- 'type' => 'int-11',
- 'name' => '是否强制登录',
- 'default' => '2',
- 'desc' => '是否强制登录',
- 'match' => 'is_numeric',
- 'update' => 'radio',
- 'option' => $login,
- ),
- 'anonymous' => array
- (
- 'type' => 'int-11',
- 'name' => '是否匿名登录',
- 'default' => '2',
- 'desc' => '是否匿名登录',
- 'match' => 'is_numeric',
- 'update' => 'radio',
- 'option' => $anonymous,
- ),
- 'vip' => array
- (
- 'type' => 'int-11',
- 'name' => '会员-是否显示会员信息和会员按钮',
- 'default' => '2',
- 'desc' => '会员',
- 'match' => 'is_numeric',
- 'update' => 'radio',
- 'option' => $vip,
- ),
- 'button' => array
- (
- 'type' => 'int-11',
- 'name' => '兑换阅读按钮-是否显示兑换阅读按钮',
- 'default' => '2',
- 'desc' => '兑换阅读按钮',
- 'match' => 'is_numeric',
- 'update' => 'radio',
- 'option' => $button,
- ),
- '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,
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
- 'request' => array
- (
- 'getOne' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'source_type' => 'yes',
- 'code' => 'yes',
- 'name' => 'yes',
- 'state' => 1,
- ),
- 'type' => 'one',
- 'order' => array('code' => 'desc', 'cdate' => 'desc'),
- 'col' => '*',
- ),
- ),
- );
|