修改
This commit is contained in:
parent
7219bdfe8b
commit
df64c30fe8
@ -45,10 +45,12 @@ export function testScoreBatch(query) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 查询个人成绩录入管理详细
|
// 查询个人成绩录入管理详细
|
||||||
export function getTestItemScore(id) {
|
export function getTestItemScore(query) {
|
||||||
return request({
|
return request({
|
||||||
url: '/system/testItemScore/' + id,
|
url: '/system/testItemScore/getInfo',
|
||||||
method: 'get'
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -71,10 +73,10 @@ export function updateTestItemScore(data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 删除个人成绩录入管理
|
// 删除个人成绩录入管理
|
||||||
export function delTestItemScore(id) {
|
export function delTestItemScore(studentId, batchCode) {
|
||||||
return request({
|
return request({
|
||||||
url: '/system/testItemScore/' + id,
|
url: '/system/testItemScore/deleteItemScore?studentId=' + studentId + '&batchCode=' + batchCode,
|
||||||
method: 'delete'
|
method: 'post',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 反显
|
// 反显
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user