parkingLists20221110.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  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. <u-icon
  20. v-if="searchContent || isShowSearchParking == true"
  21. class="icon"
  22. name="close"
  23. size="36"
  24. color="#ffffff"
  25. placeholder-color="#B5B5B5"
  26. search-icon-color="#B3B3B3"
  27. @click="clearSearchInput"
  28. >
  29. </u-icon>
  30. </view>
  31. <view class="parking-map">
  32. <map
  33. id="pagemap"
  34. style="width: 100%; height: calc(100vh - 240rpx)"
  35. :show-location="true"
  36. :latitude="latitude"
  37. :longitude="longitude"
  38. @markertap="markertap"
  39. :enable-traffic="true"
  40. :enable-zoom="true"
  41. :scale="scale"
  42. :markers="covers"
  43. ></map>
  44. </view>
  45. <view class="address-box" :class="nearParkingObj.type == 'down' ? 'address-down' : 'address-up'" v-if="nearParkingFlag">
  46. <view class="address-box-down-icon" :class="{ 'up-icon': nearParkingObj.type === 'up' }" @click="pullDown"> </view>
  47. <scroll-view scroll-y class="address-box-scroll" :style="{ height: `calc(${nearParkingObj.height} - 76rpx)` }">
  48. <view class="address-box-list">
  49. <view class="address-box-list-item" v-for="(item, index) in nearParkingList" :key="index" @click="positionAddress(item)">
  50. <view class="abli-header">
  51. <view class="abli-header-title"
  52. >{{ item.roadName }} <text class="abli-header-subtitle">{{ item.areaName }}</text></view
  53. >
  54. <!-- <view class="abli-header-subtitle">{{ item.areaName }}</view> -->
  55. <view class="abli-header-surplus">
  56. <view class="abli-header-surplus-left"
  57. >余位<text>{{ item.spaceIdle }}</text></view
  58. >
  59. <view class="abli-header-surplus-right" :class="{ disabled: !item.monthAmount }" @click.stop="createMonth(item)">办理包月</view>
  60. </view>
  61. </view>
  62. <view class="abli-bottom">
  63. <view class="abli-bottom-left">
  64. <view class="abli-bottom-left-navigation" @click.stop="navigation(item.latitude, item.longitude, item.areaName)">导航</view>
  65. <view class="abli-bottom-left-distance">{{ item.distance | kmUnit }}</view>
  66. </view>
  67. <view class="abli-bottom-right" @click.stop="lookParkingRule(item)">收费规则</view>
  68. </view>
  69. </view>
  70. </view>
  71. </scroll-view>
  72. </view>
  73. <view class="parking-address-list" v-if="isShowSearchParking">
  74. <view class="parking-address-list-item" v-for="(item, index) in searchParkingList" :key="index + 's'" @click="clickSearchParking(item)">
  75. <view class="pali-left">
  76. <view>{{ item.roadName }}</view>
  77. <view>{{ item.areaName }}</view>
  78. </view>
  79. <view class="pali-right">
  80. <image src="../../static/img/distance-icon.png" mode="" @click.stop="navigation(item.latitude, item.longitude, item.areaName)"></image>
  81. <view>路线</view>
  82. </view>
  83. </view>
  84. </view>
  85. <u-select v-model="mapSelect" :list="mapSelectList" @confirm="mapSelectConfirm"></u-select>
  86. <map id="map" hidden="true"></map>
  87. <u-toast ref="uToast" />
  88. </view>
  89. </template>
  90. <script>
  91. import { qqMapTransBMap } from '@/utils/mapTrans.js';
  92. export default {
  93. data() {
  94. return {
  95. searchContent: '',
  96. page_map: '',
  97. loading: false,
  98. latitude: 26.64969,
  99. longitude: 106.636453,
  100. scale: 16,
  101. currentPosition: {
  102. latitude: 26.64969,
  103. longitude: 106.636453
  104. },
  105. covers: [],
  106. // 附近列表是否显示
  107. nearParkingFlag: false,
  108. // 轮播选中
  109. swiperCurrent: 0,
  110. // 附近停车列表
  111. nearParkingList: [],
  112. // 是否显示停车场列表
  113. isShowSearchParking: false,
  114. // 搜索停车场列表
  115. searchParkingList: [],
  116. // 显示单个停车场数据
  117. isShowParkingDetail: false,
  118. // 单个停车场数据
  119. parkingDetailData: {},
  120. mapSelect: false,
  121. mapSelectList: [
  122. {
  123. value: '1',
  124. label: '腾讯地图'
  125. },
  126. {
  127. value: '2',
  128. label: '百度地图'
  129. },
  130. {
  131. value: '3',
  132. label: '高德地图'
  133. }
  134. ],
  135. // 选中位置经纬度
  136. currentPositionHover: {},
  137. nearParkingObj: {
  138. height: '60vh',
  139. type: 'down'
  140. }
  141. };
  142. },
  143. onLoad(page) {
  144. this.getLocation();
  145. if (page.keyword) {
  146. this.searchContent = page.keyword;
  147. this.searchInputChange(page.keyword);
  148. }
  149. },
  150. methods: {
  151. /**
  152. * 查询输入框发生变化
  153. * @date 2021-08-10
  154. * @param {String} value
  155. */
  156. searchInputChange(value) {
  157. // 为空时关闭搜索列表
  158. if (value === '') {
  159. this.isShowSearchParking = false;
  160. }
  161. this.isShowParkingDetail = false;
  162. this.getNearRoadsl();
  163. },
  164. /**
  165. * 获取定位
  166. * @date 2021-08-10
  167. * @returns {any}
  168. */
  169. getLocation() {
  170. const that = this;
  171. console.log('请求定位');
  172. // that.getNearRoadsl();
  173. that.loading = true;
  174. if (navigator.geolocation) {
  175. // 判断是否有这个对象
  176. navigator.geolocation.getCurrentPosition(function (pos) {
  177. console.log('经度:' + pos.coords.longitude + '纬度:' + pos.coords.latitude);
  178. that.latitude = pos.coords.latitude;
  179. that.longitude = pos.coords.longitude;
  180. that.currentPosition.latitude = pos.coords.latitude;
  181. that.currentPosition.longitude = pos.coords.longitude;
  182. that.loading = false;
  183. that.getNearRoadsl();
  184. });
  185. } else {
  186. this.$refs.uToast.show({
  187. title: '当前系统不支持GPS API',
  188. type: 'error'
  189. });
  190. }
  191. },
  192. /**
  193. * 导航
  194. * @date 2021-08-10
  195. * @param {Number} latitude
  196. * @param {Number} longitude
  197. * @returns {any}
  198. */
  199. navigation(latitude, longitude, areaName) {
  200. this.currentPositionHover = {
  201. latitude,
  202. longitude,
  203. areaName
  204. };
  205. this.mapSelect = true;
  206. },
  207. // 多地图选择
  208. mapSelectConfirm(item) {
  209. const name = item[0].label;
  210. switch (name) {
  211. case '腾讯地图':
  212. location.href = `https://apis.map.qq.com/uri/v1/routeplan?type=drive&from=我的位置&fromcoord=${this.currentPosition.latitude},${this.currentPosition.longitude}&to=${this.currentPositionHover.areaName}&tocoord=${this.currentPositionHover.latitude},${this.currentPositionHover.longitude}&policy=1&referer=BOGBZ-2BZ33-O4L32-Y3QJR-PGN66-RFFEL`;
  213. break;
  214. case '百度地图':
  215. const lnglatObj = qqMapTransBMap(this.currentPositionHover.longitude, this.currentPositionHover.latitude);
  216. location.href = `http://api.map.baidu.com/marker?location=
  217. ${lnglatObj.lat},${lnglatObj.lng}&title=目的地&content=${this.currentPositionHover.areaName}
  218. &output=html&src=webapp.baidu.openAPIdemo`;
  219. break;
  220. case '高德地图':
  221. location.href = `https://uri.amap.com/navigation?from=${this.currentPosition.longitude},${this.currentPosition.latitude},我的位置&to=${this.currentPositionHover.longitude},${this.currentPositionHover.latitude},${this.currentPositionHover.areaName}&mode=car&policy=1&src=mypage&coordinate=gaode&callnative=0`;
  222. break;
  223. }
  224. },
  225. /**
  226. * 清空搜索框内容
  227. * @date 2021-08-10
  228. * @returns {any}
  229. */
  230. clearSearchInput() {
  231. this.searchContent = '';
  232. this.isShowSearchParking = false;
  233. this.getNearRoadsl();
  234. },
  235. /**
  236. * 默认首个点放大 如果有传入经纬度则对应的点放大
  237. * @date 2021-08-10
  238. * @param {Number} lon
  239. * @param {Number} lat
  240. * @returns {any}
  241. */
  242. getNearRoadsl(lon, lat) {
  243. this.$u.api
  244. .nearRoadsl({
  245. latitude: this.currentPosition.latitude,
  246. longitude: this.currentPosition.longitude,
  247. roadName: this.searchContent
  248. })
  249. .then((res) => {
  250. const nearParkingList = []; // 附近停车场列表
  251. this.covers = [];
  252. res.data.forEach((item, index, arr) => {
  253. if (item.latitude && item.longitude) {
  254. nearParkingList.push(item);
  255. const marker = {
  256. latitude: item.latitude,
  257. longitude: item.longitude,
  258. id: String(index),
  259. iconPath: require('./../../static/img/parking-icon.png'),
  260. width: 20,
  261. height: 25
  262. };
  263. // 选中经纬度图标变大
  264. if (lon && lat) {
  265. if (lon === item.longitude && lat === item.latitude) {
  266. marker.width = 40;
  267. marker.height = 50;
  268. }
  269. } else {
  270. if (this.covers.length > 0) {
  271. this.covers[0].width = 40;
  272. this.covers[0].height = 50;
  273. }
  274. }
  275. this.covers.push(marker);
  276. }
  277. });
  278. this.nearParkingList = nearParkingList;
  279. if (nearParkingList.length > 0) {
  280. this.latitude = nearParkingList[0]?.latitude || this.currentPosition.latitude;
  281. this.longitude = nearParkingList[0]?.longitude || this.currentPosition.longitude;
  282. } else {
  283. this.$refs.uToast.show({
  284. title: '没有相关停车场信息',
  285. type: 'warning'
  286. });
  287. }
  288. this.nearParkingFlag = true;
  289. if (this.searchContent) {
  290. this.searchParkingList = nearParkingList;
  291. this.isShowSearchParking = true;
  292. this.nearParkingFlag = false;
  293. }
  294. })
  295. .catch((err) => {
  296. this.$refs.uToast.show({
  297. title: err.msg,
  298. type: 'error'
  299. });
  300. });
  301. },
  302. /**
  303. * 点击地图上的标记点触发
  304. **/
  305. markertap(e) {
  306. let lon, lat;
  307. this.covers.forEach((item, index) => {
  308. if (e.detail.markerId === item.id) {
  309. lon = item.longitude;
  310. lat = item.latitude;
  311. this.swiperCurrent = index;
  312. }
  313. });
  314. this.getNearRoadsl(lon, lat);
  315. },
  316. /**
  317. * 地址发生变化
  318. * @date 2021-08-10
  319. * @param {Object} item
  320. * @returns {any}
  321. */
  322. swiperChange(item) {
  323. const map = uni.createMapContext('pagemap');
  324. map.moveToLocation({
  325. longitude: this.nearParkingList[item.detail.current].longitude,
  326. latitude: this.nearParkingList[item.detail.current].latitude
  327. });
  328. this.getNearRoadsl(this.nearParkingList[item.detail.current].longitude, this.nearParkingList[item.detail.current].latitude);
  329. },
  330. /**
  331. * 点击单个地址
  332. * @date 2022-08-31
  333. * @param {any} item
  334. * @returns {any}
  335. */
  336. positionAddress(item) {
  337. const map = uni.createMapContext('pagemap');
  338. map.moveToLocation({
  339. longitude: item.longitude,
  340. latitude: item.latitude
  341. });
  342. this.getNearRoadsl(item.longitude, item.latitude);
  343. },
  344. /**
  345. * 点击单个停车场看详情
  346. * @date 2021-08-10
  347. * @param {Object} item 为选中项参数
  348. * @returns {any}
  349. */
  350. clickSearchParking(item) {
  351. if (item.monthAmount) {
  352. this.$u.route({
  353. url: 'pages/parkingInformation/parkingInformation',
  354. params: {
  355. roadInfo: JSON.stringify(item),
  356. longitude: this.currentPosition.longitude,
  357. latitude: this.currentPosition.latitude
  358. }
  359. });
  360. }
  361. },
  362. /**
  363. * 跳转停车标准页面
  364. * @date 2021-08-10
  365. * @param {Object} item
  366. * @returns {any}
  367. */
  368. lookParkingRule(item) {
  369. this.$u.route({
  370. url: 'pages/chargeStandard/chargeStandard',
  371. params: {
  372. roadNo: item.roadNo
  373. }
  374. });
  375. },
  376. /**
  377. * 搜索右侧按钮点击
  378. **/
  379. listIconClick() {
  380. this.isShowSearchParking = true;
  381. this.nearParkingFlag = false;
  382. this.searchParkingList = this.nearParkingList;
  383. },
  384. /**
  385. * 跳转包月
  386. * @date 2021-08-10
  387. * @param {Object} item
  388. * @returns {any}
  389. */
  390. createMonth(item) {
  391. if (item.monthAmount) {
  392. this.$u.route({
  393. url: 'pages/handleMonthly/handleMonthly',
  394. params: {
  395. roadNo: item.roadNo
  396. }
  397. });
  398. }
  399. },
  400. pullDown() {
  401. if (this.nearParkingObj.height === '20vh') {
  402. this.nearParkingObj.height = '60vh';
  403. this.nearParkingObj.type = 'down';
  404. } else {
  405. this.nearParkingObj.height = '20vh';
  406. this.nearParkingObj.type = 'up';
  407. }
  408. }
  409. }
  410. };
  411. </script>
  412. <style lang="scss" scoped>
  413. .wrap {
  414. margin-top: 20vh;
  415. }
  416. @import './parkingLists.scss';
  417. </style>