zhangzengfei
2022-03-23 6c84a71cc8f3397e7f3c4f49208c38774a82531f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from '@/scripts/httpRequest';
import qs from 'qs'
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',
    data
})
 
export const findTraceResult = (data: any) => request({
    url: '/data/api-v/panorama/getAlgoOutput',
    method: 'post',
    data
})