绘制并联调icd文件管理页面

绘制并联调终端型号管理页面
This commit is contained in:
GGJ
2025-04-17 16:26:09 +08:00
parent 021a1ae89b
commit c97efb5beb
13 changed files with 807 additions and 255 deletions

View File

@@ -0,0 +1,34 @@
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
})
}