1234567891011121314151617181920 |
- <?php
- /**
- * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
- * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
- * @author pillar<ltmn@qq.com>
- * 管理首页
- */
- namespace app\citys\controller\Manage;
- use app\citys\controller\Common;
- class Index extends Common{
- /**
- * 应用管理首页
- * @access public
- */
- public function Index(){
- return redirect('citys/info/index');
- }
- }
|