|
|
@@ -56,8 +56,8 @@ const props = defineProps({
|
|
|
const handleNavMap = (station: any) => {
|
|
|
let location = JSON.parse(station.location)
|
|
|
uni.openLocation({
|
|
|
- latitude: location.stationLat,
|
|
|
- longitude: location.stationLng,
|
|
|
+ latitude: Number(location.stationLat),
|
|
|
+ longitude: Number(location.stationLng),
|
|
|
scale: 18,
|
|
|
name: station.stationName,
|
|
|
address: station.address,
|