import request from "@/utils/request" // 获取企业推荐信列表 export const getEnterpriseRecommendationList = async (data) => { return request({ url: '/app-api/flames/student/recommendation/list', method: 'POST', data, custom: { openEncryption: true, showLoading: false, auth: true } }) } // 获取实习证书列表 export const getEnterpriseCertificateList = async (data) => { return request({ url: '/app-api/flames/student/internship/certificate/list', method: 'POST', data, custom: { openEncryption: true, showLoading: false, auth: true } }) } // 获取学校详情 export const getSchoolDetails = async (data) => { return request({ url: '/app-api/flames/school/detail', method: 'POST', data, custom: { openEncryption: true, showLoading: false, auth: true } }) }