myHouse.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <!-- 我的房屋 -->
  2. <template>
  3. <view class="">
  4. <view class="item">
  5. <view class="content">
  6. <view class="city">
  7. <view style="height: 100%;display: flex;">
  8. <image src="../../static/house_icon_location@2x.png" style="width: 40rpx;height:40rpx;margin-right: 18rpx;"></image>
  9. <view class="text">山东 临沂</view>
  10. </view>
  11. <view class="delete">
  12. 删除
  13. </view>
  14. </view>
  15. <view class="address">
  16. <image src="../../static/house_icon_house@2x.png" style="width: 40rpx;height:40rpx;margin-right: 18rpx;" ></image>
  17. <view class="text">后花园小区 11号楼 02单元 801</view>
  18. </view>
  19. </view>
  20. </view>
  21. <!-- 添加房屋信息 -->
  22. <view class="btn">添加房屋信息</view>
  23. </view>
  24. </template>
  25. <script>
  26. export default{
  27. data(){
  28. return{
  29. }
  30. }
  31. }
  32. </script>
  33. <style>
  34. .btn{
  35. width:702rpx;
  36. height:90rpx;
  37. background:rgba(41,138,253,1);
  38. opacity:1;
  39. border-radius:18rpx;
  40. font-size:32rpx;
  41. font-family:PingFang SC;
  42. font-weight:bold;
  43. line-height:90rpx;
  44. color:rgba(255,255,255,1);
  45. text-align: center;
  46. position: absolute;
  47. bottom: 56rpx;
  48. left: 26rpx;
  49. }
  50. .address{
  51. height: 40rpx;
  52. margin-top:42rpx ;
  53. margin-bottom: 20rpx;
  54. display: flex;
  55. }
  56. .delete{
  57. width:44rpx;
  58. height:32rpx;
  59. font-size:22rpx;
  60. font-family:PingFang SC;
  61. font-weight:400;
  62. color:rgba(41,138,253,1);
  63. }
  64. .item{
  65. width:702rpx;
  66. height:164rpx;
  67. background:rgba(249,252,255,1);
  68. opacity:1;
  69. margin: 0 auto;
  70. margin-top: 40rpx;
  71. overflow: hidden;
  72. }
  73. .content{
  74. width: 622rpx;
  75. margin: 0 auto;
  76. }
  77. .city{
  78. width: 100%;
  79. height: 40rpx;
  80. display: flex;
  81. justify-content: space-between;
  82. margin-top: 26rpx;
  83. }
  84. .text{
  85. width:136rpx;
  86. height:40rpx;
  87. font-size:28rpx;
  88. font-family:PingFang SC;
  89. font-weight:bold;
  90. line-height:40rpx;
  91. color:rgba(41,138,253,1);
  92. }
  93. .address .text{
  94. width: 400rpx;
  95. height:36rpx;
  96. font-size:26rpx;
  97. font-family:PingFang SC;
  98. font-weight:400;
  99. color:rgba(51,51,51,1);
  100. }
  101. </style>