ZtController.php 494 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace wechat\controllers;
  3. use wechat\base\CommonController;
  4. use Yii;
  5. class ZtController extends CommonController
  6. {
  7. // 元旦专题
  8. public function actionNewyear()
  9. {
  10. return $this->render('newyear');
  11. }
  12. // 元旦专题
  13. public function actionYuandan()
  14. {
  15. return $this->render('yuandan');
  16. }
  17. // 春节旅游看房团
  18. public function actionNewyearzt()
  19. {
  20. return $this->render('newyearzt');
  21. }
  22. }