Files
admin-sjzx/src/api/device-boot/icd.ts

35 lines
732 B
TypeScript
Raw Normal View History

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
})
}