ActivityController.php 387 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: xiaofeng
  5. * Date: 2018/4/19
  6. * Time: 下午2:52
  7. */
  8. namespace mobile\controllers;
  9. use mobile\base\CommonController;
  10. class ActivityController extends CommonController{
  11. public function actionHome()
  12. {
  13. return $this->render('home');
  14. }
  15. public function actionDetails()
  16. {
  17. return $this->render('details');
  18. }
  19. }