student.js 404 B

1234567891011121314151617
  1. import request from '@/config/axios'
  2. // 获取企业推荐信分页
  3. export const getRecommendationPage = async (data) => {
  4. return await request.post({
  5. url: '/app-api/flames/student/recommendation/list',
  6. data
  7. })
  8. }
  9. // 获取实习证书分页
  10. export const getCertificatePage = async (data) => {
  11. return await request.post({
  12. url: '/app-api/flames/student/internship/certificate/list',
  13. data
  14. })
  15. }