| 12345678910111213141516171819 |
- <?php
- namespace app\index\controller;
- use app\common\controller\Frontend;
- use app\job\InsertDataJob;
- use think\Queue;
- use think\Db;
- class Index extends Frontend
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- protected $layout = '';
- public function index(){
- $this->redirect('index/user/login');
- // return $this->view->fetch();
- }
- }
|