This commit is contained in:
2023-03-21 22:47:23 +08:00
parent 58d702f6f7
commit e151ad7c9c
11 changed files with 885 additions and 127 deletions

View File

@@ -25,3 +25,14 @@ export function savePlace(data) {
data: data
});
}
// 查询场地
export function getAllPlaces(param) {
return request({
url: `/sch/place/all`,
method: 'get',
params: param
})
}