From c1006b24922632ccb9ae7186925d0fb64d805246 Mon Sep 17 00:00:00 2001 From: qingyiay <2386314947@qq.com> Date: 星期一, 24 七月 2023 15:43:42 +0800 Subject: [PATCH] 修改验质页面出现负数的错误 --- pages/public-page/mapRoute/mapRoute.vue | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pages/public-page/mapRoute/mapRoute.vue b/pages/public-page/mapRoute/mapRoute.vue index 996618c..1587f90 100644 --- a/pages/public-page/mapRoute/mapRoute.vue +++ b/pages/public-page/mapRoute/mapRoute.vue @@ -29,9 +29,11 @@ </template> <script> + import { onlineurl } from '@/api/request.js' export default { data() { return { + onlineurl, latitude: 38.04606544104117, longitude: 114.48735479816793, customerId: '', @@ -47,7 +49,7 @@ markers: [{ latitude: null, longitude: null, - iconPath: 'https://mx.jzeg.cn:9095/appimg/image/banner/location.png', + iconPath: `${onlineurl}/appimg/image/banner/location.png`, width: 23, height: 33, id: 0, @@ -64,7 +66,7 @@ { latitude: null, longitude: null, - iconPath: 'https://mx.jzeg.cn:9095/appimg/image/banner/location.png', + iconPath: `${onlineurl}/appimg/image/banner/location.png`, width: 23, height: 33, id: 1, -- Gitblit v1.9.1