fuliqi
2024-10-15 0e944bfc16136c0a749fc6022e0dfc7f2b4af010
src/api/platform/monitor.js
@@ -10,18 +10,20 @@
}
// 查询设备资产统计数
export function videoCount(type) {
export function videoCount(query) {
  return request({
    url: '/system/monitor/getVideoCount/' + type,
    method: 'get'
    url: '/system/monitor/getVideoCount',
    method: 'get',
    params: query
  })
}
// 查询异常恢复设备资产统计数
export function recoveryException() {
export function recoveryException(query) {
  return request({
    url: '/system/monitor/recoveryException',
    method: 'get'
    method: 'get',
    params: query
  })
}