绘制并联调icd文件管理页面
绘制并联调终端型号管理页面
This commit is contained in:
@@ -126,3 +126,19 @@ export function selectUserList(data: any) {
|
||||
data
|
||||
})
|
||||
}
|
||||
//查询列表
|
||||
export function getStatusManageList(data: any) {
|
||||
return createAxios({
|
||||
url: '/device-boot/maintain/getStatusManageList',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//设置终端状态
|
||||
export function updateRunFlagManage(data: any) {
|
||||
return createAxios({
|
||||
url: '/device-boot/maintain/updateRunFlagManage',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
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
|
||||
})
|
||||
}
|
||||
34
src/api/device-boot/modelManage.ts
Normal file
34
src/api/device-boot/modelManage.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
import createAxios from '@/utils/request'
|
||||
|
||||
// 新增装置型号
|
||||
export function addDevType(data: any) {
|
||||
return createAxios({
|
||||
url: '/device-boot/devType/addDevType',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 删除新装置型号
|
||||
export function delDevType(data: any) {
|
||||
return createAxios({
|
||||
url: '/device-boot/devType/delDevType',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 更新装置型号
|
||||
export function updateDevType(data: any) {
|
||||
return createAxios({
|
||||
url: '/device-boot/devType/updateDevType',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 查询装置型号全部信息
|
||||
export function getDevTypeList() {
|
||||
return createAxios({
|
||||
url: '/device-boot/devType/getDevTypeList',
|
||||
method: 'post',
|
||||
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user