From 2b132fe01796357bf27fa02bde6fedb0101ecba4 Mon Sep 17 00:00:00 2001 From: zhangzengfei <zhangzengfei@iotlink.com> Date: 星期四, 15 四月 2021 18:07:27 +0800 Subject: [PATCH] 修复新建任务时的字段全选功能 --- src/api/shuohuang.ts | 17 ++++++++++++++--- 1 files changed, 14 insertions(+), 3 deletions(-) diff --git a/src/api/shuohuang.ts b/src/api/shuohuang.ts index 7b111d0..592f571 100644 --- a/src/api/shuohuang.ts +++ b/src/api/shuohuang.ts @@ -36,6 +36,12 @@ method: 'get', params: query }) + export const getCarVideos = (query: any) => + request({ + url: '/data/api-c/lkg/getCarVideos', + method: 'get', + params: query + }) export const getLabelMap = () => request({ url: '/data/api-c/lkg/getCode', @@ -89,9 +95,9 @@ method: 'get', params: query }) -export const getVideoListByTrainNumber = (query: any) => +export const getVideoListBySearch = (query: any) => request({ - url: '/data/api-c/lkg/getlstB', + url: '/data/api-c/lkg/getlstBySearch', method: 'get', params: query }) @@ -103,7 +109,7 @@ }) export const getTaskList = (query: any) => request({ - url: '/data/api-c/lkg/getlstB', + url: '/data/api-c/lkg/getTaskList', method: 'get', params: query }) @@ -149,4 +155,9 @@ url:'/data/api-c/slot/getlst', method: 'get', params: query +}) +export const getEventVideo = (query:any) => request({ + url:'/data/api-c/lkg/getEventClip', + method: 'get', + params: query }) \ No newline at end of file -- Gitblit v1.8.0