enterprise.js 544 B

123456789101112131415161718192021222324252627
  1. import request from "@/utils/request"
  2. // 获取精选企业列表
  3. export const getHotEnterprise = (params) => {
  4. return request({
  5. url: '/app-api/menduner/system/job/advertised/get/hot/enterprise',
  6. method: 'GET',
  7. params,
  8. custom: {
  9. showLoading: false,
  10. auth: false
  11. }
  12. })
  13. }
  14. // 更新员工信息
  15. export const updateStaffInfo = (data) => {
  16. return request({
  17. url: '/app-api/menduner/system/recruit/user/save',
  18. method: 'POST',
  19. data,
  20. custom: {
  21. showLoading: false,
  22. auth: true
  23. }
  24. })
  25. }