优化若干功能

This commit is contained in:
2026-09-09 17:02:29 +08:00
parent fef0233cc4
commit 2f238875e1
16 changed files with 609 additions and 68 deletions
+9
View File
@@ -66,6 +66,15 @@ export function updateScheduleImages(id, images) {
})
}
// 仅更新日程的备注内容(创建 / 修改 / 完成后均可),不会影响其他字段或已绑定提醒
export function updateScheduleContent(id, content) {
return request({
url: `/backend/oa/schedule/content/${id}`,
method: 'post',
data: { content }
})
}
// 批量顺延指定日期的全部未完成日程
export function carryPendingSchedules(data) {
return request({