校历编辑

This commit is contained in:
2026-08-28 11:40:34 +08:00
parent 2183b33a7f
commit 7f853afff6
5 changed files with 127 additions and 31 deletions
+9
View File
@@ -18,6 +18,15 @@ export function getXqxlb(bh) {
})
}
// 预生成学期整张校历占位记录(首次进入新学期时调用,接口自带去重)
export function addXqxlb(startDate, endDate) {
return request({
url: '/xqxlb/add',
method: 'post',
params: { startDate: startDate, endDate: endDate }
})
}
// 新增 / 修改校历假期(无 bh 时为新增,带 bh 时为修改)
export function updateXqxlb(data) {
return request({