/*
|
* @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',
|
})
|
}
|