From 5447c3a4be407b4cea8e92839a1371b94d9d1657 Mon Sep 17 00:00:00 2001 From: sd <shidong@jhsoft.cc> Date: 星期二, 05 八月 2025 17:03:10 +0800 Subject: [PATCH] 模型训练-筛选搜索功能实现 --- src/api/scene.ts | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/src/api/scene.ts b/src/api/scene.ts index 130433f..fa61c1a 100644 --- a/src/api/scene.ts +++ b/src/api/scene.ts @@ -46,6 +46,14 @@ params: query }); }; +export const getCameraSceneRuleTwo = (query: any) => { + return request({ + url: "/api-v1/v1/task/list", + method: "get", + headers: { contentType: "application/json; charset=utf-8" }, + params: query + }); +}; export const getLinkSceneRule = (params: any) => { return request({ @@ -62,3 +70,10 @@ params: { groupId: id } }); }; +export const deleteCameraSceneTwo = (params: any) => { + return request({ + url: "/api-v1/v1/task/delete", + method: "delete", + params:params + }); +}; -- Gitblit v1.8.0