This commit is contained in:
lcw
2026-01-16 12:40:42 +08:00
parent 2ea84f248c
commit 10853312f2
120 changed files with 23881 additions and 617 deletions

View File

@ -1,7 +1,7 @@
<template>
<div style="height: 100%;">
<div class="comom-title" @click="calendarPush">
<span class="title">敏感节点</span>
<div class="comom-title" >
<span class="title" @click="calendarPush">敏感节点</span><span class="title switchover " @click="getFestival">直通区厅</span>
</div>
<el-calendar ref="calendar" v-model="currentDate">
<template #header="{ date }">
@ -253,6 +253,10 @@ const getAllFestivals = (date,boolean=false) => {
}
}
const getFestival = () => {
window.open('http://10.188.45.108:8081/uaac-server/login', '_blank');
// window.location.href = '';
}
const calendarPush = () => {
router.push('/calendar')
}
@ -490,4 +494,11 @@ const calendarPush = () => {
background-color: rgb(76, 243, 93);
color: #ffffff;
}
.switchover{
cursor: pointer;
font-size: 14px !important;
margin-left: 20%;
color: rgb(255, 146, 4);
}
</style>