123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- 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)
- },
- }
|