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 @@ + + + + + \ No newline at end of file