优化日程增加文件上传功能

This commit is contained in:
2026-09-09 09:55:05 +08:00
parent 04fc84dde6
commit d2643a3697
7 changed files with 513 additions and 15 deletions
+9
View File
@@ -57,6 +57,15 @@ export function carrySchedule(id, data) {
})
}
// 更新日程的相关图片:images 为 [{id, url, name}],由后端序列化存储
export function updateScheduleImages(id, images) {
return request({
url: `/backend/oa/schedule/images/${id}`,
method: 'post',
data: { images }
})
}
// 批量顺延指定日期的全部未完成日程
export function carryPendingSchedules(data) {
return request({