12345678910111213141516171819202122 |
- <?php
- /**
- * Created by PhpStorm.
- * User: xiaofeng
- * Date: 2018/4/19
- * Time: 下午2:52
- */
- namespace mobile\controllers;
- use mobile\base\CommonController;
- class ActivityController extends CommonController{
- public function actionHome()
- {
- return $this->render('home');
- }
- public function actionDetails()
- {
- return $this->render('details');
- }
- }
|