Files
admin-sjzx/src/api/device-boot/icd.ts
GGJ c97efb5beb 绘制并联调icd文件管理页面
绘制并联调终端型号管理页面
2025-04-17 16:26:09 +08:00

35 lines
732 B
TypeScript

import createAxios from '@/utils/request'
// icd删除
export function delIcdPath(data: any) {
return createAxios({
url: '/device-boot/icd/delIcdPath',
method: 'post',
data
})
}
// 查询icd全部信息
export function getIcdList() {
return createAxios({
url: '/device-boot/icd/getIcdList',
method: 'post',
})
}
// 新增icd模型
export function addIcdPath(data: any) {
return createAxios({
url: '/device-boot/icd/addIcdPath',
method: 'post',
data
})
}
// 更新icd模型
export function updateIcdPath(data: any) {
return createAxios({
url: '/device-boot/icd/updateIcdPath',
method: 'post',
data
})
}