This commit is contained in:
2025-12-18 18:44:20 +08:00
parent 693695c178
commit 244fcc1703
5 changed files with 13 additions and 15 deletions

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");