profileStamp.js 699 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import {
  2. myRequest
  3. } from '../request.js'
  4. export default {
  5. //新增填写盖章审核
  6. addbaseprofileStamp(data) {
  7. return myRequest({
  8. url: '/base/profileStamp',
  9. method: 'post',
  10. data: data
  11. })
  12. },
  13. //导出盖章word
  14. addWordbaseprofileStamp(data) {
  15. return myRequest({
  16. url: '/base/profileStamp/addWord',
  17. method: 'post',
  18. data: data
  19. })
  20. },
  21. //修改填写盖章审核
  22. editbaseprofileStamp(data) {
  23. return myRequest({
  24. url: '/base/profileStamp/edit',
  25. method: 'post',
  26. data: data
  27. })
  28. },
  29. //获取填写盖章审核详细信息
  30. getbaseprofileStampgetInfo(data) {
  31. return myRequest({
  32. url: '/base/profileStamp/getInfo',
  33. method: 'get',
  34. data: data
  35. })
  36. },
  37. }