联调文件上传

This commit is contained in:
GGJ
2024-08-19 16:18:57 +08:00
parent 6da0974740
commit 371519bb1b
3 changed files with 90 additions and 21 deletions

View File

@@ -91,6 +91,22 @@ export const getByDeptDevLine = (params: any) => {
return createAxios({
url: '/device-boot/line/getByDeptDevLine',
method: 'get',
params
params
})
}
// 批量添加和修改文件信息
export const addOrUpdateFile = (data: any) => {
return createAxios({
url: '/supervision-boot/fileUrl/addOrUpdateFile',
method: 'POST',
data
})
}
// 根据id查询文件信息集合
export const getFileById = (params: any) => {
return createAxios({
url: '/supervision-boot/fileUrl/getFileById',
method: 'get',
params
})
}