disposeRubbishService.js 577 B

12345678910111213141516171819202122232425262728293031
  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. };