1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\common\controller;
- use app\BaseController;
- use think\facade\Request;
- use think\facade\Cookie;
- class Frontend extends BaseController
- {
- public function initialize()
- {
- parent::initialize();
- }
- }
|