12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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
- }
- })
- }
|