Compare commits

...

2 Commits

Author SHA1 Message Date
34a1e4aefb Merge branch 'main' of http://61.139.16.27:26684/zy_oyj/sgxt_web 2025-12-18 18:44:57 +08:00
244fcc1703 更新 2025-12-18 18:44:20 +08:00
5 changed files with 13 additions and 15 deletions

View File

@ -130,7 +130,7 @@ const props = defineProps({
default: 180
},
tableHeight: {
type: Number
type: Number || String,
},
isScroll: {
type: Number,

View File

@ -61,11 +61,9 @@
<el-icon :size="20" v-if="ispLayBack" @click="closeLayBack">
<Bell />
</el-icon>
<!-- -->
<el-icon :size="20" v-else @click="openLayBack">
<MuteNotification />
</el-icon>
</div>
<div style="width: 100%;border: 1px sienna;position: relative">
<GdMap></GdMap>

View File

@ -148,8 +148,8 @@ const store = useStore();
const router = useRouter();
const route = useRoute();
const btns = reactive({
rightBtn: ["四色预警", "重点人群"],
leftBtn: ["智能布控", '研判首页'],
rightBtn: ["实站支撑", "安全监控"],
leftBtn: ["数据整合", '分析研判'],
moreBtn: [
{ name: '后台', img: require('@/assets/images/Group427322486.png') },
{ name: '退出登录', img: require('@/assets/images/Group427322485.png') }]
@ -185,22 +185,20 @@ const handleBtns = (val) => {
btnsActive.value = val;
switch (val) {
case "智能布控":
router.push("/DeploymentArea");
case "数据整合":
router.push("/resourceMonitoring");
break;
case "四色预警":
router.push("/IdentityManage");
case "实站支撑":
router.push("/InfoCollection");
break;
case "研判首页":
case "分析研判":
router.push("/ResearchHome");
break;
case "后台":
router.push("/editPassword");
break;
case "重点人群":
router.push("/mpvPeo");
// const NPShref = router.resolve({ path: '/KeyPopulations', query: {}});
// window.open(NPShref.href, "_blank");
case "安全监控":
router.push("/BaseLibrary");
break;
case "退出登录":
store.dispatch("user/logout");

View File

@ -1,6 +1,6 @@
<template>
<div class="comom-title">
<div class="title">预警等级统计</div>
<div class="title">四色预警统计</div>
</div>
<div class="comom-cnt" style="border-right: 1px solid #ebebeb;width: 100%;" v-loading="loadingyj">
<WarningCount ref="yjjbRef"></WarningCount>

View File

@ -23,6 +23,7 @@ import { qcckGet } from "@/api/qcckApi.js";
const pageData = reactive({
tableData: [],
keyCount: 0,
tableHeight: '100%',
tableConfiger: {
loading: false,
rowHieght: 61,
@ -46,6 +47,7 @@ const getList = () => {
pageData.tableConfiger.loading = true
qcckGet({},'/mosty-gsxt/tbYjxx/selectYjxxFzTen').then(res => {
let list = res || []
list = list.concat(list)
pageData.tableData = list.map((item, index) => {
item.order = index + 1
return item