Index.php 360 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\index\controller;
  3. use app\common\controller\Frontend;
  4. use app\common\model\Page as PageModel;
  5. use app\common\library\Service;
  6. class Index extends Frontend
  7. {
  8. protected $noNeedLogin = '*';
  9. protected $noNeedRight = '*';
  10. protected $layout = '';
  11. public function index()
  12. {
  13. return $this->view->fetch();
  14. }
  15. }