123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- namespace backend\controllers;
- use backend\base\CommonController;
- use backend\base\Help;
- use Yii;
- class PushhothouseController extends CommonController
- {
-
- public function actionPone()
- {
- return $this->render('/push/hotsale',['type'=>2]);
- }
-
- public function actionPtwo()
- {
- return $this->render('/push/hotsale',['type'=>3]);
- }
-
- public function actionPthree()
- {
- return $this->render('/push/hotsale',['type'=>4]);
- }
-
- public function actionVrhouse()
- {
- return $this->render('/push/hotsale',['type'=>5]);
- }
-
- public function actionMlxyzt()
- {
- return $this->render('/push/hotsale',['type'=>6]);
- }
-
- public function actionDibai()
- {
- return $this->render('/push/hotsale',['type'=>7]);
- }
- }
|