From cf727afa850496f3a239907fab342b4bd3ff77fc Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期一, 04 八月 2025 18:22:13 +0800 Subject: [PATCH] fix: 修改功能模块 --- src/utils/oss/index.ts | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/utils/oss/index.ts b/src/utils/oss/index.ts index eb13a61..76efceb 100644 --- a/src/utils/oss/index.ts +++ b/src/utils/oss/index.ts @@ -1,15 +1,18 @@ import { BoleOss } from '@bole-core/core'; import { loadEnv } from '@build/index'; import AliOSS from 'ali-oss'; +import * as authServices from '@/services/api/auth'; export class OssManager { private static OssInstance: BoleOss; private static async getOssSTS() { - return Promise.resolve({}); - // return await accountServices.getOssSTS({ - // showLoading: false, - // }); + return await authServices.getAliyunOSSAcs( + {}, + { + showLoading: false, + } + ); } public static async getOssInstance() { -- Gitblit v1.9.1