<?php
/**
 * Created by PhpStorm.
 * User: xiaofeng
 * Date: 2018/5/29
 * Time: 上午11:35
 */
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]);
        }
}