data.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import {httpApi} from "../../request/httpApi";
  2. export default {
  3. //查询内业资料进度
  4. async queryMaterialProgress(form) {
  5. return httpApi({
  6. url: '/api/blade-business/materialProgress/queryMaterialProgress',
  7. method: 'post',
  8. params: form
  9. });
  10. },
  11. //报表资料审批统计
  12. async queryMaterialProgressStatus(form) {
  13. return httpApi({
  14. url: '/api/blade-business/materialProgress/queryMaterialProgressStatus',
  15. method: 'post',
  16. params: form
  17. });
  18. },
  19. //声像媒体资料统计
  20. async queryImageClassification(form) {
  21. return httpApi({
  22. url: '/api/blade-business/materialProgress/queryImageClassification',
  23. method: 'post',
  24. params: form
  25. });
  26. },
  27. //资料进度
  28. async queryContractTreeMaterialProgress(form) {
  29. return httpApi({
  30. url: '/api/blade-business/materialProgress/queryContractTreeMaterialProgress',
  31. method: 'post',
  32. params: form
  33. });
  34. },
  35. // 内外业进度
  36. async queryNeiWaiYeProgress(form) {
  37. return httpApi({
  38. url: '/api/blade-business/neiWaiYeProgressController/neiWaiYeProgress',
  39. method: 'get',
  40. params: form
  41. });
  42. },
  43. }