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..3c38f12 --- /dev/null +++ b/src/api/exceptionHandle/errorForm.js @@ -0,0 +1,49 @@ +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 + }) +} + +// 审批提醒 +export function examineRemind(data) { + return request({ + url: '/system/attExceptionHandle/examineRemind', + method: 'post', + data: data + }) +} + diff --git a/src/api/report/monthlyError.js b/src/api/report/monthlyError.js new file mode 100644 index 0000000..9fce7dd --- /dev/null +++ b/src/api/report/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 exportMonthlyError(query) { + return request({ + url: '/system/attDetailByMonth/export', + method: 'get', + responseType: 'blob', + params: query + }) +} + diff --git a/src/views/exceptionHandle/errorData/index.vue b/src/views/exceptionHandle/errorData/index.vue new file mode 100644 index 0000000..f0b3793 --- /dev/null +++ b/src/views/exceptionHandle/errorData/index.vue @@ -0,0 +1,357 @@ + + + + + \ No newline at end of file diff --git a/src/views/exceptionHandle/errorForm/index.vue b/src/views/exceptionHandle/errorForm/index.vue new file mode 100644 index 0000000..c90ec42 --- /dev/null +++ b/src/views/exceptionHandle/errorForm/index.vue @@ -0,0 +1,482 @@ + + + + + \ No newline at end of file diff --git a/src/views/report/monthlyError/index.vue b/src/views/report/monthlyError/index.vue new file mode 100644 index 0000000..7d21d72 --- /dev/null +++ b/src/views/report/monthlyError/index.vue @@ -0,0 +1,422 @@ + + + + + \ No newline at end of file