zhangzengfei
2021-02-01 3a5d29e6dffa18e5e44579360e4c278acc3b8423
1
2
3
4
5
6
7
8
9
10
11
12
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
})