zhangzengfei
2022-08-05 012c84b59018018cd75f0b8c70f7492fcb3e3e6f
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
})