From d3b721985482336ff57411fa400742fcf1270b9c Mon Sep 17 00:00:00 2001 From: GGJ <357021191@qq.com> Date: Mon, 8 Jul 2024 15:21:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=80=E5=8C=97=20=E7=9C=81=20=E5=B8=82=20?= =?UTF-8?q?=E6=8A=80=E6=9C=AF=E7=9B=91=E7=9D=A3=E8=AF=A6=E7=BB=86=20?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=20=20=E6=B7=BB=E5=8A=A0=E8=AF=95=E8=BF=90?= =?UTF-8?q?=E8=A1=8C=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../qualityInspeection/panorama/components/cityMapR.vue | 6 +++++- .../panorama/components/details/technique.vue | 6 +++--- .../pqs/qualityInspeection/panorama/components/mapR.vue | 7 ++++++- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/views/pqs/qualityInspeection/panorama/components/cityMapR.vue b/src/views/pqs/qualityInspeection/panorama/components/cityMapR.vue index 548eb156..b8fe6842 100644 --- a/src/views/pqs/qualityInspeection/panorama/components/cityMapR.vue +++ b/src/views/pqs/qualityInspeection/panorama/components/cityMapR.vue @@ -164,7 +164,11 @@ const Voltage: any = [ { label: '用户投诉', value: 'user' - } + }, + { + label: '试运行问题', + value: 'trialRun' + }, ] const active: any = ref(Voltage[0].value) diff --git a/src/views/pqs/qualityInspeection/panorama/components/details/technique.vue b/src/views/pqs/qualityInspeection/panorama/components/details/technique.vue index cb1e340b..af6e2914 100644 --- a/src/views/pqs/qualityInspeection/panorama/components/details/technique.vue +++ b/src/views/pqs/qualityInspeection/panorama/components/details/technique.vue @@ -40,7 +40,7 @@ const open = async (row: any) => { }, xAxis: { name: '', - data: ['技术监督计划', '用户投诉', '在线监测问题'] + data: ['技术监督计划', '用户投诉', '在线监测问题','试运行问题'] }, yAxis: { @@ -55,13 +55,13 @@ const open = async (row: any) => { { name: '问题个数', type: 'bar', - data: [res.data.survey.abnormalNum, res.data.user.abnormalNum, res.data.onLine.abnormalNum] + data: [res.data.survey.abnormalNum, res.data.user.abnormalNum, res.data.onLine.abnormalNum, res.data.trialRun.abnormalNum] }, { name: '已处理', type: 'bar', - data: [res.data.survey.processedNum, res.data.user.processedNum, res.data.onLine.processedNum] + data: [res.data.survey.processedNum, res.data.user.processedNum, res.data.onLine.processedNum, res.data.trialRun.processedNum] } ] } diff --git a/src/views/pqs/qualityInspeection/panorama/components/mapR.vue b/src/views/pqs/qualityInspeection/panorama/components/mapR.vue index 50b98f48..3276a5f4 100644 --- a/src/views/pqs/qualityInspeection/panorama/components/mapR.vue +++ b/src/views/pqs/qualityInspeection/panorama/components/mapR.vue @@ -344,6 +344,10 @@ const JDlist = ref([ name: '用户投诉', value: 0 }, + { + name: '试运行问题', + value: 0 + }, ]) const harmonicList: any = ref([]) @@ -391,8 +395,9 @@ const info = (row: any) => { JDlist.value[0].value = res.data?.surveyNum || 0 JDlist.value[1].value = res.data?.onLineNum || 0 JDlist.value[2].value = res.data?.userNum || 0 + JDlist.value[3].value = res.data?.trialRunNum || 0 - }) + }) } const harmonicChange = () => { getEvaluationOverview({ ...formRow.value, harmonicType: harmonicType.value }).then(res => {