无人机管理后台前端(已迁走)
张含笑
2025-09-01 2ca94de8ede18ac07ccfd8dec7b6f6a707adde9b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * @Author       : yuan
 * @Date         : 2025-06-05 09:49:42
 * @LastEditors  : yuan
 * @LastEditTime : 2025-06-07 18:16:57
 * @FilePath     : \src\api\panorama\index.js
 * @Description  : 
 * Copyright 2025 OBKoro1, All Rights Reserved. 
 * 2025-06-05 09:49:42
 */
import request from '@/axios'
 
export const getPanoramaList = (data) => {
    return request({
        url: `/blade-resource/attach/mapAttachs`,
        method: 'post',
        data
    })
}
 
export const getPanoramaDetails = (id) => {
    return request({
        url: `/blade-resource/attach/detail?id=${id}`,
        method: 'get'
    })
}