import { httpApi } from '../../request/httpApi' export default { //预算与实际统计-月度统计 async budgetAndPracticalByMonth(form) { return httpApi({ url: '/api/blade-control/annualBudget/budgetAndPracticalByMonth', method: 'get', params: form, }, false) }, //预算与实际统计-部门支出统计 async budgetAndPracticalByDept(form) { return httpApi({ url: '/api/blade-control/annualBudget/budgetAndPracticalByDept', method: 'get', params: form, }, false) }, //预算与实际统计-人工和管理统计 async budgetAndPracticalByManage(form) { return httpApi({ url: '/api/blade-control/annualBudget/budgetAndPracticalByManage', method: 'get', params: form, }, false) }, //预算与实际统计-总经营 async budgetAndPracticalByBusiness(form) { return httpApi({ url: '/api/blade-control/annualBudget/budgetAndPracticalByBusiness', method: 'get', params: form, }, false) }, }