pk-list.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <template>
  2. <view class="pk-list">
  3. <view class="index-bg"></view>
  4. <view class="search-box u-flex u-row-between" @click="tosearch">
  5. <u-icon name="search" color="#CCCCCC" size="36"></u-icon>
  6. <input type="text" placeholder="搜索楼盘" class="input" :disabled="true">
  7. <text class="text">搜索</text>
  8. </view>
  9. <view class="pk-box">
  10. <view class="box-title">
  11. 全部楼盘
  12. </view>
  13. <u-checkbox-group active-color="#1E7DFF" shape="circle" @change="changepk">
  14. <view class="pk-item u-flex u-row-between" v-for="(item,index) in list" :key="index">
  15. <image :src="item.logo" class="pk-img" mode="aspectFill"></image>
  16. <view class="pk-center u-flex-1">
  17. <u-icon name="trash" class="del-btn" @click="del(index)"></u-icon>
  18. <view class="item-name u-line-1">
  19. {{item.name}}
  20. </view>
  21. <view class="item-tips">
  22. <text class="u-line-1" style="white-space: nowrap;" v-if="item.house_type">{{item.house_type.join('·')}}·</text>
  23. <text style="white-space: nowrap;">{{item.house_min_area || 0}}-{{item.house_max_area || 0}}㎡</text>
  24. </view>
  25. <view class="item-tips">
  26. {{item.area}}
  27. </view>
  28. <view class="price-box u-flex">
  29. <text>参考均价</text>
  30. <text>{{item.avg_price}}/㎡</text>
  31. </view>
  32. <view class="u-flex label-box">
  33. <text v-for="(a,b) in item.trait" :key="b" v-if="b < 2">{{a}}</text>
  34. </view>
  35. </view>
  36. <u-checkbox :name="item.id" v-model="item.checked"></u-checkbox>
  37. </view>
  38. </u-checkbox-group>
  39. <view style="height: 60vh;" v-if="list.length == 0">
  40. <u-empty text="请点击上方搜索楼盘" mode="list"></u-empty>
  41. </view>
  42. </view>
  43. <view class="" style="height: 170rpx;"></view>
  44. <view class="pk-down-btn u-flex u-row-between">
  45. <text @click="clear">重置</text>
  46. <text @click="toinfo">PK</text>
  47. </view>
  48. </view>
  49. </template>
  50. <script>
  51. export default {
  52. data() {
  53. return {
  54. value: false,
  55. list: [],
  56. ids: []
  57. }
  58. },
  59. onShow() {
  60. this.list = uni.getStorageSync("pklist") || []
  61. this.list.forEach(val => {
  62. val.checked = false
  63. })
  64. this.list = JSON.parse(JSON.stringify(this.list))
  65. },
  66. methods: {
  67. del(index) {
  68. uni.showModal({
  69. content: "确定删除?",
  70. success: (e) => {
  71. if (e.confirm) {
  72. this.$u.toast("删除成功")
  73. this.list.splice(index, 1)
  74. uni.setStorageSync("pklist", this.list)
  75. this.clear()
  76. }
  77. }
  78. })
  79. },
  80. clear() {
  81. this.ids = []
  82. this.list.forEach(val => {
  83. val.checked = false
  84. })
  85. },
  86. changepk(e) {
  87. this.ids = e
  88. },
  89. toinfo() {
  90. if (this.ids.length < 2) {
  91. this.$u.toast("至少选择两项")
  92. return
  93. }
  94. if (this.ids.length > 3) {
  95. this.$u.toast("至多选择三项")
  96. return
  97. }
  98. uni.navigateTo({
  99. url: "./pk-info?ids=" + JSON.stringify(this.ids)
  100. })
  101. },
  102. tosearch() {
  103. uni.navigateTo({
  104. url: "./pk-search"
  105. })
  106. }
  107. }
  108. }
  109. </script>
  110. <style lang="scss">
  111. page {
  112. background-color: #F6F6F6;
  113. }
  114. .pk-list {
  115. position: relative;
  116. z-index: 1;
  117. padding: 1rpx 0;
  118. .pk-down-btn {
  119. width: 750rpx;
  120. height: 166rpx;
  121. background: #FFFFFF;
  122. position: fixed;
  123. bottom: 0;
  124. left: 0;
  125. padding: 0 24rpx 54rpx 24rpx;
  126. z-index: 10;
  127. text:first-child {
  128. width: 338rpx;
  129. line-height: 84rpx;
  130. background: #B2B2B2;
  131. border-radius: 20rpx;
  132. text-align: center;
  133. font-size: 28rpx;
  134. font-family: PingFangSC-Regular, PingFang SC;
  135. font-weight: 400;
  136. color: #FFFFFF;
  137. }
  138. text:last-child {
  139. width: 338rpx;
  140. line-height: 84rpx;
  141. background: #FFA120;
  142. border-radius: 20rpx;
  143. text-align: center;
  144. font-size: 28rpx;
  145. font-family: PingFangSC-Regular, PingFang SC;
  146. font-weight: 400;
  147. color: #FFFFFF;
  148. }
  149. }
  150. .pk-box {
  151. width: 702rpx;
  152. // height: 1760rpx;
  153. background: #FFFFFF;
  154. border-radius: 20rpx;
  155. margin: 0 auto 20rpx auto;
  156. padding: 0 20rpx;
  157. .pk-item {
  158. margin-bottom: 32rpx;
  159. position: relative;
  160. .del-btn {
  161. position: absolute;
  162. top: 20rpx;
  163. right: 0;
  164. z-index: 10;
  165. }
  166. .pk-img {
  167. width: 280rpx;
  168. height: 240rpx;
  169. border-radius: 20rpx;
  170. margin-right: 20rpx;
  171. }
  172. .pk-center {
  173. .label-box {
  174. text {
  175. margin-right: 10rpx;
  176. padding: 0 12rpx;
  177. line-height: 40rpx;
  178. height: 40rpx;
  179. background: #F5F5F5;
  180. border-radius: 8rpx;
  181. font-size: 18rpx;
  182. font-family: PingFangSC-Regular, PingFang SC;
  183. font-weight: 400;
  184. color: #999999;
  185. }
  186. }
  187. .price-box {
  188. margin-bottom: 8rpx;
  189. text:first-child {
  190. font-size: 20rpx;
  191. font-family: PingFangSC-Regular, PingFang SC;
  192. font-weight: 400;
  193. color: #999999;
  194. margin-right: 8rpx;
  195. }
  196. text:last-child {
  197. font-size: 32rpx;
  198. font-family: DINAlternate-Bold, DINAlternate;
  199. font-weight: bold;
  200. color: #FF3B30;
  201. }
  202. }
  203. .item-name {
  204. font-size: 28rpx;
  205. font-family: PingFangSC-Regular, PingFang SC;
  206. font-weight: 400;
  207. color: #131415;
  208. margin: 10rpx 0;
  209. }
  210. .item-tips {
  211. font-size: 18rpx;
  212. font-family: PingFangSC-Regular, PingFang SC;
  213. font-weight: 400;
  214. color: #999999;
  215. margin-bottom: 12rpx;
  216. }
  217. }
  218. }
  219. .box-title {
  220. padding: 24rpx 0;
  221. font-size: 34rpx;
  222. font-family: PingFangSC-Medium, PingFang SC;
  223. font-weight: 500;
  224. color: #131415;
  225. }
  226. }
  227. .search-box {
  228. width: 702rpx;
  229. height: 72rpx;
  230. background: #FFFFFF;
  231. border-radius: 20rpx;
  232. margin: 24rpx auto;
  233. padding-left: 24rpx;
  234. .input {
  235. flex: 1;
  236. margin: 0 10rpx;
  237. }
  238. .text {
  239. padding: 0 24rpx;
  240. border-left: 1rpx solid #E5E7ED;
  241. line-height: 36rpx;
  242. font-size: 28rpx;
  243. font-family: PingFangSC-Medium, PingFang SC;
  244. font-weight: 500;
  245. color: #1E7DFF;
  246. }
  247. }
  248. .index-bg {
  249. position: absolute;
  250. top: 0;
  251. left: 0;
  252. width: 750rpx;
  253. height: 556rpx;
  254. background: linear-gradient(180deg, #1E7DFF 0%, #F6F6F6 100%);
  255. z-index: -1;
  256. }
  257. }
  258. </style>