From 6f6863e44e168a55a4252ce96b937a08ba3c954e Mon Sep 17 00:00:00 2001 From: Esacpe <1113279529@qq.com> Date: Mon, 15 Sep 2025 16:16:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../backOfficeSystem/JudgmentHome/ResearchHome/index.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/backOfficeSystem/JudgmentHome/ResearchHome/index.vue b/src/views/backOfficeSystem/JudgmentHome/ResearchHome/index.vue index 2e4c762..8f127e9 100644 --- a/src/views/backOfficeSystem/JudgmentHome/ResearchHome/index.vue +++ b/src/views/backOfficeSystem/JudgmentHome/ResearchHome/index.vue @@ -135,7 +135,7 @@ const obj = reactive({ color:[['#0DBAC5','#28EEBF'],['#F06C0D','#EEB416']], labelColor:'#000', list:[ - {label:'总数',val:[30,20,10,60]}, + {label:'总数',val:[0,0,0,0]}, ] }, data_hstj:{ @@ -143,7 +143,7 @@ const obj = reactive({ color:['#0386FB','#00FFFF'], labelColor:'#000', list:[ - {label:'总数',val:[30,20,10,60]}, + {label:'总数',val:[0,0,10,0]}, ] } }) @@ -309,6 +309,10 @@ const getJqList = () =>{ lzJcjPjdbSelectPage(params).then(res=>{ list[1].tableList = res.records || []; list[1].pageConfiger.total = res.total; + + //模拟的统计警情接口 + obj.data_lxtj.list = [{ label: '总数', val: [0,0,res.total,0] }]; + obj.data_hstj.list = [{ label: '总数', val: [0,0,res.total,0] }]; }) }