前端学工处增加一键确认待确认的学生住宿费用功能

This commit is contained in:
MDSMO
2025-08-26 10:28:02 +08:00
parent c786b89e7f
commit 5fd821b08a
4 changed files with 76 additions and 18 deletions

View File

@@ -122,6 +122,14 @@ export function updateNewRecord(data) {
export function delNewRecord(id) {
return request({
url: '/dormitory/newRecord/' + id,
method: 'post'
method: 'delete'
})
}
// 一键确认未进行住宿费用确认的学生
export function confirmUnconfirmedStudents() {
return request({
url: '/dormitory/newRecord/confirmUnconfirmedStudents',
method: 'POST'
})
}