11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
import request from "@/api/request";
|
|
|
|
// 获取群组列表
|
|
export function getGroupList(params: {
|
|
page: number;
|
|
limit: number;
|
|
keyword?: string;
|
|
}) {
|
|
return request("/v1/chatroom", params, "GET");
|
|
}
|