CenterPage.php 254 B

123456789101112131415161718
  1. <?php
  2. namespace app\person\controller;
  3. use app\person\common\PersonController;
  4. /**
  5. * Description of CenterPageController
  6. *
  7. * @author sgq
  8. */
  9. class CenterPage extends PersonController {
  10. public function index() {
  11. return view();
  12. }
  13. }