newHouses.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <view class="newHouses">
  3. <view class="newHouses-bg"></view>
  4. <view class="renqi-box u-flex">
  5. <u-icon name="heart-fill" color="#fff" size="26"></u-icon>
  6. <text class="text">累计人气值 {{popularity}}</text>
  7. </view>
  8. <view class="swiper-box">
  9. <u-swiper :list="swiperlisi" height="376" name="logo" @click="tobanner" border-radius="20"></u-swiper>
  10. </view>
  11. <view class="newHouses-list">
  12. <view class="newHouses-title u-flex u-row-between">
  13. <text>全部楼盘</text>
  14. <view class="u-flex" @click="opensearch">
  15. <image src="../../static/images/shaixuan.png" mode=""></image>
  16. <text style="font-size: 26rpx;font-weight: 500;color: #1677FF;margin-left: 10rpx;">区域搜索</text>
  17. </view>
  18. </view>
  19. <view class="u-flex u-row-between u-flex-wrap">
  20. <view v-for="(item,index) in list" :key="index">
  21. <gf-goods :data="item"></gf-goods>
  22. </view>
  23. </view>
  24. </view>
  25. <gf-search ref="search" @shaixuan="shaixuan"></gf-search>
  26. </view>
  27. </template>
  28. <script>
  29. import {
  30. mapState,
  31. mapActions,
  32. mapMutations,
  33. mapGetters
  34. } from 'vuex'
  35. export default {
  36. data() {
  37. return {
  38. swiperlisi: [],
  39. page: 1,
  40. list: [],
  41. params: {},
  42. title: ''
  43. }
  44. },
  45. onLoad(option) {
  46. this.title = option.title
  47. this.getlist()
  48. this.getbanner()
  49. },
  50. onShow() {
  51. if(this.title){
  52. uni.setNavigationBarTitle({
  53. title: this.title
  54. })
  55. }
  56. },
  57. computed: {
  58. ...mapState(["popularity", 'defaultcity']),
  59. },
  60. onReachBottom() {
  61. if (this.list.length % 20 == 0) {
  62. this.page++
  63. this.getlist()
  64. }
  65. },
  66. methods: {
  67. shaixuan(e) {
  68. this.params = e
  69. this.page = 1
  70. this.list = []
  71. this.getlist()
  72. },
  73. tobanner(e) {
  74. if (this.swiperlisi[e].url) {
  75. uni.navigateTo({
  76. url: this.swiperlisi[e].url
  77. })
  78. }
  79. },
  80. getbanner() {
  81. this.$u.post('/api/Index/banner', {
  82. location: 2
  83. }).then(res => {
  84. this.swiperlisi = res.data
  85. })
  86. },
  87. getlist() {
  88. this.$u.post('/api/Index/property_list', {
  89. page: this.page,
  90. page_num: 20,
  91. type: 2,
  92. ...this.params,
  93. city_id: this.params.area_id ? '' : this.defaultcity.city_id
  94. }).then(res => {
  95. this.list = this.list.concat(res.data)
  96. })
  97. },
  98. opensearch() {
  99. this.$refs.search.show = true
  100. }
  101. }
  102. }
  103. </script>
  104. <style lang="scss">
  105. page {
  106. background-color: #F6F6F6;
  107. }
  108. .newHouses {
  109. position: relative;
  110. z-index: 1;
  111. .newHouses-list {
  112. width: 702rpx;
  113. background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 38%, rgba(255, 255, 255, 0) 100%);
  114. border-radius: 20rpx;
  115. margin: 20rpx auto;
  116. padding: 0 20rpx;
  117. .newHouses-title {
  118. padding: 20rpx 0;
  119. text {
  120. font-size: 34rpx;
  121. font-family: PingFangSC-Medium, PingFang SC;
  122. font-weight: 500;
  123. color: #131415;
  124. }
  125. image {
  126. width: 32rpx;
  127. height: 32rpx;
  128. }
  129. }
  130. }
  131. .swiper-box {
  132. padding: 0 24rpx;
  133. margin-bottom: 20rpx;
  134. }
  135. .renqi-box {
  136. width: 750rpx;
  137. height: 56rpx;
  138. background: rgba(256, 256, 256, 0.1);
  139. padding: 0 24rpx;
  140. margin-bottom: 24rpx;
  141. .text {
  142. font-size: 24rpx;
  143. font-family: Helvetica;
  144. color: #FFFFFF;
  145. margin-left: 10rpx;
  146. }
  147. }
  148. .newHouses-bg {
  149. position: absolute;
  150. top: 0;
  151. left: 0;
  152. width: 750rpx;
  153. height: 556rpx;
  154. background: linear-gradient(180deg, #1E7DFF 0%, #F6F6F6 100%);
  155. z-index: -1;
  156. }
  157. }
  158. </style>