ZtController.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <?php
  2. /*
  3. Created by PhpStorm.
  4. User: xiaofeng
  5. Date: 2018/6/10
  6. Time: 下午3:15
  7. */
  8. namespace frontend\controllers;
  9. use backend\base\Help;
  10. use common\models\House;
  11. use common\models\SpecialTopic;
  12. use frontend\base\CommonController;
  13. use Yii;
  14. use frontend\server\ZtServer;
  15. class ZtController extends CommonController
  16. {
  17. // 元旦专题
  18. public function actionNewyear()
  19. {
  20. return $this->render('newyear');
  21. }
  22. // 新年专题
  23. public function actionNewyearzt()
  24. {
  25. return $this->render('newyearzt');
  26. }
  27. // 碧桂园鼎龙湾专题
  28. public function actionBgydlw()
  29. {
  30. return $this->render('bgydlw');
  31. }
  32. /*金九银十专题*/
  33. public function actionJjys()
  34. {
  35. return $this->render('jjys');
  36. }
  37. /*国庆专题*/
  38. public function actionNationalzt()
  39. {
  40. return $this->render('nationalzt');
  41. }
  42. /*融创高隆湾 3天2晚游*/
  43. public function actionRcglw()
  44. {
  45. return $this->render('rcglw');
  46. }
  47. // 春节专题
  48. public function actionChunjiezt()
  49. {
  50. $ztmodel = new \common\models\SpecialTopic();
  51. $row = $ztmodel::findOne(7);
  52. $model = new \common\models\House();
  53. $cmodel = new \common\models\CategoryCity();
  54. $city = '';
  55. $house = '';
  56. $imgUrl = Yii::$app->params['httpImg']['host'] . Yii::$app->params['httpImg']['push_lb'];
  57. if (!empty(json_decode($row->hids, true))) {
  58. $hid = json_decode($row->hids, true);
  59. $query = $model::find();
  60. $query->andWhere(['pfg_house.id' => $hid]);
  61. $query->joinWith(['housedetail']);
  62. $query->with(['cityName']);
  63. $query->orderBy(['pfg_house.sort' => SORT_DESC]);
  64. $house = $query->asArray()->all();
  65. $pcity = array_column($house, 'province');
  66. $cquey = $cmodel::find();
  67. $cquey->select(['id', 'city_name']);
  68. $cquey->andWhere(['id' => $pcity]);
  69. $cquey->orderBy(['sort' => SORT_DESC]);
  70. $city = array_column($cquey->asArray()->all(), 'city_name', 'id');
  71. }
  72. empty($row->pc_img) ? '' : $row->pc_img = $imgUrl . $row->pc_img;
  73. return $this->render('chunjiezt', ['city' => $city, 'house' => $house, 'model' => $row]);
  74. }
  75. /**
  76. * 线上售楼处专题
  77. * @return string
  78. */
  79. public function actionSellhousezt()
  80. {
  81. $row = SpecialTopic::findOne(8);
  82. if (!empty($row)) {
  83. $hid = json_decode($row['hids'], true);
  84. $house = House::find()->select(['pfg_house.id', 'pfg_house.name', 'pfg_house_detail.address', 'pfg_house.thumb',
  85. 'pfg_house_detail.preferential_zt', 'pfg_house.sale_price', 'pfg_house_detail.price_unit', 'pfg_category_city.pid'])
  86. ->leftJoin('pfg_house_detail', 'pfg_house.id = pfg_house_detail.hid')
  87. ->leftJoin('pfg_category_city', 'pfg_house.city = pfg_category_city.id')
  88. ->andWhere(['pfg_house.id' => $hid])
  89. ->orderBy(['pfg_house.sort' => SORT_DESC])->asArray()->all();
  90. }
  91. return $this->render('sellhousezt', ['house' => $house, 'row' => $row]);
  92. }
  93. //楼盘随机电话
  94. public function RandTel($city)
  95. {
  96. $tel = new \common\models\CategoryTelCity();
  97. $tel->cid = $city;
  98. $telModel = $tel->CityTelOne();
  99. if ($telModel != null) {
  100. $telArr = explode(',', $telModel['tel']);
  101. $randNum = array_rand($telArr, 1);
  102. if (!empty($telArr[$randNum])) {
  103. return $telArr[$randNum];
  104. }
  105. }
  106. return Yii::$app->params['default_dialtel'];
  107. }
  108. // 写字楼专题
  109. public function actionOffice()
  110. {
  111. $cityList = \common\models\PushplaceType::find()->where(['type' => 4, 'state' => 1])->limit(2)->orderBy(['sort' => SORT_DESC])->select('id,title')->asArray()->all();
  112. foreach ($cityList as &$val) {
  113. $val['house_list'] = \common\models\PushhouseType::find()
  114. ->select('pfg_pushhouse_type.*,pfg_house.name,pfg_house.city,pfg_house.sale_price,pfg_house.thumb,pfg_house_detail.price_unit,pfg_house_detail.address,pfg_house_detail.preferential,pfg_house_detail.preferential_price,pfg_house_detail.preferential_zt')
  115. ->where(['pfg_pushhouse_type.previd' => $val['id'], 'pfg_pushhouse_type.type' => 4])
  116. ->innerJoin('pfg_house', 'pfg_house.id = pfg_pushhouse_type.hid')
  117. ->innerJoin('pfg_house_detail', 'pfg_house_detail.hid = pfg_house.id')
  118. ->orderBy(['pfg_pushhouse_type.sort' => SORT_DESC])->asArray()->all();
  119. foreach ($val['house_list'] as &$value) {
  120. $value['thumb'] = Yii::$app->params['httpImg']['hosts'] . Yii::$app->params['httpImg']['houses'] . $value['thumb'] . '/same';
  121. $value['tel'] = $this->RandTel($value['city']);
  122. }
  123. }
  124. if (!empty($cityList)) {
  125. $cityList[0]['house_list'] = array_chunk($cityList[0]['house_list'], 3);
  126. }
  127. return $this->render('office', ['cityList' => $cityList]);
  128. }
  129. // 国庆中秋专题
  130. public function actionAutumnzt()
  131. {
  132. $server = new ZtServer();
  133. $data = $server->GuoQingZhongQiu();
  134. return $this->render('autumnzt',['data'=>$data]);
  135. }
  136. // 海南别墅专题
  137. public function actionHnbszt()
  138. {
  139. $row = new \common\models\PushplaceType();
  140. $city1 = $row->city1();
  141. $city2 = $row->city2();
  142. $hn_boutiquevilla = $row->boutiquevilla();
  143. $hn_city = \common\models\CategoryCity::find()->where(['pid'=>68])->select('id,city_name')->asArray()->all();
  144. $boutiquevillaList = [];
  145. foreach ($hn_boutiquevilla as $value){
  146. $boutiquevillaList[$value['id']] = (new \common\models\PushhouseType())->boutiquevillaList($value['id'],4);
  147. }
  148. $priceList = \common\models\HousePrice::find()->where(['del'=>1,'state'=>1])->orderBy(['sort'=>SORT_ASC])->asArray()->all();
  149. //别墅动态
  150. $villa_news = (new \common\models\PushnewsType())->getlist(4);
  151. foreach ($villa_news as &$value){
  152. $value['thumb'] = Yii::$app->params['httpImg']['host'] . Yii::$app->params['httpImg']['newsthumb'] . json_decode($value['thumb'],true)[0];
  153. $value['time'] = date('Y.m.d',$value['create_at']);
  154. }
  155. //获取最新资讯
  156. $new_news = \common\models\News::find()->select('id,subject,thumb,abstract,create_at')->where(['state'=>1,'del'=>1])->orderBy(['create_at'=>SORT_DESC,'id'=>SORT_DESC])->limit(4)->asArray()->all();
  157. foreach ($new_news as &$value){
  158. $value['thumb'] = Yii::$app->params['httpImg']['host'] . Yii::$app->params['httpImg']['newsthumb'] . json_decode($value['thumb'],true)[0];
  159. $value['time'] = date('Y.m.d',$value['create_at']);
  160. }
  161. return $this->render('hnbszt', [
  162. 'city1' => $city1,
  163. 'city2' => $city2,
  164. 'hn_city'=>$hn_city,
  165. 'priceList'=>$priceList,
  166. 'hn_boutiquevilla'=>$hn_boutiquevilla,
  167. 'boutiquevillaList'=>$boutiquevillaList,
  168. 'villa_news'=>$villa_news,
  169. 'new_news'=>$new_news
  170. ]);
  171. }
  172. //获取指定地区别墅TOP8
  173. public function actionGetprovince()
  174. {
  175. $id = Yii::$app->request->post('city');
  176. if(is_numeric($id)){
  177. $data = \common\models\PushhouseType::find()
  178. ->select(['pfg_house.id','pfg_house.name','pfg_house.sale_price','pfg_house.thumb','pfg_house_detail.price_unit','pfg_house_detail.preferential'])
  179. ->where(['pfg_pushhouse_type.previd' => $id,'pfg_pushhouse_type.type'=>2])
  180. ->innerJoin('pfg_house', 'pfg_house.id = pfg_pushhouse_type.hid')
  181. ->innerJoin('pfg_house_detail','pfg_house_detail.hid = pfg_house.id')
  182. ->limit(8)
  183. ->orderBy(['pfg_pushhouse_type.sort'=>SORT_DESC])->asArray()->all();
  184. foreach ($data as &$value){
  185. $value['thumb'] = Yii::$app->params['httpImg']['hosts'] . Yii::$app->params['httpImg']['housesch'] . $value['thumb'] . '/same';
  186. }
  187. return Help::JsonData(Help::SUCCESS,'成功',0,$data);
  188. }else{
  189. return Help::JsonData(0,'成功',0,[]);
  190. }
  191. }
  192. //获取湾区列表
  193. public function actionGetgulfcitygl()
  194. {
  195. $id = Yii::$app->request->post('id');
  196. if(is_numeric($id)){
  197. $data = \common\models\PushhouseType::find()
  198. ->select('pfg_pushhouse_type.*,pfg_house.name,pfg_house.city,pfg_house.sale_price,pfg_house.thumb,pfg_house_detail.price_unit')
  199. ->where(['pfg_pushhouse_type.previd' => $id])
  200. ->innerJoin('pfg_house', 'pfg_house.id = pfg_pushhouse_type.hid')
  201. ->innerJoin('pfg_house_detail','pfg_house_detail.hid = pfg_house.id')
  202. ->limit(6)
  203. ->orderBy(['pfg_pushhouse_type.sort'=>SORT_DESC])->asArray()->all();
  204. foreach ($data as &$value){
  205. $value['thumb'] = Yii::$app->params['httpImg']['hosts'] . Yii::$app->params['httpImg']['housesch'] . $value['thumb'] . '/same';
  206. $value['tel'] = $this->RandTel($value['city']);
  207. }
  208. return Help::JsonData(Help::SUCCESS,'成功',0,$data);
  209. }else{
  210. return Help::JsonData(0,'成功',0,[]);
  211. }
  212. }
  213. }