shuishen
2023-05-08 e24f70ababdee2b4fdce71c6b80a9bc928fa0331
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2022-11-30 15:18:29
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2023-03-02 10:31:31
 * @FilePath: \srs-police-affairs\src\api\panorama\index.js
 * @Description: 
 * 
 * Copyright (c) 2022 by shuishen 1109946754@qq.com, All Rights Reserved. 
 */
import request from "@/router/axios.js"
 
/**
 * 获取全景列表
 * @param {*} params
 * @returns
 */
export const getPanoramaList = () => {
    return request({
        url: '/api/panorama/panorama/getPanoramaList',
        method: 'get',
    })
}