<?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'); } }