Index.php 384 B

12345678910111213141516171819
  1. <?php
  2. namespace app\index\controller;
  3. use app\common\controller\Frontend;
  4. use app\job\InsertDataJob;
  5. use think\Queue;
  6. use think\Db;
  7. class Index extends Frontend
  8. {
  9. protected $noNeedLogin = '*';
  10. protected $noNeedRight = '*';
  11. protected $layout = '';
  12. public function index(){
  13. $this->redirect('index/user/login');
  14. // return $this->view->fetch();
  15. }
  16. }