This commit is contained in:
姚宇浩 2024-08-30 09:19:34 +08:00
parent 154afb480c
commit c52e29b1a6
1 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
<template>
<div class="module">
<teleport to="body">
<div id="map" style="width: 100vw; height: 100vh" v-show="openD"></div>
<div id="map" style="width: 100vw; height: 100vh" v-show="!openD"></div>
<div class="left" style="width: 517px" v-show="!showEdit">
<div class="lyx">
<div class="title">
@ -225,7 +225,7 @@
退出
</div>
</div>
<div class="btnBj" v-if="!showEdit" @click="openqx()">
<div class="btnBj" v-if="!showEdit && !dialogShow && !openD" @click="openqx()">
地图权限(123456)
<p :style="{ color: jsqx ? 'green' : 'red' }">{{ bjtitle }}</p>
</div>
@ -264,7 +264,7 @@
<personDetail
class="detail"
style="width: 1920px; height: 1080px"
v-show="!openD"
v-show="openD"
:message="message"
@closeDetail="closeDetail"
></personDetail>
@ -445,7 +445,7 @@ const qx = ref(false);
const loadingss = ref(false);
const loadTable = ref(false);
//
const openD = ref(true);
const openD = ref(false);
const message = ref({});
//
const jdm_arr = ref([]); //
@ -2763,14 +2763,14 @@ const openCamera = () => {
//
const openMessage = (e) => {
message.value = e;
openD.value = false;
openD.value = true;
reset_font2();
//
window.addEventListener("resize", reset_font2);
};
//
const closeDetail = () => {
openD.value = true;
openD.value = false;
window.removeEventListener("resize", reset_font2);
};
//
@ -4527,7 +4527,7 @@ onMounted(async () => {
}
.btnBj {
cursor: pointer;
z-index: 999;
z-index: 100;
position: absolute;
color: #ffffff;
top: 12%;