From 4a800a8fc83c6bd1f86a8e847b079a51a7532c09 Mon Sep 17 00:00:00 2001 From: zhangzengfei <zhangzengfei@smartai.com> Date: 星期三, 20 七月 2022 15:05:58 +0800 Subject: [PATCH] 修复国标配置的bug --- src/api/panorama.ts | 14 ++++++++++---- 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/api/panorama.ts b/src/api/panorama.ts index e8a897e..ce66633 100644 --- a/src/api/panorama.ts +++ b/src/api/panorama.ts @@ -1,12 +1,18 @@ import request from '@/scripts/httpRequest'; import qs from 'qs' -export const getPanoramaPic = ()=>request({ +export const getPanoramaPic = () => request({ url: '/data/api-v/panorama/show', method: 'get' }); -export const putPanoramaPic = (data:any)=>request({ - url:'/data/api-v/panorama/upload', - method:'post', +export const putPanoramaPic = (data: any) => request({ + url: '/data/api-v/panorama/upload', + method: 'post', + data +}) + +export const findTraceResult = (data: any) => request({ + url: '/data/api-v/panorama/getAlgoOutput', + method: 'post', data }) \ No newline at end of file -- Gitblit v1.8.0