兵马未动 粮草先行

This commit is contained in:
RISE
2026-02-08 23:47:50 +08:00
parent 00a005e65f
commit 2670340af3
47 changed files with 3909 additions and 257 deletions

View File

@@ -103,3 +103,37 @@ export const fearchRoomStuNum = (roomNo: string) => {
});
};
/**
* 互换宿舍文档sourceSutNo / targetStuNO
*/
export const exchangeRoom = (data: { sourceSutNo: string; targetStuNO: string }) => {
return request({
url: '/stuwork/dormroomstudent/exchangeRoom',
method: 'post',
data
});
};
/**
* 打印宿舍卡(按房间号获取打印数据)
*/
export const printDormRoomData = (roomNo: string) => {
return request({
url: '/stuwork/dormroomstudent/printDormRoomData',
method: 'get',
params: { roomNo }
});
};
/**
* 空 n 人宿舍导出
*/
export const exportEmptyPeopleRoomExcel = (data?: any) => {
return request({
url: '/stuwork/dormroomstudent/exportEmptyPeopleRoomExcel',
method: 'post',
data: data || {},
responseType: 'blob'
});
};