学工发布通知前端页面的修改,用于管理通知,对整个年级发送的通知修改和删除;给学生证提交流程添加完成制作功能的前端的修改

This commit is contained in:
MDSMO
2025-08-12 17:36:08 +08:00
parent 2f6e3503ae
commit ad477813f3
9 changed files with 485 additions and 137 deletions

View File

@@ -3,7 +3,7 @@ import request from '@/utils/request'
// 查询通知管理列表
export function listNotificationManagement(query) {
return request({
url: '/routine/NotificationManagement/my-sent',
url: '/routine/NotificationManagement/list',
method: 'get',
params: query
})
@@ -43,6 +43,15 @@ export function delNotificationManagement(id) {
})
}
// 批量修改通知管理
export function batchUpdateNotificationManagement(data) {
return request({
url: '/routine/NotificationManagement/batchUpdate',
method: 'post',
data: data
})
}
// 获取年级列表
export function getGradeList() {
return request({
@@ -60,5 +69,15 @@ export function sendNotificationByGrades(data) {
})
}
// 查询当前用户发送的通知列表
export function listMySentNotifications(query) {
return request({
url: '/routine/NotificationManagement/my-sent',
method: 'get',
params: query
})
}