overService.js 847 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. queryById: function (id) {
  30. return request({
  31. url: "/look/over/queryById",
  32. method: "get",
  33. params: { id: id },
  34. });
  35. },
  36. getNotDisposeList: function (params) {
  37. return request({
  38. url: "/look/over/getNotDisposeList",
  39. method: "get",
  40. params: params,
  41. });
  42. },
  43. };