更新功能

This commit is contained in:
2019-06-29 21:14:58 +08:00
parent d3eef9c5fd
commit 6bfc2db94a
23 changed files with 1046 additions and 955 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
// +----------------------------------------------------------------------
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
// +----------------------------------------------------------------------
namespace app\controller;
use app\BaseController;
/**
* @title 后端公共模块
*/
class Admin extends BaseController {
protected $middleware = [
'\app\middleware\AdminAuth' => ['except' => ['login']],
'\app\middleware\Admin'
];
protected $data = ['meta' => [], 'data' => [], 'code' => 0, 'msg' => ''];
}