11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
|
|
import request from "@/api/request";
|
||
|
|
|
||
|
|
// 获取设备列表
|
||
|
|
export function getDeviceList(params: {
|
||
|
|
page: number;
|
||
|
|
limit: number;
|
||
|
|
keyword?: string;
|
||
|
|
}) {
|
||
|
|
return request("/v1/device/list", params, "GET");
|
||
|
|
}
|