董国庆
2025-07-14 bd6efab8bd0d0a5a4173e16eaad2ae7bdf2f1d36
1
2
3
4
5
6
7
8
9
10
11
import axios from '@/utils/request';
 
// 通知后端开始获取视频流
export const playDetection = (id) => {
    return axios.get(`/system/car/playDetection/${id}`)
}
 
// 通知后端开始关闭视频流
export const closeRealVideo = (id) => {
    return axios.get(`/system/car/closeRealVideo/${id}`)
}