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.

90 lines
1.3 KiB

4 months ago
  1. <template>
  2. <view class="content padding">
  3. <view class="tit">选择房屋房号</view>
  4. <view class="searchBox">
  5. <searchRow placeholder="请输入您的房号"/>
  6. </view>
  7. <view class="ul">
  8. <view class="li" v-for="(item,index) in 3" :key="index" @click="chooseItem(item)">1-1-101</view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. }
  17. },
  18. methods: {
  19. chooseItem(item) {
  20. this.$goPage('/pages/subPage/authentication/authentication')
  21. }
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. image {
  27. display: block;
  28. width: 100%;
  29. height: 100%;
  30. }
  31. .content {
  32. .tit {
  33. font-size: 54rpx;
  34. color: #2E2E2E;
  35. padding: 40rpx 0 30rpx 0;
  36. }
  37. .searchBox {
  38. height: 68rpx;
  39. }
  40. .poz {
  41. height: 86rpx;
  42. .lab {
  43. font-size: 28rpx;
  44. }
  45. .flex {
  46. .icon {
  47. width: 32rpx;
  48. height: 32rpx;
  49. }
  50. .city {
  51. font-size: 28rpx;
  52. margin-left: 10rpx;
  53. color: $themC;
  54. }
  55. }
  56. }
  57. .huicity {
  58. width: 100%;
  59. height: 48rpx;
  60. background: #EFEFEF;
  61. border-radius: 10rpx;
  62. line-height: 48rpx;
  63. color: #9C9C9C;
  64. font-size: 28rpx;
  65. line-height: 48rpx;
  66. padding-left: 20rpx;
  67. }
  68. .ul {
  69. width: 100%;
  70. .li {
  71. width: 100%;
  72. height: 94rpx;
  73. line-height: 94rpx;
  74. font-size: 36rpx;
  75. border-bottom: 1px solid #EFEFEF;
  76. }
  77. }
  78. }
  79. </style>