设备基础管理

This commit is contained in:
仲么了
2024-01-23 14:05:03 +08:00
parent 2dc9a788ed
commit 432244cd6b
8 changed files with 443 additions and 45 deletions

View File

@@ -0,0 +1,24 @@
import request from '@/utils/request'
// 新增程序版本
export const addEdData = (data) => {
return request({
url: '/cs-device-boot/edData/addEdData',
method: 'post',
headers: {
'Content-Type': 'multipart/form-data',
},
data: data,
})
}
export const auditEdData = (data) => {
return request({
url: '/cs-device-boot/edData/auditEdData',
method: 'post',
headers: {
'Content-Type': 'multipart/form-data',
},
data: data,
})
}