From 1233b7e8950107382c361f5a1858bb5ae6e42d40 Mon Sep 17 00:00:00 2001 From: lrw <319150264@qq.com> Date: Mon, 15 May 2023 11:22:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A6=82=E8=A7=88=E6=80=BB=E8=AE=A1=E3=80=81?= =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E8=B4=A8=E6=8E=A7=E6=80=BB=E8=AE=A1=E3=80=81?= =?UTF-8?q?=E5=8F=8D=E9=A6=88=E7=A0=81=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/dataoverview.js | 28 +++++++++++++++ src/components/CustomsTable/index.vue | 41 +++++++++++++-------- src/layouts/index.vue | 34 +++++++++++++++++- src/views/audit-qualitycontrol/index.vue | 21 +++++++++++ src/views/dataoverview/index.vue | 46 +++++++++++++++++++----- src/views/followupentry/followaudit.vue | 3 +- 6 files changed, 146 insertions(+), 27 deletions(-) diff --git a/src/api/dataoverview.js b/src/api/dataoverview.js index 0860573..ad0adf1 100644 --- a/src/api/dataoverview.js +++ b/src/api/dataoverview.js @@ -10,3 +10,31 @@ export function getPatientPage(params = {}) { params, }) } + +// 数据概览总计 +export function getReportCount(params = {}) { + return request({ + url: "/disease-data/data/report/count", + method: "get", + params, + }) +} + +// 审核质控-筛查总计 + +export function getScreeningTotal(params = {}) { + return request({ + url: "disease-data/dataCheck/screening/total", + method: "get", + params, + }) +} + +// 审核质控-随访总计 +export function getFollowTotal(params = {}) { + return request({ + url: "disease-data/dataCheck/follow/total", + method: "get", + params, + }) +} diff --git a/src/components/CustomsTable/index.vue b/src/components/CustomsTable/index.vue index 2e5449e..eb6a993 100644 --- a/src/components/CustomsTable/index.vue +++ b/src/components/CustomsTable/index.vue @@ -6,12 +6,19 @@ :max-height="maxHeight || maxTableHeight" :height="tableHeight" :data="tableData" + :summary-method="getSummaries" + :show-summary="showSummary" :show-overflow-tooltip="true" :highlight-current-row="highLight" :header-row-class-name="headerClass" style="width: 100%" > - +