吉安感知网项目-前端
shuishen
2026-02-03 89380e6260a75d1d3b94de687ebcc2f50d50659d
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
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * @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'
 
import { convertKeysToCamelCase } from '@/utils/apiUtils'
 
// 图斑聚合
export const getPanoramaList = data => {
    return request({
        url: `/blade-resource/attach/mapAttachs`,
        method: 'post',
        data: convertKeysToCamelCase(data),
    })
}
 
// 图斑聚合
export const getMapSpotAggregation = params => {
    return request({
        url: `/drone-device-core/patches/api/v1/Patches/getLotRegionCount`,
        method: 'get',
        params,
    })
}
 
export const getPanoramaDetails = id => {
    return request({
        url: `/blade-resource/attach/detail?id=${id}`,
        method: 'get',
    })
}