后管页面新增 远程重启接口

This commit is contained in:
Lemon
2024-09-10 16:52:28 +08:00
parent 5e9beaf83a
commit 70ced2e5f7
2 changed files with 22 additions and 5 deletions

View File

@@ -17,3 +17,11 @@ export function remoteControlGroundLock(data) {
data: data
})
}
export function remoteReboot(data) {
return request({
url: '/pile/remote/reboot',
method: 'post',
data: data
})
}