1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Created by PhpStorm
- * User: 林志杰
- * Email: [email protected]
- * Time: 2020/1/2 12:58
- */
- namespace app\admin\controller;
- use think\facade\View;
- class Index extends AdminBase
- {
- public function index()
- {
- // return 'hello-admin';
- return View::fetch('');
- }
- public function welcome()
- {
- return View::fetch();
- }
- }
|