import {httpApi} from "../../request/httpApi"; export default { // 分页档案调整 async pageByArchive(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/page', method: 'get', params: form }, msg) }, //根据档案获取文件 async getarchiveFilePage(form, msg = true) { return httpApi({ url: '/api/blade-archive/archiveFile/page', method: 'post', params: form }, msg); }, //锁定案卷 async archivesautoLock(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/lock', method: 'post', params: form }, msg); }, //解锁案卷 /archivesauto/unlock async archivesautoUnLock(form, msg = true) { return httpApi({ url: '/api/blade-archive/archivesauto/unlock', method: 'post', params: form }, msg); }, }