mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 13:09:38 +08:00
12 lines
209 B
JavaScript
12 lines
209 B
JavaScript
import {
|
|
request
|
|
} from '../selfRequest';
|
|
|
|
// 查询条件筛选
|
|
export function loginRq(param) {
|
|
return request({
|
|
url: '/api/roomContent/searchInfo/' + param,
|
|
method: "get",
|
|
});
|
|
}
|