Browse Source

添加根据算力调用ai接口判断

zq940222 2 months ago
parent
commit
75f54e2ac9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components/jeecg/AiChat/components/chat.api.ts

+ 1 - 1
src/components/jeecg/AiChat/components/chat.api.ts

@@ -4,5 +4,5 @@ enum Api {
   checkQuota = '/ai/chat/checkQuota',
 }
 export function checkQuotaApi() {
-  return defHttp.get({ url: Api.checkQuota });
+  return defHttp.get({ url: Api.checkQuota }, { successMessageMode: 'none' });
 }