gf-goods.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. <template>
  2. <view class="gf-goods">
  3. <view :class="type == 1 ? 'row-item u-flex' : 'col-item'" @click="toinfo">
  4. <view class="item-img">
  5. <image :src="data.logo" class="logo" mode="aspectFill"></image>
  6. <view class="logo-look u-flex">
  7. <u-icon name="eye-fill" size="28" color="#fff"></u-icon>
  8. <text class="text">{{getview(data.page_view || 0)}}</text>
  9. </view>
  10. </view>
  11. <view class="item-box">
  12. <view class="item-name u-line-1">
  13. {{data.name}}
  14. </view>
  15. <view class="item-tips u-flex">
  16. <text class="u-line-1" style="white-space: nowrap;" v-if="data.house_type">{{data.house_type.join('·')}}·</text>
  17. <text style="white-space: nowrap;">{{data.house_min_area || 0}}-{{data.house_max_area || 0}}㎡</text>
  18. </view>
  19. <view class="item-tips">
  20. {{data.area}}
  21. </view>
  22. <view class="price-box u-flex">
  23. <text>参考均价</text>
  24. <text v-if="Number(data.avg_price)">{{data.avg_price}}元/㎡</text>
  25. <text v-else>{{data.avg_price}}</text>
  26. </view>
  27. <view class="u-flex label-box u-flex-wrap">
  28. <text v-for="(item,index) in data.trait" :key="index" v-if="index < 2" :style="{color:color[index % 5],border:`2rpx solid ${color[index % 4]}`}">{{item}}</text>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. props: {
  37. // b布局1独占一行2一行两个
  38. type: {
  39. type: [Number, String],
  40. default: 2
  41. },
  42. data: {
  43. type: Object,
  44. default () {
  45. return {
  46. area: "鹿城区",
  47. avg_price: "27412",
  48. house_max_area: 212.06,
  49. house_min_area: 116.8,
  50. house_type: ["三房两厅两卫", "四房两厅三卫", "四房两厅两卫", "四房两厅四卫"],
  51. id: 1,
  52. logo: "https://shujuhuifu.oss-cn-beijing.aliyuncs.com/af20f05b337db210/1c354234c4e49d6c.jpg",
  53. name: "国鸿中心",
  54. trait: ["超级综合体", "一线江景", "约350米摩天超高层", "内外双公园"]
  55. }
  56. }
  57. }
  58. },
  59. data() {
  60. return {
  61. }
  62. },
  63. onLoad() {
  64. },
  65. computed: {
  66. color() {
  67. return this.$color
  68. }
  69. },
  70. methods: {
  71. getview(count) {
  72. if (count > 10000) {
  73. return Number((count / 10000).toFixed(2)) + 'w'
  74. }
  75. if (count > 1000) {
  76. return Number((count / 1000).toFixed(2)) + 'k'
  77. }
  78. return count
  79. },
  80. toinfo() {
  81. uni.navigateTo({
  82. url: "/pages/index/houses-info?id=" + this.data.id
  83. })
  84. }
  85. }
  86. }
  87. </script>
  88. <style lang="scss">
  89. .gf-goods {
  90. .row-item {
  91. margin-bottom: 32rpx;
  92. .item-img {
  93. width: 280rpx;
  94. height: 240rpx;
  95. margin-right: 20rpx;
  96. border-radius: 20rpx;
  97. position: relative;
  98. overflow: hidden;
  99. .logo-look {
  100. position: absolute;
  101. bottom: 0;
  102. left: 0;
  103. width: 280rpx;
  104. height: 52rpx;
  105. background: rgba(0, 0, 0, 0.3);
  106. padding: 0 20rpx;
  107. .text {
  108. font-size: 20rpx;
  109. font-family: SourceHanSansSC-Heavy, SourceHanSansSC;
  110. font-weight: 800;
  111. color: rgba(256, 256, 256, 0.7);
  112. margin-left: 12rpx;
  113. }
  114. }
  115. .logo {
  116. width: 280rpx;
  117. height: 240rpx;
  118. }
  119. }
  120. .item-box {
  121. flex: 1;
  122. min-width: 1rpx;
  123. .label-box {
  124. text {
  125. margin-right: 10rpx;
  126. padding: 0 12rpx;
  127. line-height: 40rpx;
  128. height: 40rpx;
  129. background: #F5F5F5;
  130. border-radius: 8rpx;
  131. font-size: 18rpx;
  132. font-family: PingFangSC-Regular, PingFang SC;
  133. font-weight: 400;
  134. color: #999999;
  135. white-space: nowrap;
  136. }
  137. }
  138. .price-box {
  139. margin-bottom: 8rpx;
  140. text:first-child {
  141. font-size: 20rpx;
  142. font-family: PingFangSC-Regular, PingFang SC;
  143. font-weight: 400;
  144. color: #999999;
  145. margin-right: 8rpx;
  146. }
  147. text:last-child {
  148. font-size: 32rpx;
  149. font-family: DINAlternate-Bold, DINAlternate;
  150. font-weight: bold;
  151. color: #FF3B30;
  152. }
  153. }
  154. .item-name {
  155. font-size: 28rpx;
  156. font-family: PingFangSC-Regular, PingFang SC;
  157. font-weight: 400;
  158. color: #131415;
  159. margin: 10rpx 0;
  160. }
  161. .item-tips {
  162. font-size: 18rpx;
  163. font-family: PingFangSC-Regular, PingFang SC;
  164. font-weight: 400;
  165. color: #999999;
  166. margin-bottom: 12rpx;
  167. }
  168. }
  169. }
  170. .col-item {
  171. width: 320rpx;
  172. background: #F8FBFF;
  173. border-radius: 20rpx;
  174. margin-bottom: 20rpx;
  175. padding-bottom: 24rpx;
  176. .item-box {
  177. padding: 0 20rpx;
  178. .label-box {
  179. text {
  180. margin-right: 10rpx;
  181. padding: 0 12rpx;
  182. line-height: 40rpx;
  183. height: 40rpx;
  184. background: #F5F5F5;
  185. border-radius: 8rpx;
  186. font-size: 18rpx;
  187. font-family: PingFangSC-Regular, PingFang SC;
  188. font-weight: 400;
  189. color: #999999;
  190. }
  191. }
  192. .price-box {
  193. margin-bottom: 8rpx;
  194. text:first-child {
  195. font-size: 20rpx;
  196. font-family: PingFangSC-Regular, PingFang SC;
  197. font-weight: 400;
  198. color: #999999;
  199. margin-right: 8rpx;
  200. }
  201. text:last-child {
  202. font-size: 32rpx;
  203. font-family: DINAlternate-Bold, DINAlternate;
  204. font-weight: bold;
  205. color: #FF3B30;
  206. }
  207. }
  208. .item-name {
  209. font-size: 28rpx;
  210. font-family: PingFangSC-Regular, PingFang SC;
  211. font-weight: 400;
  212. color: #131415;
  213. margin: 10rpx 0;
  214. }
  215. .item-tips {
  216. font-size: 18rpx;
  217. font-family: PingFangSC-Regular, PingFang SC;
  218. font-weight: 400;
  219. color: #999999;
  220. margin-bottom: 12rpx;
  221. }
  222. }
  223. .item-img {
  224. width: 320rpx;
  225. height: 240rpx;
  226. border-radius: 20rpx;
  227. overflow: hidden;
  228. position: relative;
  229. .logo-look {
  230. position: absolute;
  231. bottom: 0;
  232. left: 0;
  233. width: 320rpx;
  234. height: 52rpx;
  235. background: rgba(0, 0, 0, 0.3);
  236. padding: 0 20rpx;
  237. .text {
  238. font-size: 20rpx;
  239. font-family: SourceHanSansSC-Heavy, SourceHanSansSC;
  240. font-weight: 800;
  241. color: rgba(256, 256, 256, 0.7);
  242. margin-left: 12rpx;
  243. }
  244. }
  245. .logo {
  246. width: 320rpx;
  247. height: 240rpx;
  248. }
  249. }
  250. }
  251. }
  252. </style>