This commit is contained in:
姚宇浩 2024-09-30 16:18:33 +08:00
commit 75a76790b8
4 changed files with 11 additions and 5 deletions

BIN
dist.zip Normal file

Binary file not shown.

View File

@ -9,9 +9,9 @@ import "./assets/css/common.css";
import zhCn from "element-plus/dist/locale/zh-cn.mjs";
// 引入 vConsole
// import VConsole from "vconsole";
import VConsole from "vconsole";
// 初始化 vConsole
// const vConsole = new VConsole();
const vConsole = new VConsole();
createApp(App)
.use(router)

View File

@ -160,8 +160,8 @@ const login = () => {
})
.catch((err) => {
console.log(err);
// var token = getCookie("lytoken");
var token = "6b0e380b4a8f46baae4923f83faf670d";
var token = getCookie("lytoken");
// var token = "6b0e380b4a8f46baae4923f83faf670d";
// console.log('token', token)
if (!token) {

View File

@ -1842,7 +1842,13 @@ const markera = (e) => {
map.removeOverlay(currentMarker);
}
//
let icons = new BMapGL.Icon(AED, new BMapGL.Size(24, 62));
let sizeIcons = 62;
if (totalType.value == 1) {
sizeIcons = 48;
} else {
sizeIcons = 62;
}
let icons = new BMapGL.Icon(AED, new BMapGL.Size(24, sizeIcons));
var marker = new BMapGL.Marker(new BMapGL.Point(e.latlng.lng, e.latlng.lat), {
icon: icons,
});