2025-11-19 17:47:20 +08:00

28 lines
740 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="tool-tip-content">
<div class="info-item">
<span class="label">名称:</span>
<span class="value">{{ data.mc }}</span>
</div>
<div class="flex">
<div class="info-item">
<span class="label">所属区县</span>
<span class="value">{{ data.yjllpz }}</span>
</div>
<div class="info-item">
<span class="label">应急设备</span>
<span class="value">{{ data.wz }}</span>
</div>
</div>
</div>
</template>
<script setup>
import { onMounted, ref } from 'vue';
</script>
<style scoped lang="scss">
@use '@/styles/mixins.scss' as *;
</style>