充电桩远程升级

This commit is contained in:
2023-04-06 16:32:41 +08:00
parent 263970c1e0
commit b3bbc21a82
8 changed files with 47 additions and 33 deletions

View File

@@ -0,0 +1,10 @@
import request from '@/utils/request'
// 查询充电桩通讯日志
export function updateFirmware(data) {
return request({
url: '/pile/remote/updateFirmware',
method: 'post',
data: data
})
}