overService.js 717 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import request from "../../common/request"
  2. export default {
  3. save: function (inputForm) {
  4. return request({
  5. url: "/look/over/save",
  6. method: "post",
  7. data: inputForm,
  8. });
  9. },
  10. getMaxNo: function () {
  11. return request({
  12. url: "/look/over/getMaxNo",
  13. method: "get",
  14. });
  15. },
  16. getProcessingUnit: function () {
  17. return request({
  18. url: "/look/over/getProcessingUnit",
  19. method: "get",
  20. });
  21. },
  22. getUserInfoByOffId: function (officeId) {
  23. return request({
  24. url: "/look/over/getUserInfoByOffId",
  25. method: "get",
  26. params: {officeId: officeId}
  27. });
  28. },
  29. getNotDisposeList: function (params) {
  30. return request({
  31. url: "/look/over/getNotDisposeList",
  32. method: "get",
  33. params: params,
  34. });
  35. },
  36. };