qa-kangzai-vue/src/views/map/popup/components/torrential_flood_village.vue

35 lines
1.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div>
<div>属地{{ info.areaName }}</div>
<div>县级预警负责人{{ info.countyWarningOfficer }}</div>
<div>县级预警负责人电话{{ info.countyWarningPhone }}</div>
<div>县级责任人{{ info.countyOfficer }}</div>
<div>县级责任人职务{{ info.countyOfficerPosition }}</div>
<div>县级责任人电话{{ info.countyOfficerPhone }}</div>
<div>乡级责任人{{ info.townshipOfficer }}</div>
<div>乡级责任人职务{{ info.townshipOfficerPosition }}</div>
<div>乡级责任人电话{{ info.townshipOfficerPhone }}</div>
<div>村级责任人{{ info.villageOfficer }}</div>
<div>村级责任人职务{{ info.villageOfficerPosition }}</div>
<div>村级责任人电话{{ info.villageOfficerPhone }}</div>
<div>监测员姓名{{ info.monitorName }}</div>
<div>监测员职务{{ info.monitorPosition }}</div>
<div>监测员电话{{ info.monitorPhone }}</div>
<div>预警员姓名{{ info.warningOfficerName }}</div>
<div>预警员职务{{ info.warningOfficerPosition }}</div>
<div>预警员电话{{ info.warningOfficerPhone }}</div>
<div>转移员姓名{{ info.transferOfficerName }}</div>
<div>转移员职务{{ info.transferOfficerPosition }}</div>
<div>转移员电话{{ info.transferOfficerPhone }}</div>
<div>备注{{ info.remarks }}</div>
</div>
</template>
<script setup>
defineProps({
info: Object,
});
</script>
<style scoped lang="scss"></style>