This commit is contained in:
曹辉 2022-08-26 17:05:56 +08:00
parent 7219bdfe8b
commit df64c30fe8
2 changed files with 272 additions and 685 deletions

View File

@ -45,10 +45,12 @@ export function testScoreBatch(query) {
}
// 查询个人成绩录入管理详细
export function getTestItemScore(id) {
export function getTestItemScore(query) {
return request({
url: '/system/testItemScore/' + id,
method: 'get'
url: '/system/testItemScore/getInfo',
method: 'get',
params: query
})
}
@ -71,10 +73,10 @@ export function updateTestItemScore(data) {
}
// 删除个人成绩录入管理
export function delTestItemScore(id) {
export function delTestItemScore(studentId, batchCode) {
return request({
url: '/system/testItemScore/' + id,
method: 'delete'
url: '/system/testItemScore/deleteItemScore?studentId=' + studentId + '&batchCode=' + batchCode,
method: 'post',
})
}
// 反显

File diff suppressed because it is too large Load Diff