123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- return array
- (
- 'list' => array
- (
- 'field' => array
- (
- 'sort' => array
- (
- 'type' => 'input',
- ),
- 'name' => array
- (
- //'tip' => false,
- ),
- 'cate' => array
- (
- 'show' => 'Dever::call("content/cate.getInfo", array("content", "{cate}"))',
- ),
- 'status' => array
- (
- 'type' => 'switch',
- 'show' => '{status}',
- 'active_value' => 1,
- 'inactive_value' => 2,
- ),
- 'cdate',
- ),
- 'button' => array
- (
- '新增' => array('add'),
- ),
- 'data_button' => array
- (
- '编辑' => 'edit',
- /*
- '推广素材' => array('route', array
- (
- 'path' => 'set_zone_source/source_info_data',
- 'param' => array
- (
- 'set' => array('info_id' => 'id', 'menu' => 'set_zone_source/source_info', 'parent' => 'set_zone_source/source_info'),
- ),
- ), 'ChatLineSquare'),
- */
- ),
- 'search' => array
- (
- 'cate' => array
- (
- 'type' => 'cascader',
- 'option' => 'Dever::call("content/cate.getList", array("content"))',
- ),
- 'status',
- 'name',
- ),
- ),
- 'update' => array
- (
- 'tab' => array
- (
- '基本信息' => 'name,cate,content',
- '附件信息' => 'content/value',
- '价格设置' => 'price,password,content/price',
- ),
- //'desc' => '原创声明:',
- 'field' => array
- (
- 'name' => array
- (
- 'rules' => true,
- ),
- 'cate' => array
- (
- 'rules' => true,
- 'type' => 'cascader',
- 'option' => 'Dever::call("content/cate.getList", array("content"))',
- ),
- 'info' => array
- (
- 'type' => 'textarea',
- //'rows' => 4,
- 'autosize' => array('minRows' => 4),
- ),
- 'content' => array
- (
- 'rules' => true,
- 'type' => 'editor',
- 'editorMenu' => array
- (
- 'uploadImage' => 1,
- 'uploadVideo' => 3,
- ),
- ),
- 'content/value' => array
- (
- 'name' => '附件',
- 'where' => array('info_id' => 'id'),
- ),
- 'price' => array
- (
- 'desc' => '下载附件的价格',
- ),
- 'password' => array
- (
- 'desc' => '输入密码后,可以免费下载附件',
- ),
- 'content/price' => array
- (
- 'name' => '会员设置',
- 'where' => array('info_id' => 'id'),
- 'desc' => '可以按照会员和代理等级设置,设置专享后,仅该等级的会员或代理可以下载',
- ),
- ),
- 'end' => 'content/info.update',
- ),
- );
|