入住信息列表搜索区

This commit is contained in:
962704835@qq.com
2025-10-25 03:20:44 +08:00
parent 14fe56b734
commit b1e82d0ba3
3 changed files with 432 additions and 53 deletions

View File

@@ -56,4 +56,22 @@ export function listAllRoomByFloor(id) {
url: '/dormitory/dms-dormitory/listAllRoomByFloor/' + id,
method: 'get'
})
}
}
// 修改证件照
export function submitOwnInfo(data){
return request({
url:'/comprehensive/extraInfo/submitOwnInfo',
method:'POST',
data
})
}
// 查询年级列表
export function listGrade(query = null) {
return request({
url: '/cph/grade/list',
method: 'get',
params: query
})
}