chooseCity.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. <template>
  2. <view class="content">
  3. <view class="topView">
  4. <!-- 搜索 -->
  5. <view class="searchBoxBg">
  6. <searchBox placeholder="请输入城市名称" @search='search($event)'></searchBox>
  7. </view>
  8. </view>
  9. <!-- 城市列表 -->
  10. <scroll-view class="scroll-view" scroll-y scroll-with-animation="true" enable-back-to-top="true"
  11. :scroll-into-view="toIndex" v-if="!searchValue">
  12. <!-- 您所在的地区 -->
  13. <view class="nowArea">
  14. <view class="area">定位城市</view>
  15. <view class="dingwBox">
  16. <view v-if="locationCity.cityName" @click="selectDingCity(locationCity)" class="dingweiCity">
  17. {{locationCity.cityName}}
  18. </view>
  19. <view v-else class="dingweiCity" style="color: #999999;">未获取</view>
  20. <view class="dingBg" @click="againDingWei()">
  21. <image src='../../static/img/icon_location.png' class="icon"></image>
  22. <text class="text">重新定位</text>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="listContent">
  27. <view class="city-list">
  28. <!-- 城市列表 -->
  29. <view v-for="(item, index) in cityData">
  30. <view class="c-title">{{item['首字母']}}</view>
  31. <view class="item" v-for="(city,index2) in item['城市列表']" @click="selectCity(city)">
  32. {{city.city}}
  33. </view>
  34. </view>
  35. </view>
  36. <!-- 字母列表 -->
  37. <view>
  38. <view v-for="(item, index) in alphabet">
  39. <view class="alphabet" :class="{select:toIndex == item}" @click="tap(item)">
  40. {{item}}
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </scroll-view>
  46. <!-- 搜索列表 -->
  47. <view class="reach-content" v-show="searchValue">
  48. <block v-show="searchData.length">
  49. <view v-for="(item, index) in cityData">
  50. <view class="item" v-for="(city,index2) in item['城市列表']" @click="selectCity(city)">
  51. {{city.city}}
  52. </view>
  53. </view>
  54. </block>
  55. <!-- 无数据空白页 -->
  56. <view class="nodataBox" v-if="searchData.length == 0">
  57. <image src="../../static/img/pic_empty_def.png" mode="widthFix" class="nodataImg"></image>
  58. <view class="noTxt">暂无数据</view>
  59. </view>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. import searchBox from '@/components/searchBox/searchBox.vue'
  65. export default {
  66. components: {
  67. searchBox
  68. },
  69. data() {
  70. return {
  71. searchValue: '',
  72. cityData: [],
  73. alphabet: [],
  74. toIndex: '', //跳转的索引的字母
  75. searchData:[],
  76. locationCity: {
  77. cityName: '',
  78. cityCode: '',
  79. lng: '',
  80. lat: '',
  81. },
  82. }
  83. },
  84. onLoad() {
  85. this.getData();
  86. },
  87. onShow() {
  88. var nowCity = uni.getStorageSync("locationCity");
  89. if (nowCity) {
  90. this.locationCity = nowCity
  91. } else {
  92. this.getLocation()
  93. }
  94. this.getData();
  95. },
  96. methods: {
  97. tap(item) {
  98. console.log('字母点击', item);
  99. this.toIndex = item
  100. },
  101. againDingWei() {
  102. console.log('重新定位');
  103. this.getLocation();
  104. },
  105. getLocation() {
  106. const that = this
  107. uni.getLocation({
  108. type: 'gcj02',
  109. success: function(res) {
  110. console.log('定位', res)
  111. that.locationCity.lng = res.longitude
  112. that.locationCity.lat = res.latitude
  113. that.getAdress();
  114. },
  115. fail(err) {
  116. console.log(err)
  117. }
  118. });
  119. },
  120. getAdress() {
  121. // 根据经纬度 逆城市地理编码 获取城市信息
  122. var location = this.locationCity.lng + ',' + this.locationCity.lat
  123. uni.request({
  124. url: 'https://restapi.amap.com/v3/place/around',
  125. data: {
  126. key: '064b6a4a8ade55656edcde2f528876de',
  127. location: location,
  128. types: "190000",
  129. extensions: "all",
  130. radius: 100
  131. },
  132. dataType: "json",
  133. success: (res) => {
  134. console.log('定位城市', res);
  135. let cityname = res.data.pois[0].cityname;
  136. var cityCode = res.data.pois[0].adcode
  137. cityCode = cityCode.slice(0, -2)
  138. cityCode = cityCode + '00'
  139. this.locationCity.cityName = cityname
  140. this.locationCity.cityCode = cityCode
  141. uni.setStorage({
  142. key: 'locationCity',
  143. data: this.locationCity,
  144. success: function() {
  145. console.log('定位城市,保存成功');
  146. }
  147. })
  148. }
  149. });
  150. },
  151. search(val) {
  152. // console.log(val);
  153. this.searchValue = val
  154. this.getData()
  155. },
  156. getData() {
  157. uni.showLoading({
  158. title: '加载中'
  159. })
  160. let url = 'worldKeepCar/worldHome/queryCityRole',
  161. params = {
  162. city: this.searchValue ? this.searchValue : '',
  163. }
  164. this.$http(url, params, 'GET').then(res => {
  165. uni.hideLoading()
  166. if (res.code == 0) {
  167. this.cityData = res.data
  168. var arr = []
  169. this.cityData.forEach((item, index) => {
  170. arr.push(item.首字母)
  171. });
  172. }
  173. this.alphabet = arr
  174. })
  175. },
  176. selectDingCity(locationCity){
  177. console.log('选择了定位城市:', locationCity);
  178. var city={}
  179. city.city = locationCity.cityName
  180. city.code = locationCity.cityCode
  181. uni.setStorage({
  182. key: 'selectCity',
  183. data: city,
  184. success: function() {
  185. console.log('选择了定位城市,保存成功');
  186. }
  187. })
  188. uni.navigateBack({
  189. })
  190. },
  191. selectCity(city) {
  192. console.log('选择的城市:', city);
  193. uni.setStorage({
  194. key: 'selectCity',
  195. data: city,
  196. success: function() {
  197. console.log('选择的城市,保存成功');
  198. }
  199. })
  200. uni.navigateBack({
  201. })
  202. },
  203. },
  204. onPullDownRefresh() {
  205. this.getData()
  206. setTimeout(function() {
  207. uni.stopPullDownRefresh();
  208. }, 1000);
  209. },
  210. }
  211. </script>
  212. <style>
  213. .content {
  214. background: #FFFFFF;
  215. min-height: 100vh;
  216. }
  217. .topView {
  218. background: #FFFFFF;
  219. position: fixed;
  220. width: 100%;
  221. height: 120rpx;
  222. z-index: 99;
  223. }
  224. .searchBoxBg {
  225. width: 100%;
  226. background-color: #FFFFFF;
  227. border-top: 1rpx solid #EEEEEE;
  228. }
  229. .searchBox {
  230. display: flex;
  231. height: 72rpx;
  232. margin: 24rpx;
  233. background-color: #F4F5F7;
  234. border-radius: 36rpx;
  235. }
  236. .scroll-view {
  237. width: 100%;
  238. height: calc(100vh - 120rpx);
  239. box-sizing: border-box;
  240. padding: 120rpx 24rpx 20rpx;
  241. }
  242. .nowArea {
  243. width: 100%;
  244. height: 147rpx;
  245. }
  246. .area {
  247. color: #999999;
  248. font-size: 24rpx;
  249. margin-bottom: 20rpx;
  250. }
  251. .dingwBox {
  252. display: flex;
  253. justify-content: space-between;
  254. }
  255. .dingweiCity {
  256. background-color: #F4F5F7;
  257. border-radius: 49rpx;
  258. width: 140rpx;
  259. height: 64rpx;
  260. text-align: center;
  261. line-height: 64rpx;
  262. font-size: 26rpx;
  263. }
  264. .dingBg {
  265. display: flex;
  266. align-items: center;
  267. color: #3F90F7;
  268. font-size: 26rpx;
  269. }
  270. .icon {
  271. width: 33rpx;
  272. height: 33rpx;
  273. margin-right: 5rpx;
  274. }
  275. .listContent {
  276. display: flex;
  277. justify-content: space-between;
  278. }
  279. .city-list {
  280. display: flex;
  281. flex-direction: column;
  282. width: 95%;
  283. }
  284. .c-title {
  285. color: #999999;
  286. font-size: 24rpx;
  287. height: 33rpx;
  288. line-height: 33rpx;
  289. padding-top: 30rpx;
  290. }
  291. .item {
  292. width: 100%;
  293. height: 46rpx;
  294. padding: 30rpx 13rpx;
  295. color: #3C3C3C;
  296. font-size: 28rpx;
  297. border-bottom: 1rpx solid #EEEEEE;
  298. }
  299. .alphabet {
  300. font-size: 22rpx;
  301. font-weight: bold;
  302. color: #999999;
  303. width: 4%;
  304. margin: 20rpx 0;
  305. text-align: center;
  306. }
  307. .select {
  308. color: #FF4F00;
  309. }
  310. .reach-content{
  311. width: 100%;
  312. height: calc(100vh - 120rpx);
  313. box-sizing: border-box;
  314. padding: 120rpx 24rpx 20rpx;
  315. }
  316. /* 空白页css */
  317. .nodataBox {
  318. text-align: center;
  319. }
  320. .nodataImg {
  321. width: 400rpx;
  322. padding-top: 300rpx;
  323. }
  324. .noTxt {
  325. font-size: 30rpx;
  326. color: #999999;
  327. padding-top: 50rpx;
  328. }
  329. </style>