feat:【infra】【system】新增文件与字典管理前端页面及相关 API 封装

This commit is contained in:
YunaiV
2025-12-21 11:26:32 +08:00
parent d3014baa2e
commit fc5e60965f
20 changed files with 2918 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
import type { PageParam, PageResult } from '@/http/types'
import { http } from '@/http/http'
/** 文件客户端配置 */
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
enablePublicAccess?: boolean
region?: string
domain?: string
}
/** 文件配置信息 */
export interface FileConfig {
id?: number
name: string
storage?: number
master?: boolean
visible?: boolean
config?: FileClientConfig
remark?: string
createTime?: Date
}
/** 查询文件配置分页列表 */
export function getFileConfigPage(params: PageParam) {
return http.get<PageResult<FileConfig>>('/infra/file-config/page', params)
}
/** 查询文件配置详情 */
export function getFileConfig(id: number) {
return http.get<FileConfig>(`/infra/file-config/get?id=${id}`)
}
/** 新增文件配置 */
export function createFileConfig(data: FileConfig) {
return http.post<number>('/infra/file-config/create', data)
}
/** 修改文件配置 */
export function updateFileConfig(data: FileConfig) {
return http.put<boolean>('/infra/file-config/update', data)
}
/** 删除文件配置 */
export function deleteFileConfig(id: number) {
return http.delete<boolean>(`/infra/file-config/delete?id=${id}`)
}
/** 更新文件配置为主配置 */
export function updateFileConfigMaster(id: number) {
return http.put<boolean>(`/infra/file-config/update-master?id=${id}`)
}
/** 测试文件配置 */
export function testFileConfig(id: number) {
return http.get<string>(`/infra/file-config/test?id=${id}`)
}

View File

@@ -1,3 +1,4 @@
import type { PageParam, PageResult } from '@/http/types'
import { http } from '@/http/http'
/** 字典数据 */
@@ -18,3 +19,28 @@ export interface DictData {
export function getSimpleDictDataList() {
return http.get<DictData[]>('/system/dict-data/simple-list')
}
/** 查询字典数据分页列表 */
export function getDictDataPage(params: PageParam) {
return http.get<PageResult<DictData>>('/system/dict-data/page', params)
}
/** 查询字典数据详情 */
export function getDictData(id: number) {
return http.get<DictData>(`/system/dict-data/get?id=${id}`)
}
/** 新增字典数据 */
export function createDictData(data: DictData) {
return http.post<number>('/system/dict-data/create', data)
}
/** 修改字典数据 */
export function updateDictData(data: DictData) {
return http.put<boolean>('/system/dict-data/update', data)
}
/** 删除字典数据 */
export function deleteDictData(id: number) {
return http.delete<boolean>(`/system/dict-data/delete?id=${id}`)
}

View File

@@ -0,0 +1,42 @@
import type { PageParam, PageResult } from '@/http/types'
import { http } from '@/http/http'
/** 字典类型 */
export interface DictType {
id?: number
name: string
type: string
status: number
remark?: string
createTime?: Date
}
/** 查询字典类型(精简)列表 */
export function getSimpleDictTypeList() {
return http.get<DictType[]>('/system/dict-type/list-all-simple')
}
/** 查询字典类型分页列表 */
export function getDictTypePage(params: PageParam) {
return http.get<PageResult<DictType>>('/system/dict-type/page', params)
}
/** 查询字典类型详情 */
export function getDictType(id: number) {
return http.get<DictType>(`/system/dict-type/get?id=${id}`)
}
/** 新增字典类型 */
export function createDictType(data: DictType) {
return http.post<number>('/system/dict-type/create', data)
}
/** 修改字典类型 */
export function updateDictType(data: DictType) {
return http.put<boolean>('/system/dict-type/update', data)
}
/** 删除字典类型 */
export function deleteDictType(id: number) {
return http.delete<boolean>(`/system/dict-type/delete?id=${id}`)
}