properties.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <view class="properties_list">
  3. <view class="item main-left" v-for="(item,index) in 4">
  4. <view class="left">
  5. <image src="https://t17.9026.com/web/statics/image/sale/1.png" mode=""></image>
  6. </view>
  7. <view class="main-between-y right ">
  8. <view class="title">建业·凯旋广场</view>
  9. <view class="addr">成都市武侯区天府一街5号</view>
  10. <view class="content">洛阳建业·凯旋广场由建业(住宅)集团投资,洛阳建业凯旋置地有限公司开发...</view>
  11. </view>
  12. <image class="bg" src="https://t17.9026.com/web/statics/image/sale/properties_gradual.png" mode=""></image>
  13. </view>
  14. <view style="100rpx"></view>
  15. <navigator url="/pages/sale/properties/addProperties" hover-class="navigator-hover">
  16. <button class="addPro" type="default">添加楼盘</button>
  17. </navigator>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. };
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. .properties_list {
  30. background-color: #F8F8F8;
  31. .item {
  32. font-family: PingFang SC;
  33. margin: 25rpx auto;
  34. width: 678rpx;
  35. height: 206rpx;
  36. background: #FFFFFF;
  37. border-radius: 10rpx;
  38. // background-image: url(https://t17.9026.com/web/statics/image/sale/properties_gradual.png);
  39. padding: 25rpx;
  40. position: relative;
  41. .bg {
  42. position: absolute;
  43. top: 0;
  44. left: 0;
  45. width: 80%;
  46. height: 100%;
  47. }
  48. .left {
  49. image {
  50. width: 153rpx;
  51. height: 153rpx;
  52. border-radius: 10rpx;
  53. }
  54. }
  55. .right {
  56. margin-left: 25rpx;
  57. .title {
  58. font-size: 30rpx;
  59. font-weight: bold;
  60. color: #222222;
  61. }
  62. .addr {
  63. font-size: 22rpx;
  64. font-weight: 500;
  65. color: #222222;
  66. }
  67. .content {
  68. font-size: 24rpx;
  69. font-weight: 500;
  70. color: #666666;
  71. line-height: 34rpx;
  72. }
  73. }
  74. }
  75. .addPro {
  76. position: fixed;
  77. bottom: 0;
  78. width: 100%;
  79. height: 100rpx;
  80. background: #A18353;
  81. font-size: 32rpx;
  82. font-family: PingFang SC;
  83. font-weight: bold;
  84. color: #FFFFFF;
  85. }
  86. }
  87. </style>