PushhothouseController.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: xiaofeng
  5. * Date: 2018/5/29
  6. * Time: 上午11:35
  7. */
  8. namespace backend\controllers;
  9. use backend\base\CommonController;
  10. use backend\base\Help;
  11. use Yii;
  12. class PushhothouseController extends CommonController
  13. {
  14. /*
  15. * 推荐位:首页-搜索框-推荐楼盘
  16. * */
  17. public function actionPone()
  18. {
  19. return $this->render('/push/hotsale',['type'=>2]);
  20. }
  21. /*
  22. * 推荐位:楼盘首页-底部-推荐楼盘
  23. * */
  24. public function actionPtwo()
  25. {
  26. return $this->render('/push/hotsale',['type'=>3]);
  27. }
  28. /*
  29. *推荐位 - 楼盘首页-搜索框-热门搜索
  30. * */
  31. public function actionPthree()
  32. {
  33. return $this->render('/push/hotsale',['type'=>4]);
  34. }
  35. /*
  36. *资讯列表页-实景看房
  37. * */
  38. public function actionVrhouse()
  39. {
  40. return $this->render('/push/hotsale',['type'=>5]);
  41. }
  42. /*
  43. *马来西亚专题
  44. * */
  45. public function actionMlxyzt()
  46. {
  47. return $this->render('/push/hotsale',['type'=>6]);
  48. }
  49. /*
  50. *迪拜专题
  51. * */
  52. public function actionDibai()
  53. {
  54. return $this->render('/push/hotsale',['type'=>7]);
  55. }
  56. }