HzController.php 320 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: xiaofeng
  5. * Date: 2018/4/20
  6. * Time: 上午1:00
  7. */
  8. namespace frontend\controllers;
  9. use frontend\base\CommonController;
  10. use Yii;
  11. class HzController extends CommonController
  12. {
  13. public function actionHome()
  14. {
  15. return $this->render('home');
  16. }
  17. }