- 新增职业测评佐证相关页面配置,包括列表、添加、详情页面 - 新增通知任务佐证相关页面配置,包括列表、添加、详情页面 - 实现学生管理组件中上传材料功能,支持职业测评和通知任务材料上传 - 优化专业工作组件,支持毕业生和非毕业生不同评分字段逻辑 - 调整个人报告页面标签配置,区分毕业生和非毕业生不同业务流程 - 完善表单验证逻辑,针对不同班级类型和标签页进行差异化处理 ```
46 lines
993 B
JavaScript
46 lines
993 B
JavaScript
import request from '@/utils/request';
|
|
|
|
// 查询职业测评材料
|
|
export function listStuTestMaterials(query) {
|
|
return request({
|
|
url: '/teacher/stuTestMaterials/getByFdyNameAndYearAndMonth',
|
|
method: 'get',
|
|
params: query,
|
|
headers: {
|
|
Authorization: "Bearer " + uni.getStorageSync("App-Token"),
|
|
}
|
|
})
|
|
}
|
|
// 查询职业测评材料详细
|
|
export function getStuTestMaterials(id) {
|
|
return request({
|
|
url: '/teacher/stuTestMaterials/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
// 新增职业测评材料
|
|
export function addStuTestMaterials(data) {
|
|
return request({
|
|
url: '/teacher/stuTestMaterials/add',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
|
|
// 修改职业测评材料
|
|
export function updateStuTestMaterials(data) {
|
|
return request({
|
|
url: '/teacher/stuTestMaterials/update',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
// 删除职业测评材料
|
|
export function delStuTestMaterials(id) {
|
|
return request({
|
|
url: '/teacher/stuTestMaterials/'+id,
|
|
method: 'post',
|
|
})
|
|
}
|