allHouses.vue 3.4 KB

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