regularcountinfo.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import request from "@/utils/request";
  2. // 查询营级单位排名列表
  3. export function unitrank() {
  4. return request({
  5. url: "/bdglregular/regularcountinfo/unitrank",
  6. method: "get"
  7. });
  8. }
  9. // 查询待处理及待验收问题列表
  10. export function pendingacceptance() {
  11. return request({
  12. url: "/bdglregular/regularcountinfo/pendingacceptance",
  13. method: "get"
  14. });
  15. }
  16. // 查询整体状态完成比例列表
  17. export function completeproportion() {
  18. return request({
  19. url: "/bdglregular/regularcountinfo/completeproportion",
  20. method: "get"
  21. });
  22. }
  23. // 查询各营级及机关单位列表
  24. export function unitproportion() {
  25. return request({
  26. url: "/bdglregular/regularcountinfo/unitproportion",
  27. method: "get"
  28. });
  29. }
  30. // 查询经常性检查详细
  31. export function getRegularinfo(id) {
  32. return request({
  33. url: '/bdglregular/regularinfo/' + id,
  34. method: 'get'
  35. })
  36. }
  37. // 查询部门
  38. export function getDeptss(query) {
  39. return request({
  40. url: '/grassrootsregistration/common/getDept',
  41. method: 'get',
  42. params: query
  43. })
  44. }