兼兼街租房小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

206 lines
4.3 KiB

  1. <template>
  2. <view class="container">
  3. <view class="ant-nav-compat"/>
  4. <view class="ant-nav-container">
  5. <view class="ant-nav-back" @click="goback"/>
  6. <view class="ant-nav-title">发布房源</view>
  7. </view>
  8. <view class="ant-from-container">
  9. <view class="ant-from">
  10. <view class="from-item from-splie">
  11. <view class="label">类型</view>
  12. <view class="context">整租非转租</view>
  13. </view>
  14. <view class="from-item from-splie">
  15. <view class="label">小区</view>
  16. <view class="context">恒星碧桂园</view>
  17. </view>
  18. <view class="from-item">
  19. <view class="label">楼层</view>
  20. <view class="context">1</view>
  21. </view>
  22. <view class="from-item">
  23. <view class="label">户型</view>
  24. <view class="context">三室一厅一厨二卫</view>
  25. </view>
  26. <view class="from-item">
  27. <view class="label">装修</view>
  28. <view class="context">超豪华精装</view>
  29. </view>
  30. <view class="from-item from-splie">
  31. <view class="label">面积</view>
  32. <view class="context">138m2</view>
  33. </view>
  34. <view class="from-item from-splie">
  35. <view class="label">房屋配置</view>
  36. <view class="context">带露台带花园车库三车位</view>
  37. </view>
  38. <view class="from-item">
  39. <view class="label">房屋</view>
  40. <view class="context">1550/</view>
  41. </view>
  42. <view class="from-item from-splie">
  43. <view class="label">付款方式</view>
  44. <view class="context">压一付一</view>
  45. </view>
  46. <view class="from-item from-splie">
  47. <view class="label">服务费</view>
  48. <view class="context"></view>
  49. </view>
  50. <view class="from-item from-splie">
  51. <view class="label">起租时长</view>
  52. <view class="context">6个月起</view>
  53. </view>
  54. <view class="from-item from-splie">
  55. <view class="label">个人要求</view>
  56. <view class="context"></view>
  57. </view>
  58. <view class="from-item">
  59. <view class="label">详细描述</view>
  60. <view class="context"></view>
  61. </view>
  62. </view>
  63. <view class="ant-from-submit" @click="next">发布</view>
  64. <view class="ant-from-submit-tip">
  65. <p>*为了保障租户合法权限平台可能会联系您本人核实情况也有可能抽检房屋信息请积极配合如果抽检过程存在不合规或者使您不愉快的行为您可以通过<span>官方投诉电话</span>进行反馈</p>
  66. </view>
  67. </view>
  68. </view>
  69. </template>
  70. <style lang="scss">
  71. .ant-nav-compat{
  72. content: "";
  73. background-color: #F5F5F5;
  74. height: 88rpx;
  75. width: 100vw;
  76. }
  77. .container{
  78. background-color: rgb(245, 245, 245) !important;
  79. .ant-nav-container{
  80. height: 88rpx;
  81. width: 100vw;
  82. line-height: 88rpx;
  83. background-color: #F5F5F5;
  84. text-align: center;
  85. vertical-align: top;
  86. position: relative;
  87. color: #333;
  88. font-size: 36rpx;
  89. font-weight: bold;
  90. letter-spacing: -0.1rpx;
  91. .ant-nav-back {
  92. content: "";
  93. position: absolute;
  94. top: 35rpx;
  95. left: 30rpx;
  96. width: 18rpx;
  97. height: 18rpx;
  98. border-bottom: 3rpx solid #333;
  99. border-right: 3rpx solid #333;
  100. transform: rotate(135deg);
  101. }
  102. }
  103. .ant-from-container{
  104. .from-item{
  105. padding: 0 30rpx;
  106. width: calc(100vw - 60rpx);
  107. min-height: 88rpx;
  108. line-height: 88rpx;
  109. background-color: #fff;
  110. font-size: 32rpx;
  111. color: #333;
  112. .label{
  113. float: left;
  114. }
  115. .context{
  116. float: right;
  117. }
  118. }
  119. .from-splie{
  120. margin-bottom: 20rpx;
  121. }
  122. .ant-from-submit{
  123. margin: 30rpx;
  124. width: calc(100% - 60rpx);
  125. height: 92rpx;
  126. line-height: 92rpx;
  127. background-color: #00b2ff;
  128. border-radius: 8rpx;
  129. color: #fff;
  130. text-align: center;
  131. font-size: 36rpx;
  132. }
  133. .ant-from-submit-tip{
  134. width: calc(100vw - 90rpx);
  135. padding: 30rpx;
  136. color: #999;
  137. font-size: 26rpx;
  138. font-weight: 400;
  139. line-height: 36rpx;
  140. letter-spacing: 0rpx;
  141. span{
  142. color: #00b2ff;
  143. text-decoration: underline;
  144. }
  145. }
  146. }
  147. }
  148. </style>
  149. <script>
  150. export default {
  151. data() {
  152. return {
  153. show: false,
  154. }
  155. },
  156. onReachBottom() {
  157. console.log("reach bottom")
  158. },
  159. methods: {
  160. next: function(){
  161. },
  162. goback: function(){
  163. uni.navigateBack(-1)
  164. }
  165. }
  166. }
  167. </script>