profileTp.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. import request from '@/axios'
  2. export default {
  3. //新增资料模板
  4. addbaseprofiletp(data) {
  5. return request({
  6. url: '/base/profile/tp',
  7. method: 'post',
  8. data: data
  9. })
  10. },
  11. //修改资料模板
  12. editbaseprofiletp(data) {
  13. return request({
  14. url: '/base/profile/tp/edit',
  15. method: 'post',
  16. data: data
  17. })
  18. },
  19. //获取所有使用商品ID
  20. getbaseprofiletplist(data) {
  21. return request({
  22. url: '/base/profile/tp/goods_list',
  23. method: 'get',
  24. params: data
  25. })
  26. },
  27. //获取填写资料审核详细信息
  28. getbaseprofiletpgetInfo(data) {
  29. return request({
  30. url: '/base/profile/tp/getInfo',
  31. method: 'get',
  32. params: data
  33. })
  34. },
  35. //查询资料模板列表
  36. getbaseprofiletplists(data) {
  37. return request({
  38. url: '/base/profile/tp/list',
  39. method: 'get',
  40. params: data
  41. })
  42. },
  43. //查询填写资料审核列表
  44. getbaseprofiletplistProfile(data) {
  45. return request({
  46. url: '/base/profile/tp/listProfile',
  47. method: 'get',
  48. params: data
  49. })
  50. },
  51. //获取资料模板详细信息
  52. getbaseprofiletpId(data) {
  53. return request({
  54. url: '/base/profile/tp/' + data,
  55. method: 'get'
  56. })
  57. },
  58. //获取填写盖章审核详细信息
  59. getbaseprofileStampgetInfo(data) {
  60. return request({
  61. url: '/base/profileStamp/getInfo',
  62. method: 'get',
  63. params: data
  64. })
  65. },
  66. //导出盖章word
  67. addWordbaseprofileStamp(data) {
  68. return request({
  69. url: '/base/profileStamp/addWord',
  70. method: 'post',
  71. data: data
  72. })
  73. },
  74. //修改填写盖章审核
  75. editbaseprofileStamp(data) {
  76. return request({
  77. url: '/base/profileStamp/edit',
  78. method: 'post',
  79. data: data
  80. })
  81. },
  82. //新增填写盖章审核
  83. addbaseprofileStamp(data) {
  84. return request({
  85. url: '/base/profileStamp',
  86. method: 'post',
  87. data: data
  88. })
  89. },
  90. }