Files
admin-govern/src/api/cs-device-boot/edData.ts

41 lines
942 B
TypeScript
Raw Normal View History

2024-01-23 14:05:03 +08:00
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',
},
2024-11-01 16:17:10 +08:00
data: data,
})
}
2025-10-11 10:35:25 +08:00
// 修改-删除工程
export const auditEngineering = (data:any)=> {
2024-11-01 16:17:10 +08:00
return request({
url: '/cs-device-boot/engineering/auditEngineering',
method: 'post',
2025-07-15 16:31:06 +08:00
data: data,
})
}
// 修改项目
2025-10-11 10:35:25 +08:00
export const updateProject = (data:any) => {
2025-07-15 16:31:06 +08:00
return request({
url: '/cs-device-boot/project/updateProject',
method: 'post',
2024-01-23 14:05:03 +08:00
data: data,
})
}