changeCity.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <template>
  2. <view class="content">
  3. <u-index-list @select="select">
  4. <view class="top">
  5. <u-search placeholder="请输入城市名" v-model="searchCity" :showAction="false" @search="search"></u-search>
  6. </view>
  7. <view class="title">
  8. <view class="title_text">定位城市</view>
  9. <view class="hflex acenter jcenter city_box active" @click="selectCity(city)">
  10. <u-icon name="map-fill" color="#fff" size="14"></u-icon>
  11. <view style="margin-left: 8rpx;">{{city}}</view>
  12. </view>
  13. </view>
  14. <view class="title vflex fwrap" v-if="history.length > 0">
  15. <view class="title_text">历史</view>
  16. <view class="hflex acenter fwrap">
  17. <block v-for="(item2,index) in history" :key="index">
  18. <view class="city_box hflex acenter jcenter"@click="selectCity(item2)">{{item2}}</view>
  19. </block>
  20. </view>
  21. </view>
  22. <view class="title vflex fwrap">
  23. <view class="title_text">
  24. 热门
  25. </view>
  26. <view class="hflex acenter fwrap">
  27. <block v-for="(item2,index) in hotList" :key="index">
  28. <view class="city_box hflex acenter jcenter"@click="selectCity(item2.name)">{{item2.name}}</view>
  29. </block>
  30. </view>
  31. </view>
  32. <template v-for="(item,index) in itemArr">
  33. <u-index-item>
  34. <u-index-anchor :text="indexList[index]"></u-index-anchor>
  35. <view class="list-cell" v-for="(cell, index2) in item.child" :key="index2">
  36. <view @click="selectCity(cell.title)">{{cell.title}}</view>
  37. </view>
  38. </u-index-item>
  39. </template>
  40. </u-index-list>
  41. </view>
  42. </template>
  43. <script>
  44. import $api from '@/static/js/api.js'
  45. var that = ''
  46. export default {
  47. data() {
  48. return {
  49. city: '',
  50. searchCity: '',
  51. history: [],
  52. hotList: [],
  53. indexList: ["A", "B", "C","D","E","F","G","H","I","J","K","L","M","N","O","P",'Q','R','S','T',"U","V",'W','X','Y','Z'],
  54. itemArr: []
  55. }
  56. },
  57. onLoad(options) {
  58. that = this
  59. that.city = uni.getStorageSync('locationCity')
  60. that.history = uni.getStorageSync('historyCity')
  61. console.log(that.history);
  62. if(that.history == '') {
  63. that.history = []
  64. }
  65. this.getCity()
  66. },
  67. methods: {
  68. // 获取城市信息
  69. getCity() {
  70. $api.req({
  71. url: '/data/api.Area/sort',
  72. data: {
  73. level: 2,
  74. hot: 1
  75. }
  76. }, function(res) {
  77. console.log(res);
  78. if(res.code == 1) {
  79. that.hotList = res.data.hot
  80. that.itemArr = res.data.areas
  81. }
  82. })
  83. },
  84. // 搜索城市
  85. search(e) {
  86. var is_some = 0
  87. console.log(e);
  88. that.searchCity = e
  89. $api.req({
  90. url: '/data/api.Area/name',
  91. data: {
  92. name: that.searchCity
  93. }
  94. }, function(res) {
  95. if(res.code == 1) {
  96. if(res.data != null) {
  97. /* if (that.history.length > 0) {
  98. for(var i=0;i<that.history.length;i++) {
  99. if(that.history[i] == that.searchCity) {
  100. is_some = 1;
  101. }
  102. }
  103. if(is_some == 0) {
  104. that.history.unshift(that.searchCity)
  105. }
  106. } else {
  107. that.history.unshift(that.searchCity)
  108. }
  109. console.log(that.history);
  110. if(that.history.length > 9) {
  111. that.history.pop()
  112. }
  113. uni.setStorageSync("historyCity",that.history) */
  114. that.selectCity(res.data.name)
  115. } else {
  116. $api.info(res.info)
  117. }
  118. }
  119. })
  120. },
  121. // 选择索引
  122. select(e) {
  123. console.log("select",e);
  124. },
  125. // 选择城市
  126. selectCity(city) {
  127. console.log("City",city);
  128. var is_some = 0
  129. if (that.history.length > 0) {
  130. for(var i=0;i<that.history.length;i++) {
  131. if(that.history[i] == city) {
  132. is_some = 1;
  133. }
  134. }
  135. if(is_some == 0) {
  136. that.history.unshift(city)
  137. }
  138. } else {
  139. that.history.unshift(city)
  140. }
  141. if(that.history.length > 9) {
  142. that.history.pop()
  143. }
  144. uni.setStorageSync("historyCity",that.history)
  145. // that.search(city)
  146. var pages = getCurrentPages();// 获取所有的页面栈
  147. var prevPage = pages[pages.length - 2];
  148. prevPage.$vm.city = city;
  149. $api.jump(-1)
  150. uni.setStorageSync('city',city)
  151. },
  152. }
  153. }
  154. </script>
  155. <style lang="scss" scoped>
  156. .content::v-deep {
  157. // padding: 0 30rpx;
  158. background-color: #f5f5f5;
  159. .top {
  160. width: 100%;
  161. background: #fff;
  162. padding: 36rpx 30rpx 36rpx;
  163. box-sizing: border-box;
  164. // margin-top: ;
  165. }
  166. .title {
  167. width: 100%;
  168. background: #fff;
  169. padding: 32rpx 30rpx 32rpx;
  170. box-sizing: border-box;
  171. margin-top: 20rpx;
  172. font-size: 28rpx;
  173. color: #222;
  174. .title_text {
  175. margin-bottom: 20rpx;
  176. }
  177. .city_box {
  178. margin: 0 16rpx 20rpx 0;
  179. width: 212rpx;
  180. height: 72rpx;
  181. background: #f5f5f5;
  182. border-radius: 5rpx;
  183. font-size: 28rpx;
  184. color: #555;
  185. text-align: center;
  186. }
  187. .active {
  188. background: #506DFF;
  189. font-size: 28rpx;
  190. color: #fff
  191. }
  192. }
  193. .u-index-list {
  194. width: 100%;
  195. box-sizing: border-box;
  196. // padding: 32rpx 0;
  197. // background-color: #fff;
  198. }
  199. .u-input {
  200. background: #f5f5f5 !important;
  201. }
  202. .u-index-item {
  203. width: 100%;
  204. background: #fff;
  205. margin: 10rpx 0;
  206. padding: 32rpx 30rpx 0 0;
  207. .u-index-anchor {
  208. border: none !important;
  209. background-color: #fff !important;
  210. }
  211. }
  212. // .list-cell {
  213. // font-size: 30rpx;
  214. // color: #222;
  215. // padding-bottom: 32rpx;
  216. // }
  217. .list-cell {
  218. display: flex;
  219. box-sizing: border-box;
  220. width: 100%;
  221. padding: 10px 24rpx;
  222. overflow: hidden;
  223. color: #222;
  224. font-size: 30rpx;
  225. line-height: 24px;
  226. background-color: #fff;
  227. }
  228. }
  229. </style>