12 lines
262 B
JavaScript
12 lines
262 B
JavaScript
|
|
import request from '@/utils/request'
|
||
|
|
|
||
|
|
// 视频监测 ---- 设备列表接口 左2
|
||
|
|
export function getVideoDeviceListAPI(data) {
|
||
|
|
return request({
|
||
|
|
url: '/smart-site/videoDetection/getVideoDeviceList',
|
||
|
|
method: 'post',
|
||
|
|
data,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|