Files
dy_web/src/views/largeScreen/home/components/centerDialog.vue

41 lines
1.1 KiB
Vue
Raw Normal View History

2025-09-04 16:27:57 +08:00
<template>
<div class="centerBox">
<!-- 警力的弹框 -->
<GrouListJl />
<!-- 巡组的弹框 -->
<GrouListJmxz />
<!-- 街面力量的弹框 -->
<GrouListJmll />
<!-- 巡逻时长的弹框 -->
<GrouListXllsclc />
<!-- 盘查工作的弹框 -->
<GrouListPcgz />
<!-- 指令弹窗 -->
<GrouListZl />
<!-- 单独播放视频弹窗 -->
<ViedeoDialog />
<!-- 新增勤务 -->
<AddQwDialog />
<!-- 展示大图 -->
<ImgBox />
</div>
</template>
<script setup>
import GrouListJl from "./dialog/grouListJl.vue";
import GrouListJmxz from "./dialog/grouListJmxz.vue";
import GrouListJmll from "./dialog/grouListJmll.vue";
import GrouListXllsclc from "./dialog/grouListXllsclc.vue";
import GrouListPcgz from "./dialog/grouListPcgz.vue";
import GrouListZl from "./dialog/grouListZl.vue";
import ViedeoDialog from "@/components/video/index.vue";
import AddQwDialog from "./dialog/addQwDialog.vue";
import ImgBox from "./dialog/imgBox.vue";
import { ref, defineProps, onMounted, onUnmounted, reactive } from "vue";
</script>
<style lang="scss" scoped>
@import "@/assets/css/homeScreen.scss";
</style>