countAnalysis.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import request from '@/utils/request'
  2. // 资金计划统计分析
  3. export function getfundPlanDetail(data) {
  4. return request({
  5. url: '/projects/getListAmt',
  6. method: 'post',
  7. data
  8. })
  9. }
  10. // 资金使用情况分析
  11. export function getfundPlanUse(data) {
  12. return request({
  13. url: '/projects/getListAmtUse',
  14. method: 'post',
  15. data
  16. })
  17. }
  18. // 项目进度分析
  19. export function getProjecsProcess(data) {
  20. return request({
  21. url: '/projects/getProjecsProcess',
  22. method: 'post',
  23. data
  24. })
  25. }
  26. // 项目年度计划总金额穿透(四个大数字)
  27. export function getYearthroughList(data) {
  28. return request({
  29. url: '/projects/pageYearPlan',
  30. method: 'post',
  31. data
  32. })
  33. }
  34. // 年度实际投资金额穿透数据(echart柱状图)
  35. export function getYearMonththroughList(data) {
  36. return request({
  37. url: '/projects/pageCompAmt',
  38. method: 'post',
  39. data
  40. })
  41. }
  42. // 首页饼图地区穿透获取统计总数
  43. export function getAreaCountValue(data) {
  44. return request({
  45. url: '/projects/buildAddRt',
  46. method: 'post',
  47. data
  48. })
  49. }