student.js 316 B

123456789101112131415
  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. }