This commit is contained in:
2026-01-31 16:48:47 +08:00
parent 2cc924d091
commit fa4b36bd8c
5 changed files with 25 additions and 43 deletions

View File

@ -21,7 +21,7 @@ import XxhjCount from './xxhjCount.vue'
import QygktjCount from './qygktjCount.vue'
import { ref } from "vue";
const butList=ref(["情报统计分析","预警统计",'全域管控统计','信息汇聚统计'])
const qh = ref('情报统计分析')
const qh = ref('预警统计')
</script>
<style lang="scss" scoped>

View File

@ -44,7 +44,7 @@
</div>
</div>
<div class="echratsBox" v-loading="loading">
<DbarEcharts echartsId="bar3DChart" :key="ketcount" :data="obj.cnList" @click="handleClick" />
<DbarEcharts echartsId="bar3DChart" :rotate="25" :key="ketcount" :data="obj.cnList" @click="handleClick" />
</div>
</li>
<li class="cnt-item">
@ -58,7 +58,7 @@
<div class="title">7类重点人员预警统计</div>
</div>
<div class="echratsBox">
<LineEcharts echartsId="seventTypeChart" color="#333333" :data="obj.sevenList" />
<LineEcharts echartsId="seventTypeChart" color="#333333" :data="obj.sevenList" name="预警数量" />
</div>
</li>
<li class="cnt-item">
@ -160,6 +160,7 @@ const handle_yjfl = async () =>{
const handleClick = async (val) =>{
// 当前部门是派出所 bb
if(userInfo?.deptLevel?.startsWith('4')) return;
if(val.includes('派出所')) return;
let info = obj.cnList.list.find(i => i.label === val);
let params = {...formSearch.value }
params.ssbmdm = info.ssbmdm;
@ -324,7 +325,7 @@ const tabHeightFn = () => {
justify-content: space-between;
align-content: space-between;
margin-top: 10px;
overflow: hidden;
// overflow: hidden;
.cnt-item{
width: 49.8%;
height: 49.5%;
@ -381,7 +382,7 @@ const tabHeightFn = () => {
}
.echratsBox{
height: calc(100% - 40px);
overflow: hidden;
/* overflow: hidden; */
}
}
}