This commit is contained in:
xiaozhiyong
2026-06-04 16:54:46 +08:00
parent 08f0e41baa
commit 1890cca75f
12 changed files with 1149 additions and 258 deletions

View File

@@ -1,8 +1,8 @@
import service from '@/utils/request'
export const getDeviceWarnList = (data) => {
export const getAlarmRecordListByPage = (data) => {
return service({
url: '/device/getDeviceWarnList',
url: '/device/getAlarmRecordListByPage',
method: 'post',
data: data
})

View File

@@ -16,9 +16,9 @@ export const deviceOperation = (data) => {
})
}
export const getDeviceDetailsInfoByRemote = (data) => {
export const getDeviceDetailsListByPage = (data) => {
return service({
url: '/device/getDeviceDetailsInfoByRemote',
url: '/device/getDeviceDetailsListByPage',
method: 'post',
data: data
})