1.修改云坐席时,不显示地理位置相关
2.修改应急求助,单位部门字段互换
3.更新请求地址信息
This commit is contained in:
2025-12-15 14:53:32 +08:00
parent faa0fa991c
commit 87490ae4b5
7 changed files with 25 additions and 15 deletions
+12 -6
View File
@@ -89,11 +89,13 @@
>
<template #bodyCell="{ column, record }">
<template v-if="column.dataIndex === 'd'">
<template v-if="record?.latitude && record?.longitude">
<environment-outlined style="height: auto !important; color: #178ef2 !important" @click="forHelp(record)" />
</template>
<template v-else>
<span style="color: red">未获取到位置信息</span>
<template v-if="record?.emergencyType != 2">
<template v-if="record?.latitude && record?.longitude">
<environment-outlined style="height: auto !important; color: #178ef2 !important" @click="forHelp(record)" />
</template>
<template v-else>
<span style="color: red">未获取到位置信息</span>
</template>
</template>
</template>
<template v-if="column.dataIndex === 'cz'">
@@ -489,7 +491,11 @@
userData.value = data;
if (!data.lon || !data.lat) {
centerMapRef.value.newResetMap();
showMapBottom.value = true;
if (indexModalTitle.value === '今日应急' && data?.emergencyType == 2) {
showMapBottom.value = false;
} else {
showMapBottom.value = true;
}
return;
}
Map.removeOverlayGroup();