actual.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import { HcApi } from '../../request/index'
  2. export default {
  3. //预算与实际统计-月度统计
  4. async budgetAndPracticalByMonth(form) {
  5. return HcApi({
  6. url: '/api/blade-control/annualBudget/budgetAndPracticalByMonth',
  7. method: 'get',
  8. params: form,
  9. })
  10. },
  11. //预算与实际统计-部门支出统计
  12. async budgetAndPracticalByDept(form) {
  13. return HcApi({
  14. url: '/api/blade-control/annualBudget/budgetAndPracticalByDept',
  15. method: 'get',
  16. params: form,
  17. })
  18. },
  19. //预算与实际统计-人工和管理统计
  20. async budgetAndPracticalByManage(form) {
  21. return HcApi({
  22. url: '/api/blade-control/annualBudget/budgetAndPracticalByManage',
  23. method: 'get',
  24. params: form,
  25. })
  26. },
  27. //预算与实际统计-总经营
  28. async budgetAndPracticalByBusiness(form) {
  29. return HcApi({
  30. url: '/api/blade-control/annualBudget/budgetAndPracticalByBusiness',
  31. method: 'get',
  32. params: form,
  33. })
  34. },
  35. }