12 lines
195 B
JavaScript
Raw Normal View History

2024-04-02 17:51:41 +08:00
import {
request
} from '../selfRequest';
// 园区列表
export function selectParkListRq() {
return request({
url: '/api/room/selectParkList',
method: "get",
});
}