parkingLists - 副本.vue 13 KB

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