linzq-citySelect.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. <template>
  2. <div class="wrapper" :style="'top:'+statusBarHeight+'px'">
  3. <div class="header">
  4. <view class="back_div">
  5. <!-- <image class="back_img" @click="back_city()" src="../../static/attestation_icon_search@2x.png" mode=""></image> -->
  6. </view>
  7. <input class="input" @input="onInput" placeholder="中文/首字母" v-model="searchValue" />
  8. </div>
  9. <scroll-view class="calendar-list" scroll-y="true" :scroll-into-view="scrollIntoId">
  10. <view v-if="disdingwei" id="hot">
  11. <!-- 定位模块 -->
  12. <view class="dingwei">
  13. <view class="dingwei_Tips">
  14. 当前定位
  15. </view>
  16. <view class="dingwei_city">
  17. <view class="dingwei_city_one" @tap="selectCity">
  18. {{position}}
  19. </view>
  20. <view class="dingweis_div" @click="getWarpweft">
  21. <!-- <image class="dingweis" src="../../static/dingweis.png" mode=""></image> -->
  22. <text>{{po_tips}}</text>
  23. </view>
  24. </view>
  25. </view>
  26. <!-- 热门城市 -->
  27. <view class="dingwei">
  28. <view class="dingwei_Tips">
  29. 热门城市
  30. </view>
  31. <view class="dingwei_citys dingwei_city_zuijin" style="flex-wrap: wrap;">
  32. <view class="dingwei_city_ones toright" v-for="(item,index) in hotCity" :key="index" v-if="index<6" @click="back_city(item)">
  33. {{item.areaName}}
  34. </view>
  35. </view>
  36. </view>
  37. <!-- 最近模块 -->
  38. <view class="dingwei" v-if="Visit.length>=0">
  39. <view class="dingwei_Tips">
  40. 最近访问
  41. </view>
  42. <view class="dingwei_city dingwei_city_zuijin">
  43. <view class="dingwei_city_one toright" v-for="(item,index) in Visit" v-if="index<3" @click="back_city(item)" :key="index">
  44. {{item.areaName}}
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. <!-- 城市列表 -->
  50. <view v-if="searchValue == ''" v-for="(item, index) in list" :id="getId(index)" :key="index">
  51. <view class="letter-header">{{ getId(index) }}</view>
  52. <view class="city-div" v-for="(city, i) in item" :key="i" @click="back_city(city)">
  53. <text class="city">{{ city.areaName }}</text>
  54. </view>
  55. </view>
  56. <!-- 搜索结果 -->
  57. <view class="city-div" v-for="(item, index) in searchList" @click="back_city(item)" :key="index">
  58. <text class="city">{{ item.areaName }}</text>
  59. </view>
  60. </scroll-view>
  61. <!-- 右侧字母 -->
  62. <view class="letters" v-if="searchValue == ''">
  63. <view class="letters-item" @click="scrollTo('hot')">最近</view>
  64. <view class="letters-item" v-for="item in letter" :key="item" @click="scrollTo(item)">{{ item }}</view>
  65. </view>
  66. <!-- 选中之后字母 -->
  67. <view class="mask" v-if="showMask">
  68. <view class="mask-r">{{selectLetter}}</view>
  69. </view>
  70. </div>
  71. </template>
  72. <script>
  73. import Citys from '../city.js';
  74. import QQMapWX from "../../components/qqmap-wx-jssdk1.2/qqmap-wx-jssdk.min.js"
  75. export default {
  76. components: {},
  77. props: {},
  78. computed: {
  79. // hotCity() {
  80. // return Citys.hotCity;
  81. // },
  82. // citys() {
  83. // return Citys.cities;
  84. // }
  85. },
  86. data() {
  87. return {
  88. hotCity: [{
  89. areaName: '北京',
  90. areaId: '110100'
  91. }, {
  92. areaName: '上海',
  93. areaId: '310100'
  94. }, {
  95. areaName: '天津',
  96. areaId: '120100'
  97. }, {
  98. areaName: '南京',
  99. areaId: '320100'
  100. }, {
  101. areaName: '杭州',
  102. areaId: '330100'
  103. }, {
  104. areaName: '深圳',
  105. areaId: '440300'
  106. }],
  107. citys: [],
  108. statusBarHeight: this.statusBarHeight,
  109. ImgUrl: this.ImgUrl,
  110. letter: [],
  111. selectLetter: '',
  112. searchValue: '',
  113. scrollIntoId: '',
  114. list: [],
  115. tId: null,
  116. searchList: [],
  117. showMask: false,
  118. disdingwei: true,
  119. Visit: [], //最近访问
  120. position: '青岛',
  121. longitude: '', //经度
  122. latitude: '', //纬度
  123. seconds: 3,
  124. po_tips: '重新定位',
  125. }
  126. },
  127. created() {
  128. this.getCityData()
  129. //获取存储的最近访问
  130. var that = this
  131. uni.getStorage({
  132. key: 'Visit_key',
  133. success: function(res) {
  134. that.Visit = res.data
  135. }
  136. });
  137. //获取定位 经度纬度
  138. that.getWarpweft()
  139. },
  140. methods: {
  141. // 获取城市接口
  142. getCityData() {
  143. uni.showLoading({
  144. mask:true,
  145. title:'加载中'
  146. })
  147. this.http.httpRequest('/wxapplet/ownersid/BaseArea/list', 'get', {
  148. layer: 2
  149. }, true).then((res) => {
  150. console.log(res)
  151. if (res.code == 0) {
  152. uni.hideLoading()
  153. this.citys = res.data.rows
  154. //获取city.js 的程序字母
  155. var mu = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'w', 'x',
  156. 'y',
  157. 'z'
  158. ];
  159. var tmp = [];
  160. for (var i = 0; i < mu.length; i++) {
  161. var item = mu[i];
  162. for (var j = 0; j < this.citys.length; j++) {
  163. var py = this.citys[j].simpleSpelling;
  164. if (py.substring(0, 1) == item) {
  165. if (tmp.indexOf(item) == -1) {
  166. this.list[i] = [this.citys[j]];
  167. tmp.push(item);
  168. this.letter.push(item.toUpperCase());
  169. } else {
  170. this.list[i].push(this.citys[j]);
  171. }
  172. }
  173. }
  174. }
  175. } else {
  176. uni.hideLoading()
  177. uni.showToast({
  178. title: res.msg,
  179. 'icon': 'none'
  180. })
  181. }
  182. }).catch(()=>{
  183. uni.hideLoading()
  184. })
  185. },
  186. // 选择当前定位的
  187. selectCity() {
  188. let id = ''
  189. this.citys.forEach((item) => {
  190. if (item.areaName.indexOf(this.position) != -1) {
  191. id = item.areaId
  192. }
  193. })
  194. this.$emit('selectCity', id)
  195. },
  196. getId(index) {
  197. return this.letter[index];
  198. },
  199. scrollTo(letter) {
  200. this.showMask = true
  201. this.selectLetter = letter == 'hot' ? '最' : letter
  202. setTimeout(() => {
  203. this.showMask = false
  204. }, 300);
  205. this.scrollIntoId = letter;
  206. },
  207. query(source, text) {
  208. let res = [];
  209. var self = this;
  210. res = source.filter(item => {
  211. const arr = [];
  212. let isHave = false;
  213. Object.keys(item).forEach(prop => {
  214. const itemStr = item[prop];
  215. self.isString(itemStr) &&
  216. itemStr.split(',').forEach(val => {
  217. arr.push(val);
  218. });
  219. });
  220. arr.some(val => {
  221. isHave = new RegExp('^' + text).test(val);
  222. return isHave;
  223. });
  224. return isHave;
  225. });
  226. console.log(JSON.stringify(res));
  227. return res;
  228. },
  229. isString(obj) {
  230. return typeof obj === 'string';
  231. },
  232. onInput(e) {
  233. const value = e.target.value;
  234. console.log(value);
  235. if (value !== '' && this.citys && this.citys.length > 0) {
  236. const queryData = this.query(this.citys, String(value).trim());
  237. this.searchList = queryData;
  238. this.disdingwei = false
  239. } else {
  240. this.searchList = [];
  241. this.disdingwei = true
  242. }
  243. },
  244. back_city(item) {
  245. if (item) {
  246. this.$emit('back_city', item);
  247. //unshift 把数据插入到首位,与push相反
  248. this.Visit.unshift(item)
  249. this.searchValue = "";
  250. this.disdingwei = true
  251. var arr = this.Visit
  252. //数组去重
  253. function distinct(arr) {
  254. let newArr = []
  255. for (let i = 0; i < arr.length; i++) {
  256. if (newArr.indexOf(arr[i]) < 0) {
  257. newArr.push(arr[i])
  258. }
  259. }
  260. return newArr
  261. }
  262. this.Visit = distinct(arr)
  263. console.log(this.Visit, "---最近访问")
  264. uni.setStorage({
  265. key: 'Visit_key',
  266. data: this.Visit
  267. });
  268. } else {
  269. this.$emit('back_city', 'no');
  270. }
  271. },
  272. // 获取当前定位
  273. getWarpweft() {
  274. let qqmapsdk = new QQMapWX({
  275. key: 'KQDBZ-ZXORJ-U6SFF-FN2AA-UJOSS-7LF5I' // 必填
  276. });
  277. var that = this
  278. that.po_tips = '定位中...'
  279. let countdown = setInterval(() => {
  280. that.seconds--;
  281. uni.getLocation({
  282. type: 'wgs84',
  283. success: function(res) {
  284. that.longitude = res.longitude
  285. that.latitude = res.latitude
  286. qqmapsdk.reverseGeocoder({
  287. location: {
  288. latitude: res.latitude,
  289. longitude: res.longitude
  290. },
  291. success: (data) => {
  292. console.log(data)
  293. that.position = data.result.address_component.city.slice(0, 2)
  294. }
  295. })
  296. }
  297. });
  298. if (that.seconds <= 0) {
  299. that.seconds = 3
  300. that.po_tips = '重新定位'
  301. clearInterval(countdown);
  302. }
  303. }, 1000);
  304. }
  305. }
  306. };
  307. </script>
  308. <style scoped>
  309. .wrapper {
  310. position: fixed;
  311. z-index: 999999;
  312. background: #ffffff;
  313. height: 100%;
  314. width: 100%;
  315. top: 0px;
  316. left: 0px;
  317. }
  318. .mask {
  319. position: absolute;
  320. bottom: 0upx;
  321. top: 83upx;
  322. left: 0upx;
  323. right: 0upx;
  324. width: 750upx;
  325. display: flex;
  326. justify-content: center;
  327. align-items: center;
  328. background: rgba(0, 0, 0, 0);
  329. }
  330. .mask-r {
  331. height: 120upx;
  332. width: 120upx;
  333. border-radius: 60upx;
  334. display: flex;
  335. background: rgba(0, 0, 0, 0.5);
  336. justify-content: center;
  337. align-items: center;
  338. font-size: 40upx;
  339. color: #FFFFFF
  340. }
  341. .content {
  342. height: 100%;
  343. width: 100%;
  344. background-color: #ffffff;
  345. }
  346. .header {
  347. height: 85upx;
  348. display: flex;
  349. justify-content: flex-start;
  350. align-items: center;
  351. }
  352. .back_div {
  353. width: 65upx;
  354. height: 100%;
  355. display: flex;
  356. justify-content: center;
  357. align-items: center;
  358. }
  359. .back_img {
  360. width: 35upx;
  361. height: 35upx;
  362. }
  363. .input {
  364. font-size: 28upx;
  365. width: 620upx;
  366. height: 55upx;
  367. border-radius: 40upx;
  368. background-color: #F5F5F5;
  369. padding-left: 20upx;
  370. padding-right: 20upx;
  371. box-sizing: border-box;
  372. }
  373. .title {
  374. font-size: 30upx;
  375. color: white;
  376. }
  377. .show {
  378. left: 0;
  379. width: 100%;
  380. transition: left 0.3s ease;
  381. }
  382. .hide {
  383. left: 100%;
  384. width: 100%;
  385. transition: left 0.3s ease;
  386. }
  387. .title {
  388. font-size: 30upx;
  389. color: white;
  390. }
  391. .calendar-list {
  392. position: absolute;
  393. top: 83upx;
  394. bottom: 0upx;
  395. width: 100%;
  396. background-color: #FFFFFF;
  397. }
  398. .letters {
  399. position: absolute;
  400. right: 30upx;
  401. bottom: 0px;
  402. width: 50upx;
  403. top: 260upx;
  404. color: #2f9bfe;
  405. text-align: center;
  406. font-size: 24upx;
  407. }
  408. .letters-item {
  409. margin-bottom: 5upx;
  410. }
  411. .letter-header {
  412. height: 45upx;
  413. font-size: 22upx;
  414. color: #333333;
  415. padding-left: 24upx;
  416. box-sizing: border-box;
  417. display: flex;
  418. align-items: center;
  419. background-color: #ebedef;
  420. }
  421. .city-div {
  422. width: 660upx;
  423. height: 85upx;
  424. margin-left: 24upx;
  425. border-bottom-width: 0.5upx;
  426. border-bottom-color: #ebedef;
  427. border-bottom-style: solid;
  428. display: flex;
  429. align-items: center;
  430. margin-right: 35upx;
  431. }
  432. .city {
  433. font-size: 28upx;
  434. color: #000000;
  435. padding-left: 30upx;
  436. }
  437. .dingwei {
  438. width: 100%;
  439. padding-top: 25upx;
  440. box-sizing: border-box;
  441. margin-bottom: 26upx;
  442. }
  443. .dingwei_Tips {
  444. margin-left: 24upx;
  445. margin-bottom: 24upx;
  446. font-size: 24upx;
  447. color: #A5A5A5;
  448. }
  449. .dingwei_city {
  450. width: 100%;
  451. height: 60upx;
  452. padding-left: 55upx;
  453. padding-right: 70upx;
  454. box-sizing: border-box;
  455. display: flex;
  456. justify-content: space-between;
  457. }
  458. .dingwei_citys {
  459. width: 100%;
  460. /* height: 60upx; */
  461. padding-left: 55upx;
  462. padding-right: 70upx;
  463. box-sizing: border-box;
  464. display: flex;
  465. /* justify-content: space-between; */
  466. }
  467. .dingwei_city_one {
  468. width: 185upx;
  469. height: 60upx;
  470. background-color: #F5F5F5;
  471. border-radius: 10upx;
  472. font-size: 32upx;
  473. color: #333333;
  474. display: flex;
  475. justify-content: center;
  476. align-items: center;
  477. }
  478. .dingwei_city_ones {
  479. width: 185upx;
  480. height: 60upx;
  481. background-color: #F5F5F5;
  482. border-radius: 10upx;
  483. font-size: 32upx;
  484. color: #333333;
  485. display: flex;
  486. justify-content: center;
  487. align-items: center;
  488. margin-bottom: 10rpx;
  489. }
  490. .dingweis_div {
  491. display: flex;
  492. align-content: flex-end;
  493. align-items: center;
  494. font-size: 24upx;
  495. color: #FD5745;
  496. }
  497. .dingweis {
  498. width: 32upx;
  499. height: 32upx;
  500. }
  501. .dingwei_city_zuijin {
  502. display: flex;
  503. justify-content: flex-start;
  504. }
  505. .toright {
  506. margin-right: 25upx;
  507. }
  508. </style>