2024-03-01 16:42:56 +08:00

18 lines
285 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import {
request
} from '../selfRequest';
// 查询条件筛选
// 1.会议室类型2.人数3.会议室设备4.形式
export function meetingRoomDict(param) {
return request({
url: '/api/roomContent/searchInfo/' + param,
method: "get",
});
}