zhangzengfei
2022-10-11 ba2c435355a217ad20e41be3d30eb7ab3eef49ba
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
})