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