1234567891011121314151617181920212223242526272829 |
- <?php
- namespace wechat\controllers;
- use wechat\base\CommonController;
- use Yii;
- class ZtController extends CommonController
- {
-
- public function actionNewyear()
- {
- return $this->render('newyear');
- }
-
- public function actionYuandan()
- {
- return $this->render('yuandan');
- }
-
- public function actionNewyearzt()
- {
- return $this->render('newyearzt');
- }
- }
|