Web端添加治理模块状态展示界面、模块事件展示、主动询问模块状态功能

This commit is contained in:
guanj
2025-07-08 08:44:13 +08:00
parent 4cde4e367e
commit 7fabcb7f0f
9 changed files with 859 additions and 406 deletions

View File

@@ -121,8 +121,24 @@ export function getById(data?: any) {
//测试项日志修改
export function updateRecordData(data?: any) {
return createAxios({
url: 'cs-device-boot/wlRecord/updateRecordData',
url: '/cs-device-boot/wlRecord/updateRecordData',
method: 'POST',
data
})
}
//模块数据
export function allModelData(data?: any) {
return createAxios({
url: '/cs-harmonic-boot/data/allModelData',
method: 'POST',
data
})
}
//刷新状态
export function getModuleState(data?: any) {
return createAxios({
url: '/cs-harmonic-boot/data/getModuleState',
method: 'POST',
params: data
})
}