Browse Source

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

zq940222 2 months ago
parent
commit
0093599336
1 changed files with 2 additions and 10 deletions
  1. 2 10
      src/components/jeecg/AiChat/components/chat.vue

+ 2 - 10
src/components/jeecg/AiChat/components/chat.vue

@@ -187,22 +187,14 @@
     }
   }
   async function handleSubmit() {
-    await checkQuotaApi().then((res) => {
-      if (res.code !== 200) {
-        return;
-      }
-    });
+    await checkQuotaApi();
     let message = prompt.value;
     if (!message || message.trim() === '') return;
     prompt.value = '';
     onConversation(message);
   }
   const handleOutQuestion = async (message) => {
-    await checkQuotaApi().then((res) => {
-      if (res.code !== 200) {
-        return;
-      }
-    });
+    await checkQuotaApi();
     onConversation(message);
   };
   async function onConversation(message) {