index.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. <template>
  2. <view class="index-index">
  3. <view class="index-bg"></view>
  4. <u-navbar :title="config.store_title" title-color="#fff" :isFixed="false" :background="{background:'rgba(0,0,0,0)'}" :border-bottom="false" :isBack="false">
  5. <view class="u-flex nav-left" slot="left">
  6. <u-icon name="map-fill" size="34" color="#fff"></u-icon>
  7. <text class="text">{{city || '定位中'}}</text>
  8. </view>
  9. </u-navbar>
  10. <view class="renqi-box u-flex">
  11. <u-icon name="heart-fill" color="#fff" size="26"></u-icon>
  12. <text class="text">累计人气值 {{popularity}}</text>
  13. </view>
  14. <view class="search-box u-flex u-row-between" @click="tosearch">
  15. <u-icon name="search" color="#CCCCCC" size="36"></u-icon>
  16. <input type="text" placeholder="搜索楼盘" class="input" :disabled="true">
  17. <text class="text">搜索</text>
  18. </view>
  19. <view class="swiper-box">
  20. <u-swiper :list="swiperlisi" name="logo" height="280" border-radius="20" @click="tobanner"></u-swiper>
  21. </view>
  22. <view class="tabs-list" v-if="tabslist.length > 0">
  23. <gf-scroll :list="tabslist" @click="tourl"></gf-scroll>
  24. </view>
  25. <view class="list-box" v-if="dijialist.length > 0">
  26. <view class="list-title u-flex u-row-between">
  27. <view class="u-flex title-left">
  28. <text>底价人气热盘</text>
  29. <image src="../../static/images/hot.png" mode=""></image>
  30. </view>
  31. <view class="more" @click="toall(1)">
  32. 查看更多
  33. </view>
  34. </view>
  35. <view class="u-flex u-row-between u-flex-wrap">
  36. <view class="list-item" v-for="(item,index) in dijialist" :key="index" @click="toinfo(item)">
  37. <image class="item-img" :src="item.logo" mode=""></image>
  38. <view class="item-name u-line-1">
  39. {{item.name}}
  40. </view>
  41. <view class="u-flex price">
  42. <text>参考均价</text>
  43. <text v-if="Number(item.avg_price)">{{item.avg_price}}/㎡</text>
  44. <text v-else>{{item.avg_price}}</text>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. <view class="list-box" v-if="tuijianlist.length > 0">
  50. <view class="list-title u-flex u-row-between">
  51. <view class="u-flex title-left">
  52. <text>推荐楼盘</text>
  53. </view>
  54. <view class="more" @click="toall(5)">
  55. 查看更多
  56. </view>
  57. </view>
  58. <view class="u-flex u-row-between u-flex-wrap">
  59. <view class="list-item" v-for="(item,index) in tuijianlist" :key="index" @click="toinfo(item)">
  60. <image class="item-img" :src="item.logo" mode=""></image>
  61. <view class="item-name u-line-1">
  62. {{item.name}}
  63. </view>
  64. <view class="u-flex price">
  65. <text>参考均价</text>
  66. <text v-if="Number(item.avg_price)">{{item.avg_price}}/㎡</text>
  67. <text v-else>{{item.avg_price}}</text>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. <u-popup v-if="guanggaolist.length >0" v-model="showguanggao" mode="center" border-radius="20" background="rgba(0,0,0,0)">
  73. <view class="guanggao-box">
  74. <u-swiper :list="guanggaolist" bgColor="rgba(0,0,0,0)" name="logo" height="974" border-radius="20" :autoplay="false"></u-swiper>
  75. <view class="close-box u-flex">
  76. <text style="border-right: 1rpx solid #fff;">{{s}}s</text>
  77. <text @click="closeguanggao">关闭</text>
  78. </view>
  79. </view>
  80. </u-popup>
  81. <u-popup v-model="showgzh" mode="center" border-radius="20">
  82. <view style="font-size: 0;">
  83. <image style="width: 650rpx;height: 650rpx;" :src="config.service_code" mode=""></image>
  84. </view>
  85. </u-popup>
  86. </view>
  87. </template>
  88. <script>
  89. import {
  90. mapGetters,
  91. mapState
  92. } from 'vuex'
  93. export default {
  94. data() {
  95. return {
  96. swiperlisi: [],
  97. tabslist: [],
  98. showguanggao: false,
  99. guanggaolist: [],
  100. s: 5,
  101. time: null,
  102. showgzh: false,
  103. popularity: 0,
  104. dijialist: [],
  105. tuijianlist: []
  106. }
  107. },
  108. onLoad() {
  109. this.getbanner()
  110. this.gettabs()
  111. this.getguanggao()
  112. this.getlist()
  113. },
  114. onShow() {
  115. this.getpopularity()
  116. },
  117. computed: {
  118. ...mapGetters(['config']),
  119. ...mapState(['city'])
  120. },
  121. methods: {
  122. getlist() {
  123. this.$u.post('/api/Index/property_list', {
  124. page: 1,
  125. page_num: 10,
  126. type: 1,
  127. }).then(res => {
  128. this.dijialist = res.data
  129. })
  130. this.$u.post('/api/Index/property_list', {
  131. page: 1,
  132. page_num: 10,
  133. type: 5,
  134. }).then(res => {
  135. this.tuijianlist = res.data
  136. })
  137. },
  138. daojishi() {
  139. this.s = 5
  140. this.time = setInterval(() => {
  141. if (this.s == 0) {
  142. this.showguanggao = false
  143. clearInterval(this.time)
  144. } else {
  145. this.s--
  146. }
  147. }, 1000)
  148. },
  149. getguanggao() {
  150. this.$u.post('/api/Index/adv_list').then(res => {
  151. this.guanggaolist = res.data
  152. this.showguanggao = true
  153. this.daojishi()
  154. })
  155. },
  156. gettabs() {
  157. this.$u.post("/api/Index/diamond_list").then(res => {
  158. this.tabslist = []
  159. res.data.forEach(val => {
  160. if (val.id == 11 && this.config.intermediary_show == 1) {
  161. this.tabslist.push(val)
  162. } else if (val.id == 12 && this.config.people_show == 1) {
  163. this.tabslist.push(val)
  164. } else {
  165. this.tabslist.push(val)
  166. }
  167. })
  168. })
  169. },
  170. tobanner(e) {
  171. if (this.swiperlisi[e].url) {
  172. uni.navigateTo({
  173. url: this.swiperlisi[e].url
  174. })
  175. }
  176. },
  177. getbanner() {
  178. this.$u.post('/api/Index/banner').then(res => {
  179. this.swiperlisi = res.data
  180. })
  181. },
  182. getpopularity() {
  183. this.$u.post('/api/Index/add_popularity').then(res => {
  184. this.$store.commit('setpopularity', res.data)
  185. this.popularity = res.data
  186. })
  187. },
  188. tosearch() {
  189. uni.navigateTo({
  190. url: "./search"
  191. })
  192. },
  193. toinfo(item) {
  194. uni.navigateTo({
  195. url: "./houses-info?id=" + item.id
  196. })
  197. },
  198. tourl(item) {
  199. console.log(item);
  200. if (item.id == 1) {
  201. uni.navigateTo({
  202. url: "/pagesA/index/newHouses?title="+item.title
  203. })
  204. }
  205. if (item.id == 2) {
  206. uni.navigateTo({
  207. url: "/pagesA/index/allHouses?type=3"
  208. })
  209. }
  210. if (item.id == 3) {
  211. uni.navigateTo({
  212. url: "/pagesA/index/allHouses?type=4"+'&title='+item.title
  213. })
  214. }
  215. if (item.id == 4) {
  216. uni.navigateTo({
  217. url: "/pagesA/index/dataCenter?title="+item.title
  218. })
  219. }
  220. if (item.id == 5) {
  221. this.showgzh = true
  222. }
  223. if (item.id == 6) {
  224. uni.navigateTo({
  225. url: "./fuli"
  226. })
  227. }
  228. if (item.id == 7) {
  229. uni.navigateTo({
  230. url: "./news?title="+item.title
  231. })
  232. }
  233. if (item.id == 8) {
  234. uni.navigateTo({
  235. url: "/pagesA/index/counter"
  236. })
  237. }
  238. if (item.id == 9) {
  239. uni.navigateTo({
  240. url: "/pagesA/index/allHouses?title="+item.title
  241. })
  242. }
  243. if (item.id == 10) {
  244. uni.navigateTo({
  245. url: "./pk-list"
  246. })
  247. }
  248. if (item.id == 11) {
  249. if (this.$islogin()) return
  250. uni.navigateTo({
  251. url: "./broker?type=1"
  252. })
  253. }
  254. if (item.id == 12) {
  255. if (this.$islogin()) return
  256. uni.navigateTo({
  257. url: "./broker?type=2"
  258. })
  259. }
  260. },
  261. toall(type) {
  262. uni.navigateTo({
  263. url: "/pagesA/index/allHouses?type=" + type
  264. })
  265. },
  266. closeguanggao() {
  267. this.showguanggao = false
  268. }
  269. }
  270. }
  271. </script>
  272. <style lang="scss">
  273. page {
  274. background-color: #F6F6F6;
  275. }
  276. .index-index {
  277. position: relative;
  278. z-index: 1;
  279. .guanggao-box {
  280. width: 650rpx;
  281. height: 974rpx;
  282. position: relative;
  283. .close-box {
  284. position: absolute;
  285. top: 24rpx;
  286. right: 24rpx;
  287. z-index: 1;
  288. width: 150rpx;
  289. height: 50rpx;
  290. background: rgba(0, 0, 0, 0.5);
  291. border-radius: 8rpx;
  292. border: 2rpx solid #FFFFFF;
  293. text {
  294. flex: 1;
  295. line-height: 30rpx;
  296. text-align: center;
  297. font-size: 24rpx;
  298. font-family: PingFangSC-Regular, PingFang SC;
  299. font-weight: 400;
  300. color: #FFFFFF;
  301. }
  302. }
  303. }
  304. .list-box {
  305. width: 702rpx;
  306. background: #FFFFFF;
  307. border-radius: 20rpx;
  308. margin: 20rpx auto;
  309. padding: 0 20rpx;
  310. .list-item {
  311. width: 320rpx;
  312. margin-bottom: 24rpx;
  313. .price {
  314. text:first-child {
  315. font-size: 20rpx;
  316. font-family: PingFangSC-Regular, PingFang SC;
  317. font-weight: 400;
  318. color: #999999;
  319. margin-right: 10rpx;
  320. }
  321. text:last-child {
  322. font-size: 32rpx;
  323. font-family: DINAlternate-Bold, DINAlternate;
  324. font-weight: bold;
  325. color: #FF3B30;
  326. }
  327. }
  328. .item-name {
  329. font-size: 28rpx;
  330. font-family: PingFangSC-Regular, PingFang SC;
  331. font-weight: 400;
  332. color: #131415;
  333. margin: 10rpx 0;
  334. }
  335. .item-img {
  336. width: 320rpx;
  337. height: 240rpx;
  338. border-radius: 20rpx;
  339. }
  340. }
  341. .list-title {
  342. padding: 24rpx 0;
  343. .more {
  344. font-size: 24rpx;
  345. font-family: PingFangSC-Regular, PingFang SC;
  346. font-weight: 400;
  347. color: #666666;
  348. }
  349. .title-left {
  350. text {
  351. font-size: 34rpx;
  352. font-family: PingFangSC-Medium, PingFang SC;
  353. font-weight: 500;
  354. color: #131415;
  355. margin-right: 14rpx;
  356. }
  357. image {
  358. width: 26rpx;
  359. height: 32rpx;
  360. }
  361. }
  362. }
  363. }
  364. .tabs-list {
  365. padding: 0 24rpx;
  366. margin-bottom: 20rpx;
  367. }
  368. .swiper-box {
  369. padding: 0 24rpx;
  370. margin-bottom: 20rpx;
  371. }
  372. .search-box {
  373. width: 702rpx;
  374. height: 72rpx;
  375. background: #FFFFFF;
  376. border-radius: 20rpx;
  377. margin: 0 auto 20rpx auto;
  378. padding-left: 24rpx;
  379. .input {
  380. flex: 1;
  381. margin: 0 10rpx;
  382. }
  383. .text {
  384. padding: 0 24rpx;
  385. border-left: 1rpx solid #E5E7ED;
  386. line-height: 36rpx;
  387. font-size: 28rpx;
  388. font-family: PingFangSC-Medium, PingFang SC;
  389. font-weight: 500;
  390. color: #1E7DFF;
  391. }
  392. }
  393. .renqi-box {
  394. width: 750rpx;
  395. height: 56rpx;
  396. background: rgba(256, 256, 256, 0.1);
  397. padding: 0 24rpx;
  398. margin-bottom: 24rpx;
  399. .text {
  400. font-size: 24rpx;
  401. font-family: Helvetica;
  402. color: #FFFFFF;
  403. margin-left: 10rpx;
  404. }
  405. }
  406. .nav-left {
  407. padding: 0 20rpx;
  408. .text {
  409. font-size: 32rpx;
  410. font-family: PingFangSC-Medium, PingFang SC;
  411. font-weight: 500;
  412. color: #FFFFFF;
  413. margin-left: 5rpx;
  414. }
  415. }
  416. .index-bg {
  417. width: 750rpx;
  418. height: 732rpx;
  419. background: linear-gradient(180deg, #1E7DFF 0%, #F6F6F6 100%);
  420. position: absolute;
  421. top: 1;
  422. left: 0;
  423. z-index: -1;
  424. }
  425. }
  426. </style>