1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import request from "@/utils/request"
- // 获取企业推荐信列表
- export const getRecommendationPage = 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
- }
- })
- }
- // 获得学生实习记录分页
- export const getStudentPage = async (params) => {
- return request({
- url: '/app-api/menduner/system/student/page',
- method: 'GET',
- params,
- custom: {
- auth: true
- }
- })
- }
- // 获得学生实习报告列表
- export const getStudentReportList = async (params) => {
- return request({
- url: '/app-api/menduner/system/student/get/report/list',
- method: 'GET',
- params,
- custom: {
- auth: true
- }
- })
- }
- // 保存学生实习报告
- export const saveStudentReport = async (data) => {
- return request({
- url: '/app-api/menduner/system/student/report/save',
- method: 'POST',
- data,
- custom: {
- openEncryption: true,
- showLoading: false,
- auth: true
- }
- })
- }
- // 获取学生实习的企业列表
- export const getStudentPracticeCompanyList = async () => {
- return request({
- url: '/app-api/menduner/system/student/record-enterprise/list',
- method: 'GET',
- custom: {
- auth: true
- }
- })
- }
|