Compare commits

..

3 Commits

Author SHA1 Message Date
姚宇浩 905cd689be Merge branch 'main' of https://git.cityme.com.cn/xiangshan/ggfwjsc 2024-09-26 17:19:54 +08:00
姚宇浩 2f048a9a15 111 2024-09-26 17:17:40 +08:00
姚宇浩 3bf5f56e22 gx 2024-09-26 17:13:49 +08:00
3 changed files with 27 additions and 12 deletions

View File

@ -37,15 +37,13 @@ axios.interceptors.response.use(
// "http://220.191.238.50:996/api/login?returnURL=" +
// window.location.href;
// const cookies = document.cookie.split(";");
// for (let i = 0; i < cookies.length; i++) {
// const cookie = cookies[i];
// const eqPos = cookie.indexOf("=");
// const name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
// document.cookie =
// name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;";
// }
const cookies = document.cookie.split(";");
for (let i = 0; i < cookies.length; i++) {
const cookie = cookies[i];
const eqPos = cookie.indexOf("=");
const name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;";
}
router.replace({
path: "/guide",
});

View File

@ -159,7 +159,7 @@ const login = () => {
})
.catch((err) => {
console.log(err);
// document.cookie='lytoken=6b0e380b4a8f46baae4923f83faf670d'
var token = getCookie("lytoken");
// var token = '6b0e380b4a8f46baae4923f83faf670d';

View File

@ -405,7 +405,7 @@ import j8 from "@/assets/images/map/j8.png";
import j9 from "@/assets/images/map/j9.png";
import j10 from "@/assets/images/map/j10.png";
import j11 from "@/assets/images/map/j11.png";
import j1_map from "@/assets/images/map/j1-map.png";
import j1_map from "@/assets/images/map/j1_map.png";
import j2_map from "@/assets/images/map/j2_map.png";
import j3_map from "@/assets/images/map/j3_map.png";
import j4_map from "@/assets/images/map/j4_map.png";
@ -815,31 +815,46 @@ const yaosuTotal = ref([
id: 1,
name: "幼儿园",
img: j1,
img_map: j1_map,
wz: false,
tooltip: "zyysmc",
url: "/api/ggfwyth/ysyzt/getZyys?zyyslx=幼儿园",
},
{
id: 2,
name: "小学",
img: j2,
img_map: j2_map,
wz: false,
tooltip: "zyysmc",
url: "/api/ggfwyth/ysyzt/getZyys?zyyslx=小学",
},
{
id: 3,
name: "初中",
img: j3,
img_map: j3_map,
wz: false,
tooltip: "zyysmc",
url: "/api/ggfwyth/ysyzt/getZyys?zyyslx=初中",
},
{
id: 4,
name: "高中",
img: j4,
img_map: j4_map,
wz: false,
tooltip: "zyysmc",
url: "/api/ggfwyth/ysyzt/getZyys?zyyslx=高中",
},
{
id: 5,
name: "医院",
img: j5,
img_map: j5_map,
wz: false,
tooltip: "zyysmc",
url: "/api/ggfwyth/ysyzt/getZyys?zyyslx=医院",
},
{
id: 6,
@ -2665,12 +2680,13 @@ const changeys = (name) => {
tooltip = item.tooltip;
}
});
if (name == "摄像头" || name == "AED") {
if (name == "摄像头" || name == "AED" || name=='幼儿园' || name=='小学'|| name=='初中' || name=='高中'|| name=='医院') {
getZyys(url, name, img, img_map, tooltip);
}
if (name == "养老机构") {
getZyys2(name, img, img_map, tooltip);
}
}
};
//线
@ -2694,6 +2710,7 @@ const getZyys = (url, name, img, img_map, tooltip) => {
item.center = JSON.parse(newStr);
break;
default:
item.center = [Number(item.jd), Number(item.wd)];
break;
}