feat: 本次提交更新内容如下

同步
This commit is contained in:
2025-07-22 13:57:24 +08:00
parent 7b30f98ab9
commit 34df010769
9 changed files with 67 additions and 24 deletions

View File

@@ -0,0 +1,10 @@
import request from "@/api/request";
// 获取设备列表
export function getDeviceList(params: {
page: number;
limit: number;
keyword?: string;
}) {
return request("/v1/device/list", params, "GET");
}