From 644251a90279100e8bd451984865746fa529df02 Mon Sep 17 00:00:00 2001 From: jjLv <1981429112@qq.com> Date: Thu, 10 Oct 2024 15:48:56 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=AE=E4=BC=91=E5=A4=96=E5=87=BA=E5=8A=9E?= =?UTF-8?q?=E5=85=AC=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/exceptionHandle/errorData.js | 32 ++ src/api/exceptionHandle/errorForm.js | 40 ++ .../attendanceReport/monthlyError/index.vue | 42 +- src/views/exceptionHandle/errorData/index.vue | 333 ++++++++++++++ src/views/exceptionHandle/errorForm/index.vue | 412 ++++++++++++++++++ 5 files changed, 847 insertions(+), 12 deletions(-) create mode 100644 src/api/exceptionHandle/errorData.js create mode 100644 src/api/exceptionHandle/errorForm.js create mode 100644 src/views/exceptionHandle/errorData/index.vue create mode 100644 src/views/exceptionHandle/errorForm/index.vue diff --git a/src/api/exceptionHandle/errorData.js b/src/api/exceptionHandle/errorData.js new file mode 100644 index 0000000..3ee24f7 --- /dev/null +++ b/src/api/exceptionHandle/errorData.js @@ -0,0 +1,32 @@ +import request from '@/utils/request' + +// 查询列表 +export function listExceptionDataError(query) { + return request({ + url: '/system/attExceptionHandle/list', + method: 'get', + params: query + }) +} + +// 工程详情 +export function getDetail(query) { + return request({ + url: '/system/attDetailByMonth/getDetail', + method: 'get', + params: query + }) +} + + + +// 导出工程 +export function exportMonthlyError(query) { + return request({ + url: '/system/attDetailByMonth/export', + method: 'get', + responseType: 'blob', + params: query + }) +} + diff --git a/src/api/exceptionHandle/errorForm.js b/src/api/exceptionHandle/errorForm.js new file mode 100644 index 0000000..2b115c1 --- /dev/null +++ b/src/api/exceptionHandle/errorForm.js @@ -0,0 +1,40 @@ +import request from '@/utils/request' + +// 查询列表 +export function listExceptionFormError(query) { + return request({ + url: '/system/attExceptionHandle/getDetailException', + method: 'get', + params: query + }) +} + +// 工程详情 +export function getDetailExceptionRest(query) { + return request({ + url: '/system/attExceptionHandle/getDetailExceptionRest', + method: 'get', + params: query + }) +} + +// 工程详情 +export function getDetailExceptionOut(query) { + return request({ + url: '/system/attExceptionHandle/getDetailExceptionOut', + method: 'get', + params: query + }) +} + + +// 导出工程 +export function exportExceptionError(query) { + return request({ + url: '/system/attExceptionHandle/export', + method: 'get', + responseType: 'blob', + params: query + }) +} + diff --git a/src/views/attendanceReport/monthlyError/index.vue b/src/views/attendanceReport/monthlyError/index.vue index ea4b77d..0b79f1f 100644 --- a/src/views/attendanceReport/monthlyError/index.vue +++ b/src/views/attendanceReport/monthlyError/index.vue @@ -1,7 +1,7 @@