index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  1. <template>
  2. <view class="index-index">
  3. <view class="index-bg"></view>
  4. <u-navbar 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" @click="tochangecity">
  6. <u-icon name="map-fill" size="34" color="#fff"></u-icon>
  7. <text class="text">{{defaultcity.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" :userinfo="userinfo" @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. <view class="item-img">
  38. <image :src="item.logo" class="logo" mode="aspectFill"></image>
  39. <view class="logo-look u-flex">
  40. <u-icon name="eye-fill" size="28" color="#fff"></u-icon>
  41. <text class="text">{{getview(item.page_view)}}</text>
  42. </view>
  43. </view>
  44. <view class="item-name u-line-1">
  45. {{item.name}}
  46. </view>
  47. <view class="u-flex price">
  48. <text>参考均价</text>
  49. <text v-if="Number(item.avg_price)">{{item.avg_price}}元/㎡</text>
  50. <text v-else>{{item.avg_price}}</text>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. <view class="list-box" v-if="tuijianlist.length > 0">
  56. <view class="list-title u-flex u-row-between">
  57. <view class="u-flex title-left">
  58. <text>推荐楼盘</text>
  59. </view>
  60. <view class="more" @click="toall(5)">
  61. 查看更多
  62. </view>
  63. </view>
  64. <view class="u-flex u-row-between u-flex-wrap">
  65. <view class="list-item" v-for="(item,index) in tuijianlist" :key="index" @click="toinfo(item)">
  66. <view class="item-img">
  67. <image :src="item.logo" class="logo" mode="aspectFill"></image>
  68. <view class="logo-look u-flex">
  69. <u-icon name="eye-fill" size="28" color="#fff"></u-icon>
  70. <text class="text">{{getview(item.page_view)}}</text>
  71. </view>
  72. </view>
  73. <view class="item-name u-line-1">
  74. {{item.name}}
  75. </view>
  76. <view class="u-flex price">
  77. <text>参考均价</text>
  78. <text v-if="Number(item.avg_price)">{{item.avg_price}}元/㎡</text>
  79. <text v-else>{{item.avg_price}}</text>
  80. </view>
  81. </view>
  82. </view>
  83. </view>
  84. <u-popup v-model="showguanggao" mode="center" border-radius="20" background="rgba(0,0,0,0)">
  85. <view class="guanggao-box">
  86. <u-swiper :list="guanggaolist" bgColor="rgba(0,0,0,0)" name="logo" height="974" border-radius="20" :autoplay="false"></u-swiper>
  87. <view class="close-box u-flex">
  88. <text style="border-right: 1rpx solid #fff;">{{s}}s</text>
  89. <text @click="closeguanggao">关闭</text>
  90. </view>
  91. </view>
  92. </u-popup>
  93. <u-popup v-model="showgzh" mode="center" border-radius="20">
  94. <view style="font-size: 0;">
  95. <image style="width: 650rpx;height: 650rpx;" :src="config.service_code" mode=""></image>
  96. </view>
  97. </u-popup>
  98. <u-popup v-model="showcity" mode="center" border-radius="20" :maskCloseAble="false">
  99. <view class="changecity-popup u-flex-col u-col-center u-row-center">
  100. <view class="city-bg"></view>
  101. <image src="../../static/images/index-img2.png" class="city-img" mode=""></image>
  102. <view class="city-tips u-flex-col u-col-center">
  103. <text>您当前所在定位城市为:</text>
  104. <text>【{{citydata.city}}】</text>
  105. <text>是否切换至当前定位城市?</text>
  106. </view>
  107. <view class="city-btn u-flex u-row-between">
  108. <text @click="notchangecity">否</text>
  109. <text @click="changecity">是</text>
  110. </view>
  111. </view>
  112. </u-popup>
  113. <u-popup v-model="showcitynot" mode="center" border-radius="20" :maskCloseAble="false" :closeable="true">
  114. <view class="changecity-popup u-flex-col u-col-center u-row-center">
  115. <view class="city-bg"></view>
  116. <image src="../../static/images/index-img2.png" class="city-img" mode=""></image>
  117. <view class="city-tips u-flex-col u-col-center" style="width: 352rpx;">
  118. <text>此城市末开放数据</text>
  119. <text>己为你自动切换</text>
  120. <text>【{{notcityname}}】</text>
  121. </view>
  122. </view>
  123. </u-popup>
  124. <gf-tabbar></gf-tabbar>
  125. </view>
  126. </template>
  127. <script>
  128. import {
  129. mapGetters,
  130. mapState
  131. } from 'vuex'
  132. export default {
  133. data() {
  134. return {
  135. swiperlisi: [],
  136. tabslist: [],
  137. showguanggao: false,
  138. guanggaolist: [],
  139. s: 5,
  140. time: null,
  141. showgzh: false,
  142. popularity: 0,
  143. dijialist: [],
  144. tuijianlist: [],
  145. showcity: false,
  146. showcitynot: false,
  147. notcityname: '',
  148. userinfo: {
  149. certification_type: 0
  150. }
  151. }
  152. },
  153. onLoad() {
  154. this.getbanner()
  155. this.getguanggao()
  156. if (this.defaultcity.city_id) {
  157. this.getlist()
  158. }
  159. },
  160. onShow() {
  161. this.getpopularity()
  162. if ([0, 1, '0', '1'].includes(this.config.intermediary_show)) {
  163. if (uni.getStorageSync("token")) {
  164. this.getuser()
  165. } else {
  166. this.userinfo = {
  167. certification_type: 0
  168. }
  169. this.gettabs()
  170. }
  171. }
  172. },
  173. computed: {
  174. ...mapGetters(['config']),
  175. ...mapState(['defaultcity', 'citydata'])
  176. },
  177. watch: {
  178. citydata: {
  179. deep: true,
  180. handler(val) {
  181. if (uni.getStorageSync("city") && uni.getStorageSync("city").city_id) {
  182. } else {
  183. if (val.city != this.defaultcity.city) {
  184. this.showcity = true
  185. }
  186. }
  187. }
  188. },
  189. defaultcity: {
  190. deep: true,
  191. handler(val) {
  192. if (val.city_id) {
  193. this.getlist()
  194. }
  195. }
  196. },
  197. config: {
  198. deep: true,
  199. handler(val) {
  200. if (uni.getStorageSync("token")) {
  201. this.getuser()
  202. } else {
  203. this.userinfo = {
  204. certification_type: 0
  205. }
  206. this.gettabs()
  207. }
  208. }
  209. }
  210. },
  211. methods: {
  212. getview(count) {
  213. if (count > 10000) {
  214. return Number((count / 10000).toFixed(2)) + 'w'
  215. }
  216. if (count > 1000) {
  217. return Number((count / 1000).toFixed(2)) + 'k'
  218. }
  219. return count
  220. },
  221. getuser() {
  222. this.$u.post('/api/Member/member_info').then(res => {
  223. this.userinfo = res.data
  224. this.gettabs()
  225. })
  226. },
  227. tochangecity() {
  228. uni.navigateTo({
  229. url: "/pages/index/change-city",
  230. events: {
  231. changecity: (res) => {
  232. this.$store.commit('setdefaultcity', {
  233. city: res.shi.name,
  234. userLocation: `${res.shi.lng},${res.shi.lat}`,
  235. city_id: res.shi.id,
  236. province_id: res.sheng.id
  237. })
  238. this.setcity()
  239. }
  240. }
  241. })
  242. },
  243. notchangecity() {
  244. uni.showLoading({
  245. mask: true,
  246. title: "请稍后"
  247. })
  248. this.$u.post('/api/Index/location', {
  249. longitude: '120.699279',
  250. latitude: '27.993849',
  251. city_name: '温州市'
  252. }).then(res => {
  253. if (res.code == 1) {
  254. this.showcity = false
  255. this.$store.commit('setdefaultcity', {
  256. city: '温州市',
  257. userLocation: '120.699279,27.993849',
  258. city_id: res.data.city_id,
  259. province_id: res.data.province_id
  260. })
  261. } else {
  262. this.showcity = false
  263. this.showcitynot = true
  264. this.notcityname = res.data.city_name
  265. this.$store.commit('setdefaultcity', {
  266. city: res.data.city_name,
  267. userLocation: `${res.data.longitude},${res.data.latitude}`,
  268. city_id: res.data.city_id,
  269. province_id: res.data.province_id
  270. })
  271. this.setcity()
  272. }
  273. })
  274. },
  275. changecity() {
  276. uni.showLoading({
  277. mask: true,
  278. title: "请稍后"
  279. })
  280. this.$u.post('/api/Index/location', {
  281. longitude: this.citydata.userLocation.split(',')[0],
  282. latitude: this.citydata.userLocation.split(',')[1],
  283. city_name: this.citydata.city
  284. }).then(res => {
  285. if (res.code == 1) {
  286. this.showcity = false
  287. this.$store.commit('setdefaultcity', {
  288. city: this.citydata.city,
  289. userLocation: this.citydata.userLocation,
  290. city_id: res.data.city_id,
  291. province_id: res.data.province_id
  292. })
  293. } else {
  294. this.showcity = false
  295. this.showcitynot = true
  296. this.notcityname = res.data.city_name
  297. this.$store.commit('setdefaultcity', {
  298. city: res.data.city_name,
  299. userLocation: `${res.data.longitude},${res.data.latitude}`,
  300. city_id: res.data.city_id,
  301. province_id: res.data.province_id
  302. })
  303. this.setcity()
  304. }
  305. })
  306. },
  307. setcity() {
  308. this.$u.post('/api/Index/location', {
  309. longitude: this.defaultcity.userLocation.split(',')[0],
  310. latitude: this.defaultcity.userLocation.split(',')[1],
  311. city_name: this.defaultcity.city
  312. })
  313. },
  314. getlist() {
  315. this.$u.get('/api/Index/property_list', {
  316. page: 1,
  317. page_num: 10,
  318. type: 1,
  319. city_id: this.defaultcity.city_id
  320. }).then(res => {
  321. this.dijialist = res.data
  322. })
  323. this.$u.get('/api/Index/property_list', {
  324. page: 1,
  325. page_num: 10,
  326. type: 5,
  327. city_id: this.defaultcity.city_id
  328. }).then(res => {
  329. this.tuijianlist = res.data
  330. })
  331. },
  332. daojishi() {
  333. this.s = 5
  334. this.time = setInterval(() => {
  335. if (this.s == 0) {
  336. this.showguanggao = false
  337. clearInterval(this.time)
  338. } else {
  339. this.s--
  340. }
  341. }, 1000)
  342. },
  343. getguanggao() {
  344. this.$u.post('/api/Index/adv_list').then(res => {
  345. if(res.data.length > 0){
  346. this.guanggaolist = res.data
  347. this.showguanggao = true
  348. this.daojishi()
  349. }
  350. })
  351. },
  352. gettabs() {
  353. this.$u.post("/api/Index/diamond_list").then(res => {
  354. this.tabslist = []
  355. res.data.forEach(val => {
  356. if (val.id == 11 && this.config.intermediary_show == 1 && (this.userinfo.certification_type == 1 || this.userinfo.certification_type == 0)) {
  357. this.tabslist.push(val)
  358. } else if (val.id == 12 && this.config.people_show == 1 && (this.userinfo.certification_type == 2 || this.userinfo.certification_type == 0)) {
  359. this.tabslist.push(val)
  360. } else if (val.id != 11 && val.id != 12) {
  361. this.tabslist.push(val)
  362. }
  363. })
  364. console.log(this.tabslist);
  365. // console.log(this.userinfo.certification_type);
  366. // console.log(JSON.parse(JSON.stringify(this.tabslist)));
  367. })
  368. },
  369. tobanner(e) {
  370. if (this.swiperlisi[e].url) {
  371. uni.navigateTo({
  372. url: this.swiperlisi[e].url
  373. })
  374. }
  375. },
  376. getbanner() {
  377. this.$u.post('/api/Index/banner').then(res => {
  378. this.swiperlisi = res.data
  379. })
  380. },
  381. getpopularity() {
  382. this.$u.post('/api/Index/add_popularity').then(res => {
  383. this.$store.commit('setpopularity', res.data)
  384. this.popularity = res.data
  385. })
  386. },
  387. tosearch() {
  388. uni.navigateTo({
  389. url: "./search"
  390. })
  391. },
  392. toinfo(item) {
  393. uni.navigateTo({
  394. url: "./houses-info?id=" + item.id+ '&name=' + item.name
  395. })
  396. },
  397. tourl(item) {
  398. if (item.id == 1) {
  399. uni.navigateTo({
  400. url: "/pagesA/index/newHouses?title=" + item.title
  401. })
  402. }
  403. if (item.id == 2) {
  404. uni.navigateTo({
  405. url: "/pagesA/index/allHouses?type=3&title=" + item.title
  406. })
  407. }
  408. if (item.id == 3) {
  409. uni.navigateTo({
  410. url: "/pagesA/index/allHouses?type=4&title=" + item.title
  411. })
  412. }
  413. if (item.id == 4) {
  414. uni.navigateTo({
  415. url: "/pagesA/index/dataCenter?title=" + item.title
  416. })
  417. }
  418. if (item.id == 5) {
  419. this.showgzh = true
  420. }
  421. if (item.id == 6) {
  422. uni.navigateTo({
  423. url: "./fuli?title=" + item.title
  424. })
  425. }
  426. if (item.id == 7) {
  427. uni.navigateTo({
  428. url: "./news?title=" + item.title
  429. })
  430. }
  431. if (item.id == 8) {
  432. uni.navigateTo({
  433. url: "/pagesA/index/counter?title=" + item.title
  434. })
  435. }
  436. if (item.id == 9) {
  437. uni.navigateTo({
  438. url: "/pagesA/index/allHouses?title=" + item.title
  439. })
  440. }
  441. if (item.id == 10) {
  442. uni.navigateTo({
  443. url: "./pk-list?title=" + item.title
  444. })
  445. }
  446. if (item.id == 11) {
  447. if (this.$islogin()) return
  448. uni.navigateTo({
  449. url: "./broker?type=1&title=" + item.title
  450. })
  451. }
  452. if (item.id == 12) {
  453. if (this.$islogin()) return
  454. uni.navigateTo({
  455. url: "./broker?type=2&title=" + item.title
  456. })
  457. }
  458. },
  459. toall(type) {
  460. uni.navigateTo({
  461. url: "/pagesA/index/allHouses?type=" + type
  462. })
  463. },
  464. closeguanggao() {
  465. this.showguanggao = false
  466. }
  467. }
  468. }
  469. </script>
  470. <style lang="scss">
  471. page {
  472. background-color: #F6F6F6;
  473. }
  474. .index-index {
  475. position: relative;
  476. z-index: 1;
  477. .changecity-popup {
  478. width: 602rpx;
  479. height: 590rpx;
  480. position: relative;
  481. .city-btn {
  482. width: 100%;
  483. padding: 0 40rpx;
  484. text:first-child {
  485. width: 250rpx;
  486. line-height: 88rpx;
  487. background: #CCCCCC;
  488. border-radius: 20rpx;
  489. text-align: center;
  490. font-size: 28rpx;
  491. font-family: PingFangSC-Medium, PingFang SC;
  492. font-weight: 500;
  493. color: #FFFFFF;
  494. }
  495. text:last-child {
  496. width: 250rpx;
  497. line-height: 88rpx;
  498. background: #1F7EFF;
  499. border-radius: 20rpx;
  500. text-align: center;
  501. font-size: 28rpx;
  502. font-family: PingFangSC-Medium, PingFang SC;
  503. font-weight: 500;
  504. color: #FFFFFF;
  505. }
  506. }
  507. .city-tips {
  508. width: 480rpx;
  509. font-size: 32rpx;
  510. font-family: PingFangSC-Regular, PingFang SC;
  511. font-weight: 400;
  512. color: #666666;
  513. margin-bottom: 56rpx;
  514. text-align: center;
  515. }
  516. .city-img {
  517. width: 198rpx;
  518. height: 198rpx;
  519. margin-bottom: 26rpx;
  520. }
  521. .city-bg {
  522. width: 602rpx;
  523. height: 442rpx;
  524. background: linear-gradient(180deg, #1EFF7B 0%, rgba(255, 255, 255, 0) 100%);
  525. opacity: 0.2;
  526. position: absolute;
  527. top: 0;
  528. left: 0;
  529. }
  530. }
  531. .guanggao-box {
  532. width: 650rpx;
  533. height: 974rpx;
  534. position: relative;
  535. .close-box {
  536. position: absolute;
  537. top: 24rpx;
  538. right: 24rpx;
  539. z-index: 1;
  540. width: 150rpx;
  541. height: 50rpx;
  542. background: rgba(0, 0, 0, 0.5);
  543. border-radius: 8rpx;
  544. border: 2rpx solid #FFFFFF;
  545. text {
  546. flex: 1;
  547. line-height: 30rpx;
  548. text-align: center;
  549. font-size: 24rpx;
  550. font-family: PingFangSC-Regular, PingFang SC;
  551. font-weight: 400;
  552. color: #FFFFFF;
  553. }
  554. }
  555. }
  556. .list-box {
  557. width: 702rpx;
  558. background: #FFFFFF;
  559. border-radius: 20rpx;
  560. margin: 20rpx auto;
  561. padding: 0 20rpx;
  562. .list-item {
  563. width: 320rpx;
  564. margin-bottom: 24rpx;
  565. .price {
  566. text:first-child {
  567. font-size: 20rpx;
  568. font-family: PingFangSC-Regular, PingFang SC;
  569. font-weight: 400;
  570. color: #999999;
  571. margin-right: 10rpx;
  572. }
  573. text:last-child {
  574. font-size: 32rpx;
  575. font-family: DINAlternate-Bold, DINAlternate;
  576. font-weight: bold;
  577. color: #FF3B30;
  578. }
  579. }
  580. .item-name {
  581. font-size: 28rpx;
  582. font-family: PingFangSC-Regular, PingFang SC;
  583. font-weight: 400;
  584. color: #131415;
  585. margin: 10rpx 0;
  586. }
  587. .item-img {
  588. width: 320rpx;
  589. height: 240rpx;
  590. border-radius: 20rpx;
  591. position: relative;
  592. overflow: hidden;
  593. .logo-look {
  594. position: absolute;
  595. bottom: 0;
  596. left: 0;
  597. width: 320rpx;
  598. height: 52rpx;
  599. background: rgba(0, 0, 0, 0.3);
  600. padding: 0 20rpx;
  601. .text {
  602. font-size: 20rpx;
  603. font-family: SourceHanSansSC-Heavy, SourceHanSansSC;
  604. font-weight: 800;
  605. color: rgba(256, 256, 256, 0.7);
  606. margin-left: 12rpx;
  607. }
  608. }
  609. .logo {
  610. width: 320rpx;
  611. height: 240rpx;
  612. }
  613. }
  614. }
  615. .list-title {
  616. padding: 24rpx 0;
  617. .more {
  618. font-size: 24rpx;
  619. font-family: PingFangSC-Regular, PingFang SC;
  620. font-weight: 400;
  621. color: #666666;
  622. }
  623. .title-left {
  624. text {
  625. font-size: 34rpx;
  626. font-family: PingFangSC-Medium, PingFang SC;
  627. font-weight: 500;
  628. color: #131415;
  629. margin-right: 14rpx;
  630. }
  631. image {
  632. width: 26rpx;
  633. height: 32rpx;
  634. }
  635. }
  636. }
  637. }
  638. .tabs-list {
  639. padding: 0 24rpx;
  640. margin-bottom: 20rpx;
  641. }
  642. .swiper-box {
  643. padding: 0 24rpx;
  644. margin-bottom: 20rpx;
  645. }
  646. .search-box {
  647. width: 702rpx;
  648. height: 72rpx;
  649. background: #FFFFFF;
  650. border-radius: 20rpx;
  651. margin: 0 auto 20rpx auto;
  652. padding-left: 24rpx;
  653. .input {
  654. flex: 1;
  655. margin: 0 10rpx;
  656. }
  657. .text {
  658. padding: 0 24rpx;
  659. border-left: 1rpx solid #E5E7ED;
  660. line-height: 36rpx;
  661. font-size: 28rpx;
  662. font-family: PingFangSC-Medium, PingFang SC;
  663. font-weight: 500;
  664. color: #1E7DFF;
  665. }
  666. }
  667. .renqi-box {
  668. width: 750rpx;
  669. height: 56rpx;
  670. background: rgba(256, 256, 256, 0.1);
  671. padding: 0 24rpx;
  672. margin-bottom: 24rpx;
  673. .text {
  674. font-size: 24rpx;
  675. font-family: Helvetica;
  676. color: #FFFFFF;
  677. margin-left: 10rpx;
  678. }
  679. }
  680. .nav-left {
  681. padding: 0 20rpx;
  682. .text {
  683. font-size: 32rpx;
  684. font-family: PingFangSC-Medium, PingFang SC;
  685. font-weight: 500;
  686. color: #FFFFFF;
  687. margin-left: 5rpx;
  688. }
  689. }
  690. .index-bg {
  691. width: 750rpx;
  692. height: 732rpx;
  693. background: linear-gradient(180deg, #1E7DFF 0%, #F6F6F6 100%);
  694. position: absolute;
  695. top: 1;
  696. left: 0;
  697. z-index: -1;
  698. }
  699. }
  700. </style>