From dd97e007e87aef24e1c9043462ad337242fa0cda Mon Sep 17 00:00:00 2001 From: dhy1725534722 <1725534722@qq.com> Date: Fri, 22 Sep 2023 17:27:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/yingji/keyEnterprise.js | 19 ++- src/views/yingji/echarts/completePlan.vue | 81 +++++++---- src/views/yingji/echarts/executionPlan.vue | 56 +++++--- src/views/yingji/echarts/finishRate.vue | 59 +++++--- src/views/yingji/home.vue | 160 ++++++++++++++------- vue.config.js | 4 +- 6 files changed, 268 insertions(+), 111 deletions(-) diff --git a/src/api/yingji/keyEnterprise.js b/src/api/yingji/keyEnterprise.js index 8c4648c..fee0c54 100644 --- a/src/api/yingji/keyEnterprise.js +++ b/src/api/yingji/keyEnterprise.js @@ -79,10 +79,25 @@ export function listDist(query) { } // 行政区划树结构 -export function xzTree(id) { +export function xzTree() { return request({ url: '/pharmaceuticals/administrative/tree', method: 'get', }) } - +//执法计划工作情况统计 +export function workStatistics(data) { + return request({ + url: '/pharmaceuticals/bPlanEnterprise/getZhifaCount', + method: 'get', + params:data + }) +} +//各区域执法计划 +export function quyuPlan(data) { + return request({ + url: '/pharmaceuticals/bPlanEnterprise/getplan', + method: 'get', + params:data + }) +} diff --git a/src/views/yingji/echarts/completePlan.vue b/src/views/yingji/echarts/completePlan.vue index cadc16e..8293b1f 100644 --- a/src/views/yingji/echarts/completePlan.vue +++ b/src/views/yingji/echarts/completePlan.vue @@ -1,16 +1,41 @@