绘制并联调icd文件管理页面
绘制并联调终端型号管理页面
This commit is contained in:
34
src/api/device-boot/icd.ts
Normal file
34
src/api/device-boot/icd.ts
Normal 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
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user