import { httpApi } from '../../request/httpApi' export default { //验收申请-汇总目录 async getAllUnitArchivesView(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/getAllUnitArchivesView', method: 'get', params: form, }, msg) }, //验收申请保存 async saveApply(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/saveApply', method: 'post', data: form, }, msg) }, //查看申请状态 async getApplyStatus(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/getApplyStatus', method: 'get', params: form, }, msg) }, //撤销申请 async annulApply(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/annulApply', method: 'get', params: form, }, msg) }, //在线验收-根据单位显示档案 async getUnitArchivesAutoView(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/getUnitArchivesAutoView', method: 'get', params: form, }, msg) }, //档案验收返回单位所有节点 async getUnitAllNode(form, msg = true) { return httpApi({ url: '/api/blade-manager/archiveTreeContract/getUnitAllNode', method: 'get', params: form, }, msg) }, //档案在线验收-确认并进入抽检 async saveAllSelectNodes(form, msg = true) { return httpApi({ url: '/api/blade-manager/archiveTreeContract/saveAllSelectNodes', method: 'post', data: form, }, msg) }, //档案在线验收-我验收的案卷 async getlazyTree(form, msg = true) { return httpApi({ url: '/api/blade-manager/archiveTreeContract/lazyTree', method: 'get', params: form, }, msg) }, //档案在线验收-查询节点已经上报的档案 async getNodeArchives(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/getNodeArchives', method: 'get', params: form, }, msg) }, //在线验收-抽检统计 async userInspectStats(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/userInspectStats', method: 'get', params: form, }, msg) }, //在线验收-修改抽检状态 async updateInspectStatus(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/updateInspectStatus', method: 'get', params: form, }, msg) }, //在线验收-保存抽检意见 async saveInspect(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/saveInspect', method: 'post', data: form, }, msg) }, //档案在线验收-开始抽检 async startInspect(form, msg = true) { return httpApi({ url: '/api/blade-manager/archiveTreeContract/startInspect', method: 'get', params: form, }, msg) }, //在线验收-专家抽检记录 async getUserInspectInfo(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/getUserInspectInfo', method: 'get', params: form, }, msg) }, //在线验收-抽检意见记录汇总: async getUserInspectInfo2(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/getUserInspectInfo2', method: 'get', params: form, }, msg) }, //在线验收-项目抽检统计 async projectInspectStat(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/projectInspectStat', method: 'get', params: form, }, msg) }, //在线验收-获取档案文件抽检意见 async getArchiveFileOpinion(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/getArchiveFileOpinion', method: 'get', params: form, }, msg) }, //在线验收-获取报告 async getArchiveConclusion(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/getArchiveConclusion', method: 'get', params: form, }, msg) }, //验收申请-历史验收报告 async getHistoryTable(form, msg = true) { return httpApi({ url: '/api/blade-archive/archiveExpertConclusion/getHistoryTable', method: 'get', params: form, }, msg) }, //在线验收-预览 async getAppPreview(form, msg = true) { return httpApi({ url: '/api/blade-archive/archiveExpertConclusion/getAppPreview', method: 'get', params: form, }, msg) }, //在线验收-查看验收报告 async getTable(form, msg = true) { return httpApi({ url: '/api/blade-archive/archiveExpertConclusion/getTable', method: 'get', params: form, }, msg) }, }