解决所有bug问题

This commit is contained in:
RISE
2026-02-09 20:03:33 +08:00
parent 707545f51e
commit 2e2c257743
22 changed files with 3405 additions and 44 deletions

View File

@@ -25,3 +25,16 @@ export const addClassRoomAssign = (data: { buildingNo?: string | number; positio
});
};
/**
* 取消教室安排
* 接口文档POST /api/stuwork/teachclassroomassign/delClassRoomAssign
* @param data 教室基础数据(包含 id, classCode, position 等)
*/
export const delClassRoomAssign = (data: any) => {
return request({
url: '/stuwork/teachclassroomassign/delClassRoomAssign',
method: 'post',
data,
});
};