ActivityController.php 301 B

12345678910111213141516171819
  1. <?php
  2. namespace wechat\controllers;
  3. use wechat\base\CommonController;
  4. class ActivityController extends CommonController{
  5. public function actionHome()
  6. {
  7. return $this->render('home');
  8. }
  9. public function actionDetails()
  10. {
  11. return $this->render('details');
  12. }
  13. }