changeCity.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <template>
  2. <view class="content">
  3. <u-index-list :index-list="indexList" @select="select" >
  4. <view class="top">
  5. <u-input v-model="searchCity" type="text" :border="true" placeholder="请输入城市名" shape="circle"
  6. prefixIcon="search" prefixIconStyle="font-size: 22px;color: #909399">
  7. </u-input>
  8. </view>
  9. <view class="title">
  10. <view class="title_text">定位城市</view>
  11. <view class="hflex acenter jcenter city_box active">
  12. <u-icon name="map-fill" color="#fff" size="14"></u-icon>
  13. <view style="margin-left: 8rpx;">{{city}}</view>
  14. </view>
  15. </view>
  16. <view class="title vflex fwrap" v-if="history.length > 0">
  17. <view class="title_text">历史</view>
  18. <view class="hflex acenter fwrap city_box">
  19. <block v-for="(item,index) in history" :key="index">
  20. <view @click="selectCity(item)">{{item}}</view>
  21. </block>
  22. </view>
  23. </view>
  24. <view class="title vflex fwrap">
  25. <view class="title_text">
  26. 热门
  27. </view>
  28. <view class="hflex acenter fwrap jbetween">
  29. <block v-for="(item2,index) in hotList">
  30. <view class="city_box hflex acenter jcenter"@click="selectCity(item2)">{{item2}}</view>
  31. </block>
  32. </view>
  33. </view>
  34. <template v-for="(item, index) in itemArr">
  35. <u-index-item>
  36. <view class="list-cell" v-for="(cell, index) in item">
  37. <view @tap="selectCity(cell)">{{cell.city}}</view>
  38. </view>
  39. </u-index-item>
  40. </template>
  41. </u-index-list>
  42. </view>
  43. </template>
  44. <script>
  45. import cityList from './cityList.json'
  46. export default {
  47. data() {
  48. return {
  49. city: '',
  50. searchCity: '',
  51. history: [],
  52. hotList: [
  53. "北京市",
  54. "南京市",
  55. "重庆市",
  56. "成都市",
  57. "西安市",
  58. "广州市",
  59. "苏州市",
  60. "杭州市",
  61. "武汉市",
  62. ],
  63. indexList: ["A", "B", "C","D","E","F","G","H","J","K","L","M","N","P",'Q','R','S','T','W','X','Y','Z'],
  64. itemArr: []
  65. }
  66. },
  67. onLoad(options) {
  68. this.city = options.city
  69. this.itemArr = cityList.city_list;
  70. console.log(this.itemArr);
  71. },
  72. methods: {
  73. // 选择索引
  74. select(e) {
  75. console.log(e);
  76. },
  77. // 选择城市
  78. selectCity(city) {
  79. console.log(city);
  80. },
  81. }
  82. }
  83. </script>
  84. <style lang="scss" scoped>
  85. .content::v-deep {
  86. // padding: 0 30rpx;
  87. background-color: #f5f5f5;
  88. .top {
  89. width: 100%;
  90. background: #fff;
  91. padding: 36rpx 30rpx 36rpx;
  92. box-sizing: border-box;
  93. // margin-top: ;
  94. }
  95. .title {
  96. width: 100%;
  97. background: #fff;
  98. padding: 32rpx 30rpx 32rpx;
  99. box-sizing: border-box;
  100. margin-top: 20rpx;
  101. font-size: 28rpx;
  102. color: #222;
  103. .title_text {
  104. }
  105. .city_box {
  106. margin-top:20rpx ;
  107. width: 212rpx;
  108. height: 72rpx;
  109. background: #f5f5f5;
  110. border-radius: 5rpx;
  111. font-size: 28rpx;
  112. color: #555
  113. }
  114. .active {
  115. background: #506DFF;
  116. font-size: 28rpx;
  117. color: #fff
  118. }
  119. }
  120. .u-index-list {
  121. width: 100%;
  122. box-sizing: border-box;
  123. padding: 32rpx 0;
  124. // background-color: #fff;
  125. }
  126. .u-input {
  127. background: #f5f5f5 !important;
  128. }
  129. .u-index-item {
  130. width: 100%;
  131. background: #fff;
  132. margin: 10rpx 0;
  133. padding: 32rpx 30rpx 0;
  134. }
  135. // .list-cell {
  136. // font-size: 30rpx;
  137. // color: #222;
  138. // padding-bottom: 32rpx;
  139. // }
  140. .list-cell {
  141. display: flex;
  142. box-sizing: border-box;
  143. width: 100%;
  144. padding: 10px 24rpx;
  145. overflow: hidden;
  146. color: #222;
  147. font-size: 30rpx;
  148. line-height: 24px;
  149. background-color: #fff;
  150. }
  151. }
  152. </style>