1234567891011121314151617181920212223 |
- <?php
- namespace app\index\controller;
- use app\common\controller\Frontend;
- use app\common\model\Page as PageModel;
- use app\common\library\Service;
- class Index extends Frontend
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- protected $layout = '';
- public function index()
- {
- return $this->view->fetch();
- }
- }
|