|
@@ -3,7 +3,7 @@
|
|
<div class="top-box">
|
|
<div class="top-box">
|
|
<div class="top-item">
|
|
<div class="top-item">
|
|
<rightMinTitleContent class="title-content" title="出动人员">
|
|
<rightMinTitleContent class="title-content" title="出动人员">
|
|
- <div class="arrow-box"></div>
|
|
|
|
|
|
+ <div class="arrow-box" @click="handlePeopleChudong"></div>
|
|
</rightMinTitleContent>
|
|
</rightMinTitleContent>
|
|
<div class="bottom-item">
|
|
<div class="bottom-item">
|
|
<div class="people-box">
|
|
<div class="people-box">
|
|
@@ -41,7 +41,7 @@
|
|
<div class="top-box top-box-second">
|
|
<div class="top-box top-box-second">
|
|
<div class="top-item">
|
|
<div class="top-item">
|
|
<rightMinTitleContent class="title-content" title="应急管理">
|
|
<rightMinTitleContent class="title-content" title="应急管理">
|
|
- <div class="arrow-box"></div>
|
|
|
|
|
|
+ <div class="arrow-box" @click="handleEmergencyVisible"></div>
|
|
</rightMinTitleContent>
|
|
</rightMinTitleContent>
|
|
<div class="yingji-manage">
|
|
<div class="yingji-manage">
|
|
<div class="time-box">2024.11.20 12:12</div>
|
|
<div class="time-box">2024.11.20 12:12</div>
|
|
@@ -128,16 +128,22 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <emergencyManage></emergencyManage>
|
|
|
|
|
|
+ <EmergencyManage v-if="rightPanelStore.emergencyVisible" />
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
import { ref, onMounted } from "vue";
|
|
import { ref, onMounted } from "vue";
|
|
import * as echarts from "echarts";
|
|
import * as echarts from "echarts";
|
|
-import rightMinTitleContent from "../common/rightMinTitleContent.vue";
|
|
|
|
-import rightMediumTitleContent from "../common/rightMediumTitleContent.vue";
|
|
|
|
-import emergencyManage from "./comp/emergencyManage.vue";
|
|
|
|
|
|
+import rightMinTitleContent from "../common/RightMinTitleContent.vue";
|
|
|
|
+import rightMediumTitleContent from "../common/RightMediumTitleContent.vue";
|
|
|
|
+import EmergencyManage from "./comp/EmergencyManage.vue";
|
|
import { WordColudOption } from "../../echarts/echartsOption";
|
|
import { WordColudOption } from "../../echarts/echartsOption";
|
|
|
|
+import { useRightPanelStore } from "@/store/rightPanel";
|
|
|
|
+
|
|
|
|
+const rightPanelStore = useRightPanelStore();
|
|
|
|
+const handleEmergencyVisible = () => {
|
|
|
|
+ rightPanelStore.emergencyVisible = true;
|
|
|
|
+};
|
|
|
|
|
|
const yunEchartsRef = ref();
|
|
const yunEchartsRef = ref();
|
|
const ciData = ref([
|
|
const ciData = ref([
|