OTA升级

This commit is contained in:
刘召雪
2020-11-18 13:33:22 +08:00
parent 360f730522
commit 6a12be88ae
2 changed files with 119 additions and 1 deletions

View File

@ -0,0 +1,10 @@
import request from '@/utils/request'
// 查询固件列表
export function list(params) {
return request({
url: '/system/node/ota_list',
method: 'get',
params
})
}