123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483 |
- <?php
- $status = Dever::config('base')->status;
- # 每页的数据量
- $page = 10;
- # 常用的col
- $col = '*';
- $yes = array
- (
- 1 => '是',
- 2 => '否',
- );
- return array
- (
- # 表名
- 'name' => 'person',
- # 显示给用户看的名称
- 'lang' => '虚拟角色',
- 'order' => 90,
- 'end' => array
- (
- 'insert' => array('content/lib/source.data?source_table=content/person'),
- 'update' => array('content/lib/source.data?source_table=content/person'),
- ),
- # 数据结构
- '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-800',
- 'name' => '介绍',
- 'default' => '',
- 'desc' => '介绍',
- 'match' => 'is_string',
- 'update' => 'textarea',
- ),
- 'source_id' => array
- (
- 'type' => 'int-11',
- 'name' => '来源',
- 'default' => '1',
- 'desc' => '来源',
- 'match' => 'is_numeric',
- 'update' => 'select',
- //'option' => $author,
- 'search' => 'select',
- 'update_search' => 'content/lib/source.search',
- ),
- 'top' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '是否推荐',
- 'default' => '2',
- 'desc' => '是否推荐',
- 'match' => 'is_numeric',
- 'update' => 'radio',
- 'option' => $yes,
- ),
- 'avatar' => array
- (
- 'type' => 'varchar-150',
- 'name' => '头像',
- 'default' => '',
- 'desc' => '头像',
- 'match' => 'option',
- 'update' => 'image',
- 'key' => '1',
- 'place' => '150*150',
- ),
- 'pic_cover' => array
- (
- 'type' => 'varchar-150',
- 'name' => '封面图',
- 'default' => '',
- 'desc' => '封面图',
- 'match' => 'option',
- 'update' => 'image',
- 'key' => '1',
- 'place' => '260*205',
- ),
- 'pic' => array
- (
- 'type' => 'text-255',
- 'name' => '多张图片',
- 'default' => '',
- 'desc' => '多张图片',
- 'match' => 'option',
- 'update' => 'images',
- 'key' => '1',
- //'place' => '345*200',
- ),
- 'profession' => array
- (
- 'type' => 'varchar-200',
- 'name' => '职业-多个用逗号隔开',
- 'default' => '',
- 'desc' => '职业',
- 'match' => 'is_string',
- 'update' => 'text',
- ),
- 'ability' => array
- (
- 'type' => 'varchar-800',
- 'name' => '能力标签-多个用逗号隔开',
- 'default' => '',
- 'desc' => '能力标签',
- 'match' => 'is_string',
- 'update' => 'text',
- ),
- 'education' => array
- (
- 'type' => 'varchar-100',
- 'name' => '学历',
- 'default' => '',
- 'desc' => '学历',
- 'match' => 'is_string',
- 'update' => 'text',
- ),
- 'bdate' => array
- (
- 'type' => 'int-11',
- 'name' => '生日',
- 'match' => 'is_numeric',
- 'default' => '',
- 'desc' => '',
- 'update' => 'date',
- 'callback' => 'maketime',
- ),
- 'phone' => array
- (
- 'type' => 'varchar-20',
- 'name' => '联系电话',
- 'default' => '',
- 'desc' => '联系电话',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'email' => array
- (
- 'type' => 'varchar-220',
- 'name' => '联系邮箱',
- 'default' => '',
- 'desc' => '联系邮箱',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'address' => array
- (
- 'type' => 'varchar-520',
- 'name' => '地址',
- 'default' => '',
- 'desc' => '地址',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'skill' => array
- (
- 'type' => 'text-1000',
- 'name' => '技能配置',
- 'default' => '',
- 'desc' => '技能配置',
- 'match' => 'is_string',
- 'update' => array
- (
- array
- (
- 'col' => 'name',
- 'name' => '技能名称',
- 'default' => '',
- 'desc' => '技能名称',
- 'match' => 'option',
- 'update' => 'text',
- ),
- array
- (
- 'col' => 'level',
- 'name' => '技能等级-满级为100',
- 'default' => '80',
- 'desc' => '技能等级',
- 'match' => 'is_string',
- 'update' => 'text',
- ),
- ),
- ),
- 'learn' => array
- (
- 'type' => 'text-1000',
- 'name' => '学习经历',
- 'default' => '',
- 'desc' => '学习经历',
- 'match' => 'is_string',
- 'update' => array
- (
- array
- (
- 'col' => 'name',
- 'name' => '名称',
- 'default' => '',
- 'desc' => '名称',
- 'match' => 'option',
- 'update' => 'text',
- ),
- array
- (
- 'col' => 'desc',
- 'name' => '描述-多个换行隔开',
- 'default' => '',
- 'desc' => '描述',
- 'match' => 'is_string',
- 'update' => 'textarea',
- ),
- ),
- ),
- 'life' => array
- (
- 'type' => 'text-1000',
- 'name' => '生活经历',
- 'default' => '',
- 'desc' => '生活经历',
- 'match' => 'is_string',
- 'update' => array
- (
- array
- (
- 'col' => 'name',
- 'name' => '名称',
- 'default' => '',
- 'desc' => '名称',
- 'match' => 'option',
- 'update' => 'text',
- ),
- array
- (
- 'col' => 'desc',
- 'name' => '描述-多个换行隔开',
- 'default' => '',
- 'desc' => '描述',
- 'match' => 'is_string',
- 'update' => 'textarea',
- ),
- ),
- ),
- 'reorder' => array
- (
- 'type' => 'int-11',
- 'name' => '排序(数值越大越靠前)',
- 'default' => '1',
- 'desc' => '请输入排序',
- 'match' => 'option',
- 'update' => 'text',
- 'search' => 'order',
- 'list' => true,
- 'order' => 'desc',
- 'edit' => true,
- ),
- 'udate' => array
- (
- 'type' => 'int-11',
- 'name' => '更新时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- ),
- 'status' => array
- (
- 'type' => 'int-11',
- 'name' => '发布状态',
- 'default' => '1',
- 'desc' => '发布状态',
- 'match' => 'is_numeric',
- //'update' => 'select',
- 'option' => $status,
- 'search' => 'select',
- 'list' => true,
- 'edit' => true,
- ),
- 'spider_data_id'=> array
- (
- 'type' => 'int-11',
- 'name' => '采集数据id',
- 'default' => '0',
- 'desc' => '采集数据id',
- 'match' => 'is_numeric',
- ),
- 'state' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'is_numeric',
- ),
- 'admin_founder' => array
- (
- 'type' => 'int-11',
- 'name' => '创建人',
- 'default' => '1',
- 'desc' => '创建人',
- 'match' => 'is_numeric',
- ),
- 'admin_editor' => array
- (
- 'type' => 'int-11',
- '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})',
- ),
- ),
-
- # 管理功能
- 'manage' => array
- (
- 'button' => array
- (
- '来源管理' => array('list', 'source&oper_parent=person'),
- ),
- //'insert' => false,
- # 列表
- 'list_button' => array
- (
- //'edit' => array('预览', str_replace('https://api.', 'http://www.', Dever::url('main/preview.get?type=1'))),
- ),
- ),
- # request 请求接口定义
- 'request' => array
- (
- 'search' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'ids' => array('yes-id', 'in'),
- 'source_id' => 'yes',
- 'name' => array('yes', 'like'),
- 'id' => 'yes',
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('reorder' => 'desc', 'id' => 'desc'),
- 'limit' => '0,1000',
- 'col' => 'name as name, id, id as value, "" as selected, "" as disabled|id',
- ),
- 'getAll' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'source_id' => 'yes',
- 'id' => 'yes',
- 'status' => 1,
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('reorder' => 'desc','id' => 'desc'),
- 'page' => array($page, 'list'),
- 'col' => $col,
- ),
- # 获取首页推荐
- 'getTop' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'status' => 1,
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('top' => 'asc', 'reorder' => 'desc','id' => 'desc'),
- 'limit' => '0,1',
- 'col' => $col,
- ),
- 'getList' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'source_id' => 'yes',
- 'status' => 1,
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('reorder' => 'desc','id' => 'desc'),
- 'limit' => '0,10',
- 'col' => $col,
- ),
- 'getRelation' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'source_id' => 'yes',
- 'noid' => array('yes-id', '!='),
- 'status' => 1,
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('reorder' => 'desc','id' => 'desc'),
- 'limit' => '0,2',
- 'col' => $col,
- ),
- 'getOne' => array
- (
- # 匹配的正则或函数 选填项
- 'where' => array
- (
- 'id' => 'yes',
- ),
- 'type' => 'one',
- 'col' => $col,
- ),
- ),
- );
|