新增配置管理

This commit is contained in:
JaguarJack
2020-04-21 10:34:50 +08:00
parent be743d9d23
commit 1b954c1b16
4 changed files with 324 additions and 1 deletions

View File

@@ -17,4 +17,8 @@ $router->post('upload/image', '\catchAdmin\system\controller\Upload@image');
$router->post('upload/file', '\catchAdmin\system\controller\Upload@file');
// 附件
$router->resource('attachments', '\catchAdmin\system\controller\Attachments');
$router->resource('attachments', '\catchAdmin\system\controller\Attachments');
// 配置
$router->get('config/parent', '\catchAdmin\system\controller\Config@parent');
$router->resource('config', '\catchAdmin\system\controller\Config');