/*
|
* @Author: shuishen 1109946754@qq.com
|
* @Date: 2024-11-12 11:34:22
|
* @LastEditors: shuishen 1109946754@qq.com
|
* @LastEditTime: 2024-12-26 15:03:42
|
* @FilePath: \bigScreen\src\api\panorama\index.js
|
* @Description:
|
*
|
* Copyright (c) 2024 by shuishen, All Rights Reserved.
|
*/
|
import request from 'utils/http'
|
const { VITE_APP_BASE } = import.meta.env
|
|
export const getPanoramaList = (params) => {
|
const url = `${VITE_APP_BASE}xg/kzqj.json`
|
return request({
|
url,
|
method: 'get',
|
params,
|
localJSON: true
|
})
|
}
|