123456789101112131415161718 |
- <?php
- namespace app\person\controller;
- use app\person\common\PersonController;
- /**
- * Description of CenterPageController
- *
- * @author sgq
- */
- class CenterPage extends PersonController {
- public function index() {
- return view();
- }
- }
|