student.js 838 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import request from "@/utils/request"
  2. // 获取企业推荐信列表
  3. export const getEnterpriseRecommendationList = async (data) => {
  4. return request({
  5. url: '/app-api/flames/student/recommendation/list',
  6. method: 'POST',
  7. data,
  8. custom: {
  9. openEncryption: true,
  10. showLoading: false,
  11. auth: true
  12. }
  13. })
  14. }
  15. // 获取实习证书列表
  16. export const getEnterpriseCertificateList = async (data) => {
  17. return request({
  18. url: '/app-api/flames/student/internship/certificate/list',
  19. method: 'POST',
  20. data,
  21. custom: {
  22. openEncryption: true,
  23. showLoading: false,
  24. auth: true
  25. }
  26. })
  27. }
  28. // 获取学校详情
  29. export const getSchoolDetails = async (data) => {
  30. return request({
  31. url: '/app-api/flames/school/detail',
  32. method: 'POST',
  33. data,
  34. custom: {
  35. openEncryption: true,
  36. showLoading: false,
  37. auth: true
  38. }
  39. })
  40. }