This commit is contained in:
duanliang
2025-05-30 13:50:43 +08:00
parent 21a3bc6452
commit e3f0196e76
16 changed files with 2049 additions and 96 deletions

View File

@@ -107,4 +107,28 @@ export function getSpotVideoEvents(data) {
method: 'post',
data
})
}
// 徒步客流统计
export function getSpotPassengerFlow(data) {
return request({
url: '/fjtcc-api/api/largeScreen/spot/passengerFlow',
method: 'get',
data
})
}
// 收藏视频
export function getVideCollectCate(data) {
return request({
url: '/fjtcc-api/api/largeScreen/video/collectCate',
method: 'get',
data
})
}
// 收藏排序
export function getVideCollectCateSort(data) {
return request({
url: '/fjtcc-api/api/largeScreen/video/collectCateSort',
method: 'post',
data
})
}

View File

@@ -73,3 +73,10 @@ export function getSpotListApi() {
method: 'get'
})
}
// 景区列表
export function getGsdataDetailApi(data) {
return request({
url: `/fjtcc-api/api/largeScreen/gsdata/detail/${data}`,
method: 'get',
})
}