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.

101 lines
1.6 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="poz flex-b">
  8. <view class="lab">当前定位城市</view>
  9. <view class="flex">
  10. <view class="icon">
  11. <image src="@/static/images/pozicon.png" mode=""></image>
  12. </view>
  13. <view class="city">杭州市</view>
  14. </view>
  15. </view>
  16. <view class="huicity">杭州市</view>
  17. <view class="ul">
  18. <view class="li" v-for="(item,index) in 3" :key="index" @click="chooseItem(item)">小区名称</view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. }
  27. },
  28. methods: {
  29. chooseItem(item) {
  30. this.$goPage('/pages/subPage/authentication/comp/select2')
  31. }
  32. }
  33. }
  34. </script>
  35. <style lang="scss" scoped>
  36. image {
  37. display: block;
  38. width: 100%;
  39. height: 100%;
  40. }
  41. .content {
  42. .tit {
  43. font-size: 54rpx;
  44. color: #2E2E2E;
  45. padding: 40rpx 0 30rpx 0;
  46. }
  47. .searchBox {
  48. height: 68rpx;
  49. }
  50. .poz {
  51. height: 86rpx;
  52. .lab {
  53. font-size: 28rpx;
  54. }
  55. .flex {
  56. .icon {
  57. width: 32rpx;
  58. height: 32rpx;
  59. }
  60. .city {
  61. font-size: 28rpx;
  62. margin-left: 10rpx;
  63. color: $themC;
  64. }
  65. }
  66. }
  67. .huicity {
  68. width: 100%;
  69. height: 48rpx;
  70. background: #EFEFEF;
  71. border-radius: 10rpx;
  72. line-height: 48rpx;
  73. color: #9C9C9C;
  74. font-size: 28rpx;
  75. line-height: 48rpx;
  76. padding-left: 20rpx;
  77. }
  78. .ul {
  79. width: 100%;
  80. .li {
  81. width: 100%;
  82. height: 94rpx;
  83. line-height: 94rpx;
  84. font-size: 36rpx;
  85. border-bottom: 1px solid #EFEFEF;
  86. }
  87. }
  88. }
  89. </style>