From 4e518578d1c9c86dec70877efbc3ae0f2bfb4025 Mon Sep 17 00:00:00 2001 From: jjLv <1981429112@qq.com> Date: Thu, 10 Oct 2024 09:31:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=88=E5=BC=82=E5=B8=B8=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/attendanceReport/monthlyError.js | 32 ++ .../attendanceReport/monthlyError/index.vue | 392 ++++++++++++++++++ 2 files changed, 424 insertions(+) create mode 100644 src/api/attendanceReport/monthlyError.js create mode 100644 src/views/attendanceReport/monthlyError/index.vue diff --git a/src/api/attendanceReport/monthlyError.js b/src/api/attendanceReport/monthlyError.js new file mode 100644 index 0000000..ff27669 --- /dev/null +++ b/src/api/attendanceReport/monthlyError.js @@ -0,0 +1,32 @@ +import request from '@/utils/request' + +// 查询列表 +export function listMonthlyError(query) { + return request({ + url: '/system/attDetailByMonth/list', + method: 'get', + params: query + }) +} + +// 工程详情 +export function getDetail(query) { + return request({ + url: '/system/attDetailByMonth/getDetail', + method: 'get', + params: query + }) +} + + + +// 导出工程 +export function exportEngineering(query) { + return request({ + url: '/bracelet/export/exportEngineering', + method: 'get', + responseType: 'blob', + params: query + }) +} + diff --git a/src/views/attendanceReport/monthlyError/index.vue b/src/views/attendanceReport/monthlyError/index.vue new file mode 100644 index 0000000..24180bb --- /dev/null +++ b/src/views/attendanceReport/monthlyError/index.vue @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + + + 查询 + 重置 + 导出数据 + + + + + + + + {{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }} + + + + + + + + + + {{ scope.row.normalNum}} + + {{ scope.row.normalNum}} + + + + + + {{ scope.row.lateNum}} + + {{ scope.row.lateNum}} + + + + + + {{ scope.row.earlyNum}} + + {{ scope.row.earlyNum}} + + + + + + {{ scope.row.skippingNum}} + + {{ scope.row.skippingNum}} + + + + + + {{ scope.row.addressErrorNum}} + + {{ scope.row.addressErrorNum}} + + + + + + {{ scope.row.einErrorNum}} + + {{ scope.row.einErrorNum}} + + + + + + {{ scope.row.leaveNum}} + + {{ scope.row.leaveNum}} + + + + + + + + + + + + + + 查询 + 重置 + + + + + + + {{ (queryRecord.pageNum - 1) * queryRecord.pageSize + scope.$index + 1 }} + + + + + + \ + + {{ formatDate(scope.row.attCurrent) }} + + + + + + {{ '正常' }} + {{ '迟到' }} + {{ '旷工' }} + {{ '早退' }} + {{ '轮休' }} + {{ '请假' }} + {{ '临时外出' }} + {{ '出入异常' }} + {{ '打卡地异常' }} + {{ }} + + + + + + + {{ '正常' }} + {{ '迟到' }} + {{ '旷工' }} + {{ '早退' }} + {{ '轮休' }} + {{ '请假' }} + {{ '临时外出' }} + {{ '出入异常' }} + {{ '打卡地异常' }} + {{ }} + + + + + + + + + + + + + + + \ No newline at end of file