Merge remote-tracking branch 'origin/ruoyi' into ruoyi

This commit is contained in:
xlsea
2025-04-25 00:28:58 +08:00
17 changed files with 471 additions and 99 deletions

View File

@ -43,6 +43,14 @@ export function fetchBatchDeleteConfig(configIds: CommonType.IdType[]) {
});
}
/** 根据Key获取值 */
export function fetchGetConfigByKey(configKey: string) {
return request<string>({
url: `/system/config/configKey/${configKey}`,
method: 'get'
});
}
/** 刷新缓存 */
export function fetchRefreshCache() {
return request<boolean>({

View File

@ -0,0 +1,18 @@
import { request } from '@/service/request';
/** 获取文件管理列表 */
export function fetchGetOssList(params?: Api.System.OssSearchParams) {
return request<Api.System.OssList>({
url: '/resource/oss/list',
method: 'get',
params
});
}
/** 批量删除文件管理 */
export function fetchBatchDeleteOss(ossIds: CommonType.IdType[]) {
return request<boolean>({
url: `/resource/oss/${ossIds.join(',')}`,
method: 'delete'
});
}