linzq-citySelect.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  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_city dingwei_city_zuijin">
  32. <view class="dingwei_city_one toright" v-for="(item,index) in hotCity" :key="index" v-if="index<3" @click="back_city(item)">
  33. {{item.cityName}}
  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.cityName}}
  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.cityName }}</text>
  54. </view>
  55. </view>
  56. <!-- 搜索结果 -->
  57. <view class="city-div" v-for="(item, index) in searchList" @click="back_city(item)">
  58. <text class="city">{{ item.cityName }}</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. statusBarHeight: this.statusBarHeight,
  89. ImgUrl: this.ImgUrl,
  90. letter: [],
  91. selectLetter: '',
  92. searchValue: '',
  93. scrollIntoId: '',
  94. list: [],
  95. tId: null,
  96. searchList: [],
  97. showMask: false,
  98. disdingwei: true,
  99. Visit: [], //最近访问
  100. position: '青岛',
  101. longitude: '', //经度
  102. latitude: '', //纬度
  103. seconds: 3,
  104. po_tips: '重新定位',
  105. }
  106. },
  107. created() {
  108. //获取存储的最近访问
  109. var that = this
  110. uni.getStorage({
  111. key: 'Visit_key',
  112. success: function(res) {
  113. that.Visit = res.data
  114. }
  115. });
  116. //获取定位 经度纬度
  117. that.getWarpweft()
  118. //获取city.js 的程序字母
  119. var mu = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'w', 'x', 'y',
  120. 'z'
  121. ];
  122. var tmp = [];
  123. for (var i = 0; i < mu.length; i++) {
  124. var item = mu[i];
  125. for (var j = 0; j < this.citys.length; j++) {
  126. var py = this.citys[j].py;
  127. if (py.substring(0, 1) == item) {
  128. if (tmp.indexOf(item) == -1) {
  129. this.list[i] = [this.citys[j]];
  130. tmp.push(item);
  131. this.letter.push(item.toUpperCase());
  132. } else {
  133. this.list[i].push(this.citys[j]);
  134. }
  135. }
  136. }
  137. }
  138. },
  139. methods: {
  140. // 选择当前定位的
  141. selectCity(){
  142. this.$emit('selectCity',this.position)
  143. },
  144. getId(index) {
  145. return this.letter[index];
  146. },
  147. scrollTo(letter) {
  148. this.showMask = true
  149. this.selectLetter = letter == 'hot' ? '最' : letter
  150. setTimeout(() => {
  151. this.showMask = false
  152. }, 300);
  153. this.scrollIntoId = letter;
  154. },
  155. query(source, text) {
  156. let res = [];
  157. var self = this;
  158. res = source.filter(item => {
  159. const arr = [];
  160. let isHave = false;
  161. Object.keys(item).forEach(prop => {
  162. const itemStr = item[prop];
  163. self.isString(itemStr) &&
  164. itemStr.split(',').forEach(val => {
  165. arr.push(val);
  166. });
  167. });
  168. arr.some(val => {
  169. isHave = new RegExp('^' + text).test(val);
  170. return isHave;
  171. });
  172. return isHave;
  173. });
  174. console.log(JSON.stringify(res));
  175. return res;
  176. },
  177. isString(obj) {
  178. return typeof obj === 'string';
  179. },
  180. onInput(e) {
  181. const value = e.target.value;
  182. console.log(value);
  183. if (value !== '' && this.citys && this.citys.length > 0) {
  184. const queryData = this.query(this.citys, String(value).trim());
  185. this.searchList = queryData;
  186. this.disdingwei = false
  187. } else {
  188. this.searchList = [];
  189. this.disdingwei = true
  190. }
  191. },
  192. back_city(item) {
  193. if (item) {
  194. this.$emit('back_city', item);
  195. //unshift 把数据插入到首位,与push相反
  196. this.Visit.unshift(item)
  197. this.searchValue = "";
  198. this.disdingwei = true
  199. var arr = this.Visit
  200. //数组去重
  201. function distinct(arr) {
  202. let newArr = []
  203. for (let i = 0; i < arr.length; i++) {
  204. if (newArr.indexOf(arr[i]) < 0) {
  205. newArr.push(arr[i])
  206. }
  207. }
  208. return newArr
  209. }
  210. this.Visit = distinct(arr)
  211. console.log(this.Visit, "---最近访问")
  212. uni.setStorage({
  213. key: 'Visit_key',
  214. data: this.Visit
  215. });
  216. } else {
  217. this.$emit('back_city', 'no');
  218. }
  219. },
  220. // 获取当前定位
  221. getWarpweft() {
  222. let qqmapsdk = new QQMapWX({
  223. key: 'KQDBZ-ZXORJ-U6SFF-FN2AA-UJOSS-7LF5I' // 必填
  224. });
  225. var that = this
  226. that.po_tips = '定位中...'
  227. let countdown = setInterval(() => {
  228. that.seconds--;
  229. uni.getLocation({
  230. type: 'wgs84',
  231. success: function(res) {
  232. that.longitude = res.longitude
  233. that.latitude = res.latitude
  234. qqmapsdk.reverseGeocoder({
  235. location: {
  236. latitude: res.latitude,
  237. longitude: res.longitude
  238. },
  239. success:(data)=> {
  240. console.log(data)
  241. that.position=data.result.address_component.city.slice(0,2)
  242. }
  243. })
  244. }
  245. });
  246. if (that.seconds <= 0) {
  247. that.seconds = 3
  248. that.po_tips = '重新定位'
  249. clearInterval(countdown);
  250. }
  251. }, 1000);
  252. }
  253. }
  254. };
  255. </script>
  256. <style scoped>
  257. .wrapper {
  258. position: fixed;
  259. z-index: 999999;
  260. background: #ffffff;
  261. height: 100%;
  262. width: 100%;
  263. top: 0px;
  264. left: 0px;
  265. }
  266. .mask {
  267. position: absolute;
  268. bottom: 0upx;
  269. top: 83upx;
  270. left: 0upx;
  271. right: 0upx;
  272. width: 750upx;
  273. display: flex;
  274. justify-content: center;
  275. align-items: center;
  276. background: rgba(0, 0, 0, 0);
  277. }
  278. .mask-r {
  279. height: 120upx;
  280. width: 120upx;
  281. border-radius: 60upx;
  282. display: flex;
  283. background: rgba(0, 0, 0, 0.5);
  284. justify-content: center;
  285. align-items: center;
  286. font-size: 40upx;
  287. color: #FFFFFF
  288. }
  289. .content {
  290. height: 100%;
  291. width: 100%;
  292. background-color: #ffffff;
  293. }
  294. .header {
  295. height: 85upx;
  296. display: flex;
  297. justify-content: flex-start;
  298. align-items: center;
  299. }
  300. .back_div {
  301. width: 65upx;
  302. height: 100%;
  303. display: flex;
  304. justify-content: center;
  305. align-items: center;
  306. }
  307. .back_img {
  308. width: 35upx;
  309. height: 35upx;
  310. }
  311. .input {
  312. font-size: 28upx;
  313. width: 620upx;
  314. height: 55upx;
  315. border-radius: 40upx;
  316. background-color: #F5F5F5;
  317. padding-left: 20upx;
  318. padding-right: 20upx;
  319. box-sizing: border-box;
  320. }
  321. .title {
  322. font-size: 30upx;
  323. color: white;
  324. }
  325. .show {
  326. left: 0;
  327. width: 100%;
  328. transition: left 0.3s ease;
  329. }
  330. .hide {
  331. left: 100%;
  332. width: 100%;
  333. transition: left 0.3s ease;
  334. }
  335. .title {
  336. font-size: 30upx;
  337. color: white;
  338. }
  339. .calendar-list {
  340. position: absolute;
  341. top: 83upx;
  342. bottom: 0upx;
  343. width: 100%;
  344. background-color: #FFFFFF;
  345. }
  346. .letters {
  347. position: absolute;
  348. right: 30upx;
  349. bottom: 0px;
  350. width: 50upx;
  351. top: 260upx;
  352. color: #2f9bfe;
  353. text-align: center;
  354. font-size: 24upx;
  355. }
  356. .letters-item {
  357. margin-bottom: 5upx;
  358. }
  359. .letter-header {
  360. height: 45upx;
  361. font-size: 22upx;
  362. color: #333333;
  363. padding-left: 24upx;
  364. box-sizing: border-box;
  365. display: flex;
  366. align-items: center;
  367. background-color: #ebedef;
  368. }
  369. .city-div {
  370. width: 660upx;
  371. height: 85upx;
  372. margin-left: 24upx;
  373. border-bottom-width: 0.5upx;
  374. border-bottom-color: #ebedef;
  375. border-bottom-style: solid;
  376. display: flex;
  377. align-items: center;
  378. margin-right: 35upx;
  379. }
  380. .city {
  381. font-size: 28upx;
  382. color: #000000;
  383. padding-left: 30upx;
  384. }
  385. .dingwei {
  386. width: 100%;
  387. padding-top: 25upx;
  388. box-sizing: border-box;
  389. margin-bottom: 26upx;
  390. }
  391. .dingwei_Tips {
  392. margin-left: 24upx;
  393. margin-bottom: 24upx;
  394. font-size: 24upx;
  395. color: #A5A5A5;
  396. }
  397. .dingwei_city {
  398. width: 100%;
  399. height: 60upx;
  400. padding-left: 55upx;
  401. padding-right: 70upx;
  402. box-sizing: border-box;
  403. display: flex;
  404. justify-content: space-between;
  405. }
  406. .dingwei_city_one {
  407. width: 185upx;
  408. height: 60upx;
  409. background-color: #F5F5F5;
  410. border-radius: 10upx;
  411. font-size: 32upx;
  412. color: #333333;
  413. display: flex;
  414. justify-content: center;
  415. align-items: center;
  416. }
  417. .dingweis_div {
  418. display: flex;
  419. align-content: flex-end;
  420. align-items: center;
  421. font-size: 24upx;
  422. color: #FD5745;
  423. }
  424. .dingweis {
  425. width: 32upx;
  426. height: 32upx;
  427. }
  428. .dingwei_city_zuijin {
  429. display: flex;
  430. justify-content: flex-start;
  431. }
  432. .toright {
  433. margin-right: 25upx;
  434. }
  435. </style>