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>

View File

@ -1,5 +1,5 @@
<template>
<el-dialog v-model="modelValue" title="情报列表" width="70%" @close="closeDialog" destroy-on-close>
<el-dialog :model-value="modelValue" title="情报列表" width="70%" @close="closeDialog" destroy-on-close>
<Search :searchArr="searchConfiger" @submit="onSearch" :key="pageData.keyCount"></Search>
<MyTable customClass="zdy_peo_table" :tableData="pageData.tableData" :tableColumn="pageData.tableColumn"
:tableHeight="pageData.tableHeight" :key="pageData.keyCount" :tableConfiger="pageData.tableConfiger"

View File

@ -17,7 +17,7 @@
</el-popover> -->
</div>
<div class="comom-cnt qxsbBox">
<LineEcharts echartsId="qbsbEcharts" :data="dataList"></LineEcharts>
<LineEcharts echartsId="qbsbEcharts" :data="dataList" :dataZoom="false" :rotate="-25"></LineEcharts >
</div>
<Intelligence v-model="visible" :dict="{D_BZ_QBSBLY}"/>
</template>
@ -29,8 +29,8 @@ import Intelligence from "@/views/home/model/mesgSwitch/intelligence.vue";
import { reactive, onMounted, ref, } from 'vue';
// import TimeData from '@/views/home/model/mesgSwitch/timeData.vue'
const dataList = reactive({
xData: ['巴宜区', '工布江达县', '米林县', '墨脱县', '波密县', '察隅县', '朗县'],
const dataList = ref({
xData: [],
color: ['#0386FB', '#00FFFF'],
list: [
{ label: '总数', val: [0, 0, 0, 0, 0, 0, 0] },
@ -48,9 +48,9 @@ const getCount = () => {
endTime: listQuery.value?.endTime || ""
}
qcckPost(promes, '/mosty-gsxt/qbcj/getXscjTjForQx').then(res => {
dataList.xDate = res ? res.ycz.map(v => v.org_name) : [];
dataList.list[0].val = res ? res.zs.map(v => v.count) : [];
dataList.list[1].val = res ? res.ycz.map(v => v.count) : [];
dataList.value.xData = res ? res.ycz.map(v => v.org_jc) : [];
dataList.value.list[0].val = res ? res.zs.map(v => v.count) : [];
dataList.value.list[1].val = res ? res.ycz.map(v => v.count) : [];
})
}