40 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-07-19 22:33:54 +08:00
import { useAxios } from '@/hooks/web/useAxios'
2022-07-18 19:06:37 +08:00
import type { FileConfigVO } from './types'
2022-07-19 22:33:54 +08:00
const request = useAxios()
2022-07-18 19:06:37 +08:00
// 查询文件配置列表
2022-07-19 22:33:54 +08:00
export const getFileConfigPageApi = (params) => {
return request.get({ url: '/infra/file-config/page', params })
2022-07-18 19:06:37 +08:00
}
// 查询文件配置详情
export const getFileConfigApi = (id: number) => {
2022-07-19 22:33:54 +08:00
return request.get({ url: '/infra/file-config/get?id=' + id })
2022-07-18 19:06:37 +08:00
}
// 更新文件配置为主配置
export const updateFileConfigMasterApi = (id: number) => {
2022-07-19 22:33:54 +08:00
return request.get({ url: '/infra/file-config/update-master?id=' + id })
2022-07-18 19:06:37 +08:00
}
// 新增文件配置
2022-07-19 22:33:54 +08:00
export const createFileConfigApi = (data: FileConfigVO) => {
return request.post({ url: '/infra/file-config/create', data })
2022-07-18 19:06:37 +08:00
}
// 修改文件配置
2022-07-19 22:33:54 +08:00
export const updateFileConfigApi = (data: FileConfigVO) => {
return request.put({ url: '/infra/file-config/update', data })
2022-07-18 19:06:37 +08:00
}
// 删除文件配置
export const deleteFileConfigApi = (id: number) => {
2022-07-19 22:33:54 +08:00
return request.delete({ url: '/infra/file-config/delete?id=' + id })
2022-07-18 19:06:37 +08:00
}
// 测试文件配置
export const testFileConfigApi = (id: number) => {
2022-07-19 22:33:54 +08:00
return request.get({ url: '/infra/file-config/test?id=' + id })
2022-07-18 19:06:37 +08:00
}