position.js 555 B

12345678910111213141516171819202122232425262728
  1. import request from "@/utils/request"
  2. // 根据条件搜索招聘职位
  3. export const getJobAdvertisedSearch = (params) => {
  4. return request({
  5. url: '/app-api/menduner/system/job/advertised/search',
  6. method: 'GET',
  7. params,
  8. custom: {
  9. showLoading: false,
  10. auth: false
  11. }
  12. })
  13. }
  14. // 职位详情
  15. export const getPositionDetails = (params) => {
  16. return request({
  17. url: '/app-api/menduner/system/job/advertised/get/detail',
  18. method: 'GET',
  19. params,
  20. custom: {
  21. showLoading: false,
  22. auth: false
  23. }
  24. })
  25. }