12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- $info = Dever::project('area');
- $path = $info['setup'];
- return [
- 'list' => [
- 'desc' => '导入数据请在服务器执行:php '.$path.'index.php \'{"l":"import.json"}\';
- 数据来源:' . Dever::load('import/json', 'area')->getUrl(),
- 'field' => [
- 'id',
- 'name',
- 'pinyin',
- 'pinyin_first',
- 'sort' => 'input',
- 'status' => [
- 'type' => 'switch',
- 'show' => '{status}',
- 'active_value' => 1,
- 'inactive_value' => 2,
- ],
- 'cdate',
- ],
- 'button' => [
- '新增' => 'fastadd',
- ],
- 'data_button' => [
- '编辑' => 'fastedit',
- ],
- 'search' => [
- 'name',
- 'pinyin',
- 'pinyin_first',
- 'status',
- ],
- ],
- 'update' => [
- 'field' => [
- 'name' => [
- 'rules' => true,
- ],
- //'pinyin',
- //'pinyin_first',
- //'sort',
- ],
- 'start' => 'area/manage.up',
- ],
- ];
|