郭宇琦 2 hafta önce
ebeveyn
işleme
99b74a9481

+ 15 - 1
App.vue

@@ -6,7 +6,6 @@
 	var storage = require('./common/storage.js');
 	import SystemInfoUtil from './common/SystemInfoUtil.js';
 	var eventBus = require('./common/event.js');
-
 	export default {
 		data() {
 			return {};
@@ -82,4 +81,19 @@
 	     font-family: DIN;
 	     src: url('~@/static/font/DIN-MediumItalicAlt.otf');
 	 }
+	 .map-label {
+	 	min-width: 250rpx;
+		padding: 0 20rpx;
+	 	height: 56rpx;
+	 	background: #FFFFFF;
+	 	box-shadow: 0rpx 0rpx 16rpx 0rpx rgba(197,208,219,0.6);
+	 	border-radius: 28rpx;
+		font-weight: 500;
+		font-size: 26rpx;
+		color: #060809;
+		display: flex;
+		align-items: center;
+		justify-content: center;
+		margin-top: 120rpx;
+	 }
 </style>

+ 2 - 0
common/request.js

@@ -132,6 +132,7 @@ async function getApi(url, data) {
 	data.token = token;
 	data.v = config.APP_VERSION;
 	data.appid = appid
+	data.from = 'app'
 	//#ifdef MP-ALIPAY
 	data.from = 'ali'
 	//#endif
@@ -149,6 +150,7 @@ async function postApi(url, data) {
 	data.token = token;
 	data.v = config.APP_VERSION;
 	data.appid = appid
+	data.from = 'app'
 	//#ifdef MP-ALIPAY
 	data.from = 'ali'
 	//#endif

+ 212 - 0
component/googleMap/googleMap.vue

@@ -0,0 +1,212 @@
+<template>
+	<view class="content">
+		<view style="position: relative;" id="container">
+			<view class="loader"></view>
+			<view style="width: 100%; height: calc(50vh - 0rpx)" id="mapModule" :prop="nearCabinetList"
+				:change:prop="mapModule.update" :change:markersIcon='mapModule.markersIcon'
+				:change:markersIconActive='mapModule.markersIconActive' :markersIcon='markersIcon'
+				:markersIconActive='markersIconActive' :lngLat="myLocation" :change:lngLat="mapModule.initAmap"></view>
+
+		</view>
+	</view>
+</template>
+<script module="mapModule" lang="renderjs">
+	var common = require("@/common/common.js");
+	var transform = require('../../common/transform.js');
+	var meMarker = []
+	var polylinePath = null
+	export default {
+		data() {
+			return {
+				infoWindow: {},
+				selectedMarker: null,
+				defaultIcon: {},
+				selectedIcon: {},
+				markerData: {},
+				markersIcon: '',
+				markersIconActive: '',
+				ownerInstance: null,
+				map: {},
+				receiveTraceDate: []
+			};
+		},
+		mounted() {
+
+		},
+		methods: {
+			initAmap(lngLat, _, ownerInstance) {
+				console.log('213123123123')
+				console.log(_)
+				lngLat = {
+					lat: lngLat.latitude,
+					lng: lngLat.longitude
+				}
+				lngLat = transform.wgs_gcj_encrypts(lngLat)
+				// lngLat = transform.gcj_wgs_encrypts(lngLat)
+				// console.log(lngLat, "坐标系lngLat")
+				let _this = this
+
+				// script.src ='https://map.gpsall.cc/maps/api/js?key=AIzaSyA70JUgslynjmVv0NPz3hcvkTbPZpr2i_c&callback=initMap&v=weekly'
+				const script = document.createElement('script')
+				script.src =
+					'https://map.gpsall.cc/maps/api/js?key=AIzaSyA70JUgslynjmVv0NPz3hcvkTbPZpr2i_c&callback=initMap&v=weekly&loading=async';
+				script.async = true; // 异步加载
+				script.defer = true; // 延迟执行
+				document.head.appendChild(script)
+				window.initMap = function() {
+					_this.loadAmap(lngLat)
+				};
+
+			},
+
+			loadPanTo(lngLat, _, ownerInstance) {
+				lngLat = {
+					lat: lngLat.latitude,
+					lng: lngLat.longitude
+				}
+				console.log("lngLat", lngLat)
+				lngLat = transform.wgs_gcj_encrypts(lngLat)
+				console.log("lngLat", lngLat)
+
+				this.map.panTo(new google.maps.LatLng(lngLat.latitude, lngLat.longitude))
+			},
+
+			loadAmap(lngLat) {
+
+				let _this = this
+				var myOptions = {
+					center: {
+						lat: parseFloat(lngLat.latitude),
+						lng: parseFloat(lngLat.longitude)
+					},
+					gestureHandling: "greedy", // 强制单指拖动
+					fullscreenControl: false,
+					draggable: true, // 显式启用拖拽
+					zoom: 14,
+					panControl: false,
+					zoomControl: false,
+					scaleControl: false,
+					streetViewControl: false,
+					mapTypeControl: false,
+					clickableIcons: false,
+				}
+				// 在初始化时定义图标配置(确保路径正确)
+				_this.defaultIcon = {
+					url: _this.markersIcon, // 默认图标路径
+					size: new google.maps.Size(50, 52),
+					scaledSize: new google.maps.Size(50, 52)
+				};
+
+				_this.selectedIcon = {
+					url: _this.markersIconActive, // 选中图标路径
+					size: new google.maps.Size(50, 52),
+					scaledSize: new google.maps.Size(50, 52)
+				};
+				// 存储当前选中的 Marker
+				_this.selectedMarker = null;
+				_this.map = new google.maps.Map(document.getElementById("mapModule"), myOptions);
+
+				//地图绑定事件
+				new google.maps.event.addListener(_this.map, "click", function(event) {
+					_this.$ownerInstance.callMethod('bindTapMap')
+				});
+
+				_this.addMarkers(_this.$ownerInstance)
+				// console.log("render初始化数据")
+				_this.$ownerInstance.callMethod('loadInitData')
+			},
+
+
+			addMarkers(ownerInstance) {
+				this.Markers.map(item => {
+					this.AddMarker(item, ownerInstance)
+				})
+
+			},
+			AddMarker(item, ownerInstance) {
+				let _this = this
+				const marker = new google.maps.Marker({
+					id: item.id,
+					map: _this.map,
+					data: item,
+					position: new google.maps.LatLng(parseFloat(item.latitude), parseFloat(item.longitude)),
+					icon: this.defaultIcon,
+					zIndex: 20
+				});
+				marker.addListener('click', function(event) {
+					if (_this.selectedMarker) {
+						_this.selectedMarker.setIcon(_this.defaultIcon);
+						 _this.selectedMarker.setOptions({ label: null });
+					}
+					marker.setIcon(_this.selectedIcon);
+					let distance = common.getFlatternDistance(_this.myLocation.longitude, _this.myLocation
+						.latitude, item.longitude, item.latitude)
+					let time = Math.ceil(Number(((distance - 0) / 1000).toFixed(2)) * 25 / 10)
+					let content = `${common.formatDistance(Number(distance))} 骑行${time}分钟`
+					marker.setOptions({
+						label: {
+							text: content,
+							className: "map-label",
+						}
+					})
+					_this.selectedMarker = marker;
+					_this.loadMarkertap(marker)
+				})
+			},
+
+			update(newValue, _, ownerInstance) {
+				this.Markers = newValue
+			},
+
+			loadMarkertap(marker) {
+				let markerId = marker.data.markerId
+				if (markerId == 5000) return
+				this.$ownerInstance.callMethod('onMarkertap',marker.data)
+			},
+		}
+	}
+</script>
+
+<script>
+	export default {
+		props: {
+			nearCabinetList: {
+				type: Array,
+				required: true //必填项
+			},
+			myLocation: {
+				type: Object,
+				required: true //必填项
+			},
+			markersIcon: {
+				type: String,
+				default: ""
+			},
+			markersIconActive: {
+				type: String,
+				default: ""
+			},
+
+		},
+		data() {
+			return {
+			};
+		},
+		mounted() {},
+		methods: {
+			onMarkertap(marker) {
+				this.$emit('changMarkertap',marker)
+			},
+			bindTapMap() {
+				console.log('点击事件!')
+			},
+			loadInitData() {
+				console.log('初始化成功!')
+			},
+		}
+	}
+</script>
+
+<style>
+	
+</style>

+ 59 - 29
component/useGuidance/useGuidance.vue

@@ -1,21 +1,40 @@
 <template>
 	<view class="tip-view">
 		<view class="tip-title-view flex-row align-center">
-			<img style="width: 144rpx;height: 40rpx;" src="https://qiniu.bms16.com/FjUW1kuRvXWTEftyn9nH1AbGWuxK" alt="">
-			<img style="width: 86rpx;height: 80rpx;" src="https://qiniu.bms16.com/FibAaPERzqi6m95EP2jREUKixjUi" alt="">
+			<image style="width: 144rpx;height: 40rpx;" src="https://qiniu.bms16.com/FjUW1kuRvXWTEftyn9nH1AbGWuxK"
+				mode='aspectFill'></image>
+			<image style="width: 86rpx;height: 80rpx;" src="https://qiniu.bms16.com/FibAaPERzqi6m95EP2jREUKixjUi"
+				mode='aspectFill'></image>
 			<view class="w-bg flex-row"></view>
 		</view>
 		<view class="step-view flex-row  align-center">
-			<view class="icon-list-view"><img src="https://qiniu.bms16.com/Fp0BE27Q0VTD8qUJRHUVhWO6VEbO" alt=""></view>
+			<view class="icon-list-view">
+				<image class="img" src="https://qiniu.bms16.com/Fp0BE27Q0VTD8qUJRHUVhWO6VEbO" mode='aspectFill'></image>
+			</view>
 			<view class="dashed-line"></view>
-			<view class="icon-list-view"><img src="https://qiniu.bms16.com/FqDzYwAbnSEgf3yv9SAb92Vq4ZEB" alt=""></view>
+			<view class="icon-list-view">
+				<image style="width: 80rpx;height: 72rpx;" src="https://qiniu.bms16.com/FqDzYwAbnSEgf3yv9SAb92Vq4ZEB"
+					mode='aspectFill'></image>
+			</view>
 			<view class="dashed-line"></view>
-			<view class="icon-list-view"><img src="https://qiniu.bms16.com/FlFMHzco6j9XOpMI21tSnR9500Un" alt=""></view>
+			<view class="icon-list-view">
+				<image style="width: 80rpx;height: 72rpx;" src="https://qiniu.bms16.com/FlFMHzco6j9XOpMI21tSnR9500Un"
+					mode='aspectFill'></image>
+			</view>
 		</view>
 		<view class="step-tip-view flex-row  align-center">
-			<view class="step-tip-text"><img class="step-num-1" src="https://qiniu.bms16.com/Fm4gMRmW6UOwLcU-eW8LDLNfiUJe" alt="">线上选择用车方案生成待支付订单</view>
-			<view class="step-tip-text"><img class="step-num-2" src="https://qiniu.bms16.com/FvYN7SxOYIhXEqSAJZrQIBQuTx79" alt="">导航到店向商家支付订单金额</view>
-			<view class="step-tip-text"><img class="step-num-3" src="https://qiniu.bms16.com/FhZ7w0X8iVuxFPdetEF9C3YYkJ7Z" alt="">支付完成后直接现场取车</view>
+			<view class="step-tip-text">
+				<image class="step-num-1" src="https://qiniu.bms16.com/Fm4gMRmW6UOwLcU-eW8LDLNfiUJe" mode='aspectFill'>
+				</image>线上选择用车方案生成待支付订单
+			</view>
+			<view class="step-tip-text">
+				<image class="step-num-2" src="https://qiniu.bms16.com/FvYN7SxOYIhXEqSAJZrQIBQuTx79" mode='aspectFill'>
+				</image>导航到店向商家支付订单金额
+			</view>
+			<view class="step-tip-text">
+				<image class="step-num-3" src="https://qiniu.bms16.com/FhZ7w0X8iVuxFPdetEF9C3YYkJ7Z" mode='aspectFill'>
+				</image>支付完成后直接现场取车
+			</view>
 		</view>
 	</view>
 </template>
@@ -28,82 +47,93 @@
 		/**
 		 * 组件的属性列表
 		 */
-		props: {
-		},
+		props: {},
 		/**
 		 * 组件的方法列表
 		 */
-		methods: {
-		}
+		methods: {}
 	};
 </script>
 <style scoped>
-	.tip-view{
+	.tip-view {
 		background: #0A59F7;
 		border-radius: 50rpx;
 		margin-bottom: 20rpx;
 		/* height: 80rpx; */
 	}
-	.tip-title-view{
-		padding-left:24rpx ;
+
+	.tip-title-view {
+		padding-left: 24rpx;
 		/* border-radius: 40rpx; */
 	}
-	.w-bg{
+
+	.w-bg {
 		width: 100%;
 		height: 80rpx;
 		background: #FFFFFF;
 		border-radius: 0rpx 40rpx 0rpx 0rpx;
 	}
-	.step-view{
+
+	.step-view {
 		justify-content: space-around;
 		background: #FFFFFF;
 		padding: 32rpx 80rpx 0;
 		border-top-left-radius: 32rpx;
 	}
-	.icon-list-view>img{
+
+	.icon-list-view .img {
 		width: 80rpx;
 		height: 72rpx;
 	}
-	.dashed-line{
+
+	.dashed-line {
 		/* border: 3rpx solid #F1F3F4; */
 		border-style: dashed;
-		border-width: 3rpx; /* 定义边框粗细 */
-		border-color: #F1F3F4; /* 定义边框颜色 */
+		border-width: 3rpx;
+		/* 定义边框粗细 */
+		border-color: #F1F3F4;
+		/* 定义边框颜色 */
 		width: 136rpx;
 		height: 2rpx;
 		display: flex;
 		flex-grow: 1;
 		padding: 0 80rpx;
 	}
-	.step-tip-view{
+
+	.step-tip-view {
 		justify-content: space-around;
 		background-color: #FFF;
 		padding: 22rpx 24rpx 40rpx;
 		border-radius: 0rpx 0rpx 40rpx 40rpx;
 	}
-	.step-tip-text{
+
+	.step-tip-text {
 		font-weight: 400;
 		font-size: 24rpx;
 		color: #060809;
 		opacity: 0.8;
-		
+
 	}
-	.step-tip-text:nth-child(2){
+
+	.step-tip-text:nth-child(2) {
 		margin: 0 38rpx 0 40rpx;
 	}
-	.step-num-1{
+
+	.step-num-1 {
 		width: 14rpx;
 		height: 22rpx;
 		margin-right: 4rpx;
 	}
-	.step-num-2{
+
+	.step-num-2 {
 		width: 20rpx;
 		height: 22rpx;
 		margin-right: 4rpx;
 	}
-	.step-num-3{
+
+	.step-num-3 {
 		width: 20rpx;
 		height: 24rpx;
 		margin-right: 4rpx;
 	}
-</style>
+</style>

+ 1 - 3
pages.json

@@ -314,9 +314,7 @@
 		"color": "#8a8a8a",
 		"selectedColor": "#0074FF",
 		"list": [{
-			
-				// "pagePath": "pages/index/index"
-				"pagePath": "pages/loginRegister/login"
+				"pagePath": "pages/index/index"
 				// "text": "租车",
 				// "iconPath": "static/resource/images/home-w.png",
 				// "selectedIconPath": "static/resource/images/home-b.png"

+ 32 - 35
pages/service/service.vue

@@ -1,15 +1,22 @@
 <template>
 	<view class="service-main">
-		<map @markertap='markertapFn' class="my_app" id="myMap" :longitude="myLocation.longitude"
-			:latitude="myLocation.latitude" :scale="18" show-location enable-3D show-compass enable-overlooking
-			:enable-satellite="false" :markers="markers" :polyline="polylines" :enable-traffic="false"
-			style="width: 100%; height: calc(50vh - 0rpx)">
-			<block v-for="(item, index) in nearCabinetList" :key="index">
-				<cover-view v-if="selectType === 'cabinet'" slot="callout" :marker-id="item.id" class="mark blue_bg">
-					{{ item.available_cnt }}
-				</cover-view>
-			</block>
-		</map>
+		<!-- #ifdef MP-WEIXIN -->
+			<map @markertap='markertapFn' class="my_app" id="myMap" :longitude="myLocation.longitude"
+				:latitude="myLocation.latitude" :scale="18" show-location enable-3D show-compass enable-overlooking
+				:enable-satellite="false" :markers="markers" :polyline="polylines" :enable-traffic="false"
+				style="width: 100%; height: calc(50vh - 0rpx)">
+				<block v-for="(item, index) in nearCabinetList" :key="index">
+					<cover-view v-if="selectType === 'cabinet'" slot="callout" :marker-id="item.id" class="mark blue_bg">
+						{{ item.available_cnt }}
+					</cover-view>
+				</block>
+			</map>
+		<!-- #endif -->
+		
+		<!-- #ifdef APP -->
+		<googleMap @click="changMarkertap" :markersIcon='markersIcon' :markersIconActive="markersIconActive" v-if="myLocation.latitude" :nearCabinetList='markers' :myLocation='myLocation'  ></googleMap>
+		<!-- #endif -->
+		
 		<!-- 地图控件 -->
 		<cover-view :class="[
         'control-icon-view',
@@ -76,6 +83,7 @@
 	import CarRentalList from "./components/carRentalList/carRentalList";
 	import CabinetList from "./components/cabinetList/cabinetList";
 	import CustomTabbar from "@/component/customTabbar/index";
+	import googleMap from "@/component/googleMap/googleMap";
 	import {
 		LEASE_TYPE_ARR
 	} from '@/common/constant.js'
@@ -88,10 +96,12 @@
 	export default {
 		data() {
 			return {
+				markersIcon:CABINET_ICON_URL,
+				markersIconActive:SHOPSELECTIMG,
 				activeMarkersId: 0,
 				myLocation: {
-					latitude: 23.099994,
-					longitude: 113.324004,
+					latitude: 0,
+					longitude: 0,
 				},
 				selectType: "store",
 				nearStoreList: [],
@@ -108,6 +118,7 @@
 			};
 		},
 		components: {
+			googleMap,
 			LeaseType,
 			CarRentalList,
 			CabinetList,
@@ -119,26 +130,13 @@
 		onLoad: function(options) {
 			this.loadModelType();
 			this.locationFn()
-			// this.nearStoreOrCabinetList = [
-			// 	{
-			// 		id:1,
-			// 		latitude:'',
-			// 		longitude:'',
-			// 		iconPath:"",
-			// 		width:"",
-			// 		height:"",
-			// 		label:{
-			// 			content:"",
-			// 			color:"#333",
-			// 			bgColor:"#fff",
-			// 			borderRadius:10,
-			// 			padding:10
-			// 		}
-			// 	}
-			// ]
 		},
-
+		
 		methods: {
+			//点击图标跳转
+			changMarkertap(e){
+				console.log(e)
+			},
 			markertapFn(e) {
 				let markerId = e.markerId
 				if (markerId == 5000) return
@@ -173,7 +171,7 @@
 			},
 
 
-			async locationFn() {
+			locationFn() {
 				let _this = this
 				uni.getLocation({
 					success(res) {
@@ -231,12 +229,11 @@
 						// }
 						this.markers = nearCabinetList.map(item => {
 							return {
-								width: 50,
-								height: 52,
 								id: Number(item.id),
 								longitude: item.longitude,
 								latitude: item.latitude,
-								iconPath: CABINET_ICON_URL,
+								url: CABINET_ICON_URL,
+								content:'233'
 								// label:{
 								// 	content:"21",
 								// 	color:"#0074FF",
@@ -250,7 +247,7 @@
 							}
 						})
 						this.getLocationPostion(this.myLocation, nearCabinetList);
-						console.log(nearCabinetList, "nearCabinetList");
+						// console.log(nearCabinetList, "nearCabinetList");
 						me.setData({
 							nearCabinetList: nearCabinetList,
 						});

+ 15 - 12
pages/storeDetails/storeDetails.vue

@@ -102,6 +102,7 @@
 		},
 		data() {
 			return {
+				shop_id:0,
 				status: 0,
 				shop_image: [],
 				storeInfo: {
@@ -114,12 +115,11 @@
 		/**
 		 * 生命周期函数--监听页面加载
 		 */
-		onLoad: async function(options) {
+		onLoad:  function(options) {
 			console.log(options, 'options');
-			const shop_id = options.admin_id || ''
-			let data = await this.locationFn()
-			console.log(data)
-			this.loadStoreDetail(shop_id, data.longitude, data.latitude)
+			this.shop_id = options.admin_id || ''
+			this.locationFn()
+			
 		},
 		/**
 		 * 生命周期函数--监听页面显示
@@ -161,14 +161,14 @@
 			}
 			return obj
 	},
-	async locationFn() {
-			let res = await uni.getLocation()
-			if (res[1]) {
-				return {
-					latitude: res[1].latitude,
-					longitude: res[1].longitude,
+	 locationFn() {
+			let _this = this
+			uni.getLocation({
+				success(res) {
+					_this.loadStoreDetail(_this.shop_id, res.longitude, res.latitude)
+					
 				}
-			}
+			})
 		},
 		srcFn(url) {
 			uni.navigateTo({
@@ -181,6 +181,9 @@
 		},
 		loadStoreDetail(shop_id, longitude, latitude) {
 			const me = this
+			console.log(shop_id)
+			console.log(longitude)
+			console.log(latitude)
 			http.postApi(config.API_NEAR_SHOP_INFO, {
 				shop_id,
 				longitude,