新增实时监控功能

左边是设备通道树,右边是分屏预览
This commit is contained in:
朱俊杰
2022-02-10 14:45:33 +08:00
parent d07a5680f3
commit 37a84e6691
24 changed files with 1322 additions and 16 deletions

View File

@@ -0,0 +1,19 @@
import axios from 'axios';
export const tree = (deviceId) => {
return axios({
url: `/api/device/query/${deviceId}/tree`,
method: 'get'
})
}
export const deviceList = (page, count) => {
return axios({
method: 'get',
url:`/api/device/query/devices`,
params: {
page,
count
}
})
}