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