feat:对接消息相关接口

This commit is contained in:
zjc
2025-01-08 18:05:12 +08:00
parent ab1ab210a9
commit 9ee304c8c2
39 changed files with 2081 additions and 1926 deletions

View File

@@ -11,7 +11,7 @@ export function getWeatherApi() {
// 核心景区视频
export function getVideoListApi(data) {
return request({
url: '/api/video/list',
url: 'http://36.138.38.16:6180/fjtcc-api/api/video/list',
method: 'get',
params: data
})
@@ -20,8 +20,25 @@ export function getVideoListApi(data) {
// 刷新播放地址
export function postRefreshApi(data) {
return request({
url: '/api/video/refresh',
url: 'http://36.138.38.16:6180/fjtcc-api/api/video/refresh',
method: 'POST',
data: data
data
})
}
// 景区
export function getSpotListApi() {
return request({
url: '/api/largeScreen/spot/list',
method: 'get'
})
}
// 百度地图拥堵
export function getBaiduMapCrowdedApi(data) {
return request({
url: '/api/largeScreen/spot/baiduMapCrowded',
method: 'get',
params: data
})
}