| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import request from '@/config/axios'
- export interface FileClientConfig {
- basePath: string
- host?: string
- port?: number
- username?: string
- password?: string
- mode?: string
- endpoint?: string
- bucket?: string
- accessKey?: string
- accessSecret?: string
- enablePathStyleAccess?: boolean
- domain: string
- }
- export interface FileConfigVO {
- id: number
- name: string
- storage?: number
- master: boolean
- visible: boolean
- config: FileClientConfig
- remark: string
- createTime: Date
- }
- // 查询文件配置列表
- export const getFileConfigPage = (params: PageParam) => {
- return request.get({ url: '/infra/file-config/page', params })
- }
- // 查询文件配置详情
- export const getFileConfig = (id: number) => {
- return request.get({ url: '/infra/file-config/get?id=' + id })
- }
- // 更新文件配置为主配置
- export const updateFileConfigMaster = (id: number) => {
- return request.put({ url: '/infra/file-config/update-master?id=' + id })
- }
- // 新增文件配置
- export const createFileConfig = (data: FileConfigVO) => {
- return request.post({ url: '/infra/file-config/create', data })
- }
- // 修改文件配置
- export const updateFileConfig = (data: FileConfigVO) => {
- return request.put({ url: '/infra/file-config/update', data })
- }
- // 删除文件配置
- export const deleteFileConfig = (id: number) => {
- return request.delete({ url: '/infra/file-config/delete?id=' + id })
- }
- // 测试文件配置
- export const testFileConfig = (id: number) => {
- return request.get({ url: '/infra/file-config/test?id=' + id })
- }
|