联调算法库

修改冀北台账问题
This commit is contained in:
GGJ
2024-09-11 20:37:40 +08:00
parent a8c1fa46c0
commit 28d9af0cb4
11 changed files with 437 additions and 230 deletions

View File

@@ -0,0 +1,40 @@
import createAxios from '@/utils/request'
/**
* 查询所有算法库树结构
*/
export const queryAllAlgorithmLibrary = () => {
return createAxios({
url: '/supervision-boot/libalgorithm/queryAllAlgorithmLibrary',
method: 'GET'
})
}
/**
* 算法库新增
*/
export const addAlgorithm = (data: any) => {
return createAxios({
url: '/supervision-boot/libalgorithm/add',
method: 'POST',
data
})
}
/**
* 算法库删除
*/
export const deleteyById = (data: any) => {
return createAxios({
url: '/supervision-boot/libalgorithm/deleteyById',
method: 'GET',
params:data
})
}
/**
* 算法库修改
*/
export const updateAlgorithmLibrary = (data: any) => {
return createAxios({
url: '/supervision-boot/libalgorithm/updateAlgorithmLibrary',
method: 'POST',
data
})
}