特易招,招聘小程序
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.

19 lines
313 B

4 months ago
  1. // 工作相关接口
  2. const api = {
  3. // 首页-添加工作信息
  4. addResume: {
  5. url: '/employ/resume/addResume',
  6. method: 'POST',
  7. auth : true,
  8. limit : 1500,
  9. },
  10. // 我的简历
  11. queryResumeByUserId: {
  12. url: '/employ/resume/queryResumeByUserId',
  13. method: 'GET',
  14. auth : true,
  15. },
  16. }
  17. export default api