12345678910111213141516171819 |
- <?php
- namespace wechat\controllers;
- use wechat\base\CommonController;
- class ActivityController extends CommonController{
- public function actionHome()
- {
- return $this->render('home');
- }
- public function actionDetails()
- {
- return $this->render('details');
- }
- }
|