parkingLists.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. <template>
  2. <view class="parking">
  3. <view class="loading" v-show="loading">
  4. <u-loadmore status="loading" icon-type="flower" :load-text="{ loading: '正在定位中...' }" />
  5. </view>
  6. <view class="parking-header">
  7. <u-search placeholder="搜索停车点" v-model="searchContent" :show-action="false" @change="searchInputChange"> </u-search>
  8. <u-icon
  9. v-if="!searchContent && isShowSearchParking == false"
  10. class="icon"
  11. name="list"
  12. size="44"
  13. color="#ffffff"
  14. placeholder-color="#B5B5B5"
  15. search-icon-color="#B3B3B3"
  16. @click="listIconClick"
  17. />
  18. <u-icon
  19. v-if="searchContent || isShowSearchParking == true"
  20. class="icon"
  21. name="close"
  22. size="36"
  23. color="#ffffff"
  24. placeholder-color="#B5B5B5"
  25. search-icon-color="#B3B3B3"
  26. @click="clearSearchInput"
  27. />
  28. </view>
  29. <view class="parking-map">
  30. <map
  31. id="pagemap"
  32. style="width: 100%; height: calc(100vh - 240rpx)"
  33. :show-location="true"
  34. :latitude="latitude"
  35. :longitude="longitude"
  36. @markertap="markertap"
  37. :enable-traffic="true"
  38. :enable-zoom="true"
  39. :scale="scale"
  40. :markers="covers"
  41. />
  42. </view>
  43. <view class="address-box" :class="nearParkingObj.type == 'down' ? 'address-down' : 'address-up'" v-if="nearParkingFlag">
  44. <view class="address-box-down-icon" :class="{ 'up-icon': nearParkingObj.type === 'up' }" @click="pullDown"> </view>
  45. <!-- tab -->
  46. <template v-if="projectFlag !== 'zhenning'">
  47. <u-tabs :list="tabObj.tabList" :is-scroll="false" :current="tabObj.current" bg-color="transparent" @change="tabChange" />
  48. </template>
  49. <scroll-view scroll-y class="address-box-scroll" :style="{ height: `calc(${nearParkingObj.height} - 164rpx)` }">
  50. <view class="address-box-list" v-if="nearParkingList.length > 0">
  51. <view class="address-box-list-item" v-for="(item, index) in nearParkingList" :key="index" @click="positionAddress(item)">
  52. <view class="abli-header">
  53. <view class="abli-header-title"
  54. >{{ item.roadName || item.parkName }} <text class="abli-header-subtitle">{{ item.areaName }}</text></view
  55. >
  56. <view class="abli-header-surplus">
  57. <view class="abli-header-surplus-left">
  58. 余位<text>{{ item.spaceIdle || item.surplusPlace }}</text></view
  59. >
  60. <template v-if="tabObj.current === 1">
  61. <view class="abli-header-surplus-right" @click.stop="createMonth(item)">办理包月</view>
  62. </template>
  63. <template v-else-if="item.monthAmount">
  64. <view class="abli-header-surplus-right" @click.stop="createMonth(item)">办理包月</view>
  65. </template>
  66. <template v-else>
  67. <view class="abli-header-surplus-right" :class="{ disabled: !item.monthAmount }"> 办理包月</view>
  68. </template>
  69. </view>
  70. </view>
  71. <view class="abli-bottom">
  72. <view class="abli-bottom-left">
  73. <view class="abli-bottom-left-navigation" @click.stop="navigation(item.latitude, item.longitude, item.areaName)">导航</view>
  74. <view class="abli-bottom-left-distance">{{ item.distance | kmUnit }}</view>
  75. </view>
  76. <view class="abli-bottom-right" @click.stop="lookParkingRule(item)">收费规则</view>
  77. </view>
  78. </view>
  79. </view>
  80. <view class="address-box-list" v-else>
  81. <u-empty text="暂无数据" mode="list"></u-empty>
  82. </view>
  83. </scroll-view>
  84. </view>
  85. <view class="parking-address-list" v-if="isShowSearchParking">
  86. <view class="parking-address-list-item" v-for="(item, index) in searchParkingList" :key="index + 's'" @click="clickSearchParking(item)">
  87. <view class="pali-left">
  88. <view>{{ item.roadName || item.parkName }}</view>
  89. <view>{{ item.areaName }}</view>
  90. </view>
  91. <view class="pali-right">
  92. <image src="../../static/img/distance-icon.png" mode="" @click.stop="navigation(item.latitude, item.longitude, item.areaName)"></image>
  93. <view>路线</view>
  94. </view>
  95. </view>
  96. </view>
  97. <u-select v-model="mapSelect" :list="mapSelectList" @confirm="mapSelectConfirm" />
  98. <map id="map" hidden="true" />
  99. <u-toast ref="uToast" />
  100. </view>
  101. </template>
  102. <script>
  103. import { qqMapTransBMap } from '@/utils/mapTrans.js';
  104. export default {
  105. data() {
  106. return {
  107. tabObj: {
  108. current: 0,
  109. tabList: [
  110. {
  111. name: '路段'
  112. },
  113. {
  114. name: '停车场'
  115. }
  116. ]
  117. },
  118. searchContent: '',
  119. page_map: '',
  120. loading: false,
  121. latitude: 26.64969,
  122. longitude: 106.636453,
  123. scale: 16,
  124. currentPosition: {
  125. latitude: 26.64969,
  126. longitude: 106.636453
  127. },
  128. covers: [],
  129. // 附近列表是否显示
  130. nearParkingFlag: false,
  131. // 轮播选中
  132. swiperCurrent: 0,
  133. // 附近停车列表
  134. nearParkingList: [],
  135. // 是否显示停车场列表
  136. isShowSearchParking: false,
  137. // 搜索停车场列表
  138. searchParkingList: [],
  139. // 显示单个停车场数据
  140. isShowParkingDetail: false,
  141. // 单个停车场数据
  142. parkingDetailData: {},
  143. mapSelect: false,
  144. mapSelectList: [
  145. {
  146. value: '1',
  147. label: '腾讯地图'
  148. },
  149. {
  150. value: '2',
  151. label: '百度地图'
  152. },
  153. {
  154. value: '3',
  155. label: '高德地图'
  156. }
  157. ],
  158. // 选中位置经纬度
  159. currentPositionHover: {},
  160. nearParkingObj: {
  161. height: '60vh',
  162. type: 'down'
  163. }
  164. };
  165. },
  166. onLoad(page) {
  167. this.getLocation();
  168. if (page.keyword) {
  169. this.searchContent = page.keyword;
  170. this.searchInputChange(page.keyword);
  171. }
  172. },
  173. methods: {
  174. /**
  175. * 查询输入框发生变化
  176. * @date 2021-08-10
  177. * @param {String} value
  178. */
  179. searchInputChange(value) {
  180. // 为空时关闭搜索列表
  181. if (value === '') {
  182. this.isShowSearchParking = false;
  183. }
  184. this.isShowParkingDetail = false;
  185. const obj = {
  186. 0: 'getNearRoadsl',
  187. 1: 'getParkingLotList'
  188. };
  189. this[obj[this.tabObj.current]]();
  190. },
  191. /**
  192. * 获取定位
  193. * @date 2021-08-10
  194. * @returns {any}
  195. */
  196. getLocation() {
  197. const that = this;
  198. console.log('请求定位');
  199. that.loading = true;
  200. if (navigator.geolocation) {
  201. // 判断是否有这个对象
  202. navigator.geolocation.getCurrentPosition(
  203. function (pos) {
  204. console.log('浏览器获取位置成功:', JSON.stringify(pos));
  205. console.log('经度:' + pos.coords.longitude + '纬度:' + pos.coords.latitude);
  206. that.latitude = pos.coords.latitude;
  207. that.longitude = pos.coords.longitude;
  208. that.currentPosition.latitude = pos.coords.latitude;
  209. that.currentPosition.longitude = pos.coords.longitude;
  210. that.loading = false;
  211. const obj = {
  212. 0: 'getNearRoadsl',
  213. 1: 'getParkingLotList'
  214. };
  215. that[obj[that.tabObj.current]]();
  216. },
  217. function (err) {
  218. console.log('浏览器获取位置失败:', JSON.stringify(err));
  219. uni.getLocation({
  220. type: 'gcj02',
  221. success: function (res) {
  222. console.log('当前位置的经度:' + res.longitude);
  223. console.log('当前位置的纬度:' + res.latitude);
  224. that.currentPosition.latitude = res.latitude;
  225. that.currentPosition.longitude = res.longitude;
  226. that.loading = false;
  227. const obj = {
  228. 0: 'getNearRoadsl',
  229. 1: 'getParkingLotList'
  230. };
  231. that[obj[that.tabObj.current]]();
  232. }
  233. });
  234. }
  235. );
  236. } else {
  237. this.$refs.uToast.show({
  238. title: '当前系统不支持GPS API',
  239. type: 'error'
  240. });
  241. }
  242. },
  243. /**
  244. * 导航
  245. * @date 2021-08-10
  246. * @param {Number} latitude
  247. * @param {Number} longitude
  248. * @returns {any}
  249. */
  250. navigation(latitude, longitude, areaName) {
  251. this.currentPositionHover = {
  252. latitude,
  253. longitude,
  254. areaName
  255. };
  256. this.mapSelect = true;
  257. },
  258. // 多地图选择
  259. mapSelectConfirm(item) {
  260. const name = item[0].label;
  261. switch (name) {
  262. case '腾讯地图':
  263. location.href = `https://apis.map.qq.com/uri/v1/routeplan?type=drive&from=我的位置&fromcoord=${this.currentPosition.latitude},${
  264. this.currentPosition.longitude
  265. }&to=${this.currentPositionHover.areaName || item.parkName}&tocoord=${this.currentPositionHover.latitude},${
  266. this.currentPositionHover.longitude
  267. }&policy=1&referer=BOGBZ-2BZ33-O4L32-Y3QJR-PGN66-RFFEL`;
  268. break;
  269. case '百度地图':
  270. const lnglatObj = qqMapTransBMap(this.currentPositionHover.longitude, this.currentPositionHover.latitude);
  271. location.href = `http://api.map.baidu.com/marker?location=
  272. ${lnglatObj.lat},${lnglatObj.lng}&title=目的地&content=${this.currentPositionHover.areaName || item.parkName}
  273. &output=html&src=webapp.baidu.openAPIdemo`;
  274. break;
  275. case '高德地图':
  276. location.href = `https://uri.amap.com/navigation?from=${this.currentPosition.longitude},${this.currentPosition.latitude},我的位置&to=${
  277. this.currentPositionHover.longitude
  278. },${this.currentPositionHover.latitude},${
  279. this.currentPositionHover.areaName || item.parkName
  280. }&mode=car&policy=1&src=mypage&coordinate=gaode&callnative=0`;
  281. break;
  282. }
  283. },
  284. /**
  285. * 清空搜索框内容
  286. * @date 2021-08-10
  287. * @returns {any}
  288. */
  289. clearSearchInput() {
  290. this.searchContent = '';
  291. this.isShowSearchParking = false;
  292. const obj = {
  293. 0: 'getNearRoadsl',
  294. 1: 'getParkingLotList'
  295. };
  296. this[obj[this.tabObj.current]]();
  297. },
  298. /**
  299. * 默认首个点放大 如果有传入经纬度则对应的点放大
  300. * @date 2021-08-10
  301. * @param {Number} lon
  302. * @param {Number} lat
  303. * @returns {any}
  304. */
  305. getNearRoadsl(lon, lat) {
  306. this.$u.api
  307. .nearRoadsl({
  308. latitude: this.currentPosition.latitude,
  309. longitude: this.currentPosition.longitude,
  310. roadName: this.searchContent
  311. })
  312. .then((res) => {
  313. const nearParkingList = []; // 附近停车场列表
  314. this.covers = [];
  315. res.data.forEach((item, index, arr) => {
  316. if (item.latitude && item.longitude) {
  317. nearParkingList.push(item);
  318. const marker = {
  319. latitude: item.latitude,
  320. longitude: item.longitude,
  321. id: String(index),
  322. iconPath: require('./../../static/img/parking-icon.png'),
  323. width: 20,
  324. height: 25
  325. };
  326. // 选中经纬度图标变大
  327. if (lon && lat) {
  328. if (lon === item.longitude && lat === item.latitude) {
  329. marker.width = 40;
  330. marker.height = 50;
  331. }
  332. } else {
  333. if (this.covers.length > 0) {
  334. this.covers[0].width = 40;
  335. this.covers[0].height = 50;
  336. }
  337. }
  338. this.covers.push(marker);
  339. }
  340. });
  341. this.nearParkingList = nearParkingList;
  342. if (nearParkingList.length > 0) {
  343. this.latitude = nearParkingList[0]?.latitude || this.currentPosition.latitude;
  344. this.longitude = nearParkingList[0]?.longitude || this.currentPosition.longitude;
  345. }
  346. this.nearParkingFlag = true;
  347. if (this.searchContent) {
  348. this.searchParkingList = nearParkingList;
  349. this.isShowSearchParking = true;
  350. this.nearParkingFlag = false;
  351. }
  352. })
  353. .catch((err) => {
  354. this.$refs.uToast.show({
  355. title: err.msg,
  356. type: 'error'
  357. });
  358. });
  359. },
  360. getParkingLotList(lon, lat) {
  361. this.$u.api
  362. .nearParkingLot({
  363. status: 1,
  364. latitude: this.currentPosition.latitude,
  365. longitude: this.currentPosition.longitude,
  366. parkName: this.searchContent
  367. })
  368. .then((res) => {
  369. const nearParkingList = []; // 附近停车场列表
  370. this.covers = [];
  371. res?.data?.rows.forEach((item, index, arr) => {
  372. if (item.latitude && item.longitude) {
  373. nearParkingList.push(item);
  374. const marker = {
  375. latitude: item.latitude,
  376. longitude: item.longitude,
  377. id: String(index),
  378. iconPath: require('./../../static/img/parking-icon.png'),
  379. width: 20,
  380. height: 25
  381. };
  382. // 选中经纬度图标变大
  383. if (lon && lat) {
  384. if (lon === item.longitude && lat === item.latitude) {
  385. marker.width = 40;
  386. marker.height = 50;
  387. }
  388. } else {
  389. if (this.covers.length > 0) {
  390. this.covers[0].width = 40;
  391. this.covers[0].height = 50;
  392. }
  393. }
  394. this.covers.push(marker);
  395. }
  396. });
  397. this.nearParkingList = nearParkingList;
  398. if (nearParkingList.length > 0) {
  399. this.latitude = nearParkingList[0]?.latitude || this.currentPosition.latitude;
  400. this.longitude = nearParkingList[0]?.longitude || this.currentPosition.longitude;
  401. }
  402. this.nearParkingFlag = true;
  403. if (this.searchContent) {
  404. this.searchParkingList = nearParkingList;
  405. this.isShowSearchParking = true;
  406. this.nearParkingFlag = false;
  407. }
  408. })
  409. .catch((err) => {
  410. this.$refs.uToast.show({
  411. title: err.msg,
  412. type: 'error'
  413. });
  414. });
  415. },
  416. /**
  417. * 点击地图上的标记点触发
  418. **/
  419. markertap(e) {
  420. let lon, lat;
  421. this.covers.forEach((item, index) => {
  422. if (e.detail.markerId === item.id) {
  423. lon = item.longitude;
  424. lat = item.latitude;
  425. this.swiperCurrent = index;
  426. }
  427. });
  428. const obj = {
  429. 0: 'getNearRoadsl',
  430. 1: 'getParkingLotList'
  431. };
  432. this[obj[this.tabObj.current]](lon, lat);
  433. },
  434. /**
  435. * 地址发生变化
  436. * @date 2021-08-10
  437. * @param {Object} item
  438. * @returns {any}
  439. */
  440. swiperChange(item) {
  441. const map = uni.createMapContext('pagemap');
  442. map.moveToLocation({
  443. longitude: this.nearParkingList[item.detail.current].longitude,
  444. latitude: this.nearParkingList[item.detail.current].latitude
  445. });
  446. const obj = {
  447. 0: 'getNearRoadsl',
  448. 1: 'getParkingLotList'
  449. };
  450. this[obj[this.tabObj.current]](this.nearParkingList[item.detail.current].longitude, this.nearParkingList[item.detail.current].latitude);
  451. },
  452. /**
  453. * 点击单个地址
  454. * @date 2022-08-31
  455. * @param {any} item
  456. * @returns {any}
  457. */
  458. positionAddress(item) {
  459. const map = uni.createMapContext('pagemap');
  460. map.moveToLocation({
  461. longitude: item.longitude,
  462. latitude: item.latitude
  463. });
  464. const obj = {
  465. 0: 'getNearRoadsl',
  466. 1: 'getParkingLotList'
  467. };
  468. this[obj[this.tabObj.current]](item.longitude, item.latitude);
  469. },
  470. /**
  471. * 点击单个停车场看详情
  472. * @date 2021-08-10
  473. * @param {Object} item 为选中项参数
  474. * @returns {any}
  475. */
  476. clickSearchParking(item) {
  477. if (item.monthAmount) {
  478. this.$u.route({
  479. url: 'pages/parkingInformation/parkingInformation',
  480. params: {
  481. roadInfo: JSON.stringify(item),
  482. longitude: this.currentPosition.longitude,
  483. latitude: this.currentPosition.latitude
  484. }
  485. });
  486. }
  487. },
  488. /**
  489. * 跳转停车标准页面
  490. * @date 2021-08-10
  491. * @param {Object} item
  492. * @returns {any}
  493. */
  494. lookParkingRule(item) {
  495. const obj = {
  496. 0: 'roadNo',
  497. 1: 'parkNo'
  498. };
  499. const params = {};
  500. params[obj[this.tabObj.current]] = item[obj[this.tabObj.current]];
  501. this.$u.route({
  502. url: 'pages/chargeStandard/chargeStandard',
  503. params
  504. });
  505. },
  506. /**
  507. * 搜索右侧按钮点击
  508. **/
  509. listIconClick() {
  510. this.isShowSearchParking = true;
  511. this.nearParkingFlag = false;
  512. this.searchParkingList = this.nearParkingList;
  513. },
  514. /**
  515. * 跳转包月
  516. * @date 2021-08-10
  517. * @param {Object} item
  518. * @returns {any}
  519. */
  520. createMonth(item) {
  521. const obj = {
  522. 0: 'roadNo',
  523. 1: 'parkNo'
  524. };
  525. const params = {};
  526. params[obj[this.tabObj.current]] = item[obj[this.tabObj.current]];
  527. this.$u.route({
  528. url: 'pages/handleMonthly/handleMonthly',
  529. params
  530. });
  531. },
  532. pullDown() {
  533. if (this.nearParkingObj.height === '20vh') {
  534. this.nearParkingObj.height = '60vh';
  535. this.nearParkingObj.type = 'down';
  536. } else {
  537. this.nearParkingObj.height = '20vh';
  538. this.nearParkingObj.type = 'up';
  539. }
  540. },
  541. /**
  542. * tab切换触发
  543. * @param {Object} val
  544. */
  545. tabChange(val) {
  546. this.tabObj.current = val;
  547. const obj = {
  548. 0: 'getNearRoadsl',
  549. 1: 'getParkingLotList'
  550. };
  551. this[obj[val]]();
  552. }
  553. }
  554. };
  555. </script>
  556. <style lang="scss" scoped>
  557. .wrap {
  558. margin-top: 20vh;
  559. }
  560. @import './parkingLists.scss';
  561. </style>