import {httpApi} from "../../request/httpApi"; export default { //查询内业资料进度 async queryMaterialProgress(form) { return httpApi({ url: '/api/blade-business/materialProgress/queryMaterialProgress', method: 'post', params: form }); }, //报表资料审批统计 async queryMaterialProgressStatus(form) { return httpApi({ url: '/api/blade-business/materialProgress/queryMaterialProgressStatus', method: 'post', params: form }); }, //声像媒体资料统计 async queryImageClassification(form) { return httpApi({ url: '/api/blade-business/materialProgress/queryImageClassification', method: 'post', params: form }); }, //资料进度 async queryContractTreeMaterialProgress(form) { return httpApi({ url: '/api/blade-business/materialProgress/queryContractTreeMaterialProgress', method: 'post', params: form }); }, // 内外业进度 async queryNeiWaiYeProgress(form) { return httpApi({ url: '/api/blade-business/neiWaiYeProgressController/neiWaiYeProgress', method: 'get', params: form }); }, }