完成 终端台账管理 迁移工作

This commit is contained in:
GGJ
2024-02-21 15:15:35 +08:00
parent 30513eb374
commit ee6885f4e9
4 changed files with 2105 additions and 1332 deletions

View File

@@ -54,3 +54,24 @@ export function nodeAllList() {
method: 'get'
})
}
//修改数据
export function updateTerminal(query:any) {
return createAxios({
url: `/device-boot/device/updateTerminal`,
method: 'put',
data: {
...query,
}
})
}
//提交数据
export function addTerminal(query:any) {
return createAxios({
url: '/device-boot/device/addTerminal',
method: 'post',
data: {
...query,
}
})
}