123456789101112131415161718192021222324252627 |
- <?php
- namespace app\admin\controller;
- use app\BaseController;
- use app\common\controller\Base;
- use think\facade\View;
- class Error extends Base {
- public function __call($method, $args)
- {
- return View::fetch('error/error');
- }
- }
|