特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
2.2 KiB

6 months ago
5 months ago
6 months ago
5 months ago
6 months ago
5 months ago
4 months ago
5 months ago
4 months ago
3 months ago
5 months ago
6 months ago
  1. // 联系记录相关接口
  2. const api = {
  3. //联系记录-谁看过我(谁看过我的简历)
  4. employeeQueryWatchMe: {
  5. url: '/employ/check/queryWatchMeEmployee',
  6. method: 'GET',
  7. auth: true,
  8. },
  9. //会员中心-联系记录-谁看过我(谁看过我的招工)
  10. bossQueryWatchMe: {
  11. url: '/employ/check/queryWatchMeBoss',
  12. method: 'GET',
  13. auth: true,
  14. },
  15. //会员中心-联系记录-我看过谁(我看过谁的简历)
  16. bossQueryWatchWho: {
  17. url: '/employ/check/queryWatchWhoBoss',// queryWatchWhoBoss
  18. method: 'GET',
  19. auth: true,
  20. },
  21. //会员中心-联系记录-我看过谁 (我看过谁的招工)
  22. queryWatchWhoEmployee: {
  23. url: '/employ/check/queryWatchWhoEmployee',
  24. method: 'GET',
  25. auth: true,
  26. },
  27. //电子合同-获取电子合同列表
  28. queryContractList: {
  29. url: '/employ/contract/queryContractList',
  30. method: 'GET',
  31. auth: true,
  32. },
  33. //电子合同-根据id查询电子合同详情
  34. queryContracById: {
  35. url: '/employ/contract/queryContractById',
  36. method: 'GET',
  37. auth: true,
  38. },
  39. //电子合同-修改
  40. updateContract: {
  41. url: '/employ/contract/updateContract',
  42. method: 'POST',
  43. auth: true,
  44. },
  45. //电子合同-添加
  46. addContract: {
  47. url: '/employ/contract/addContract',
  48. method: 'POST',
  49. auth: true,
  50. },
  51. //电子合同模板-列表
  52. queryContractTemplateList: {
  53. url: '/employ/contract/queryContractTemplateList',
  54. method: 'GET',
  55. auth: true,
  56. },
  57. //电子合同模板-添加
  58. addContractTemplate: {
  59. url: '/employ/contract/addContractTemplate',
  60. method: 'POST',
  61. auth: true,
  62. },
  63. //电子合同模板-详情
  64. queryContractTemplateById: {
  65. url: '/employ/contract/queryContractTemplateById',
  66. method: 'GET',
  67. auth: true,
  68. },
  69. //电子合同模板-修改
  70. updateContractTemplate: {
  71. url: '/employ/contract/updateContractTemplate',
  72. method: 'POST',
  73. auth: true,
  74. },
  75. //工具-图片转pdf
  76. image2pdf: {
  77. url: '/employ/contract/image2pdf',
  78. method: 'GET',
  79. auth: true,
  80. },
  81. //工具-pdf转图片base64
  82. pdf2imagebase64: {
  83. url: '/employ/contract/pdf2imagebase64',
  84. method: 'GET',
  85. auth: true,
  86. },
  87. //工具-pdf加签名
  88. signPdf: {
  89. url: '/employ/contract/signPdf',
  90. method: 'GET',
  91. auth: true,
  92. },
  93. }
  94. export default api