ソースを参照

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

zq940222 2 ヶ月 前
コミット
443b52ae64

+ 8 - 0
src/components/jeecg/AiChat/components/chat.api.ts

@@ -0,0 +1,8 @@
+import { defHttp } from '/@/utils/http/axios';
+
+enum Api {
+  checkQuota = '/ai/chat/checkQuota',
+}
+export function checkQuotaApi() {
+  return defHttp.get({ url: Api.checkQuota });
+}

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

@@ -151,6 +151,7 @@
   import { getAppEnvConfig } from '/@/utils/env';
   import chatMessage from './chatMessage.vue';
   import presetQuestion from './presetQuestion.vue';
+  import { checkQuotaApi } from "./chat.api";
   import { DeleteOutlined, ExclamationCircleOutlined } from '@ant-design/icons-vue';
   import { message, Modal, Tabs } from 'ant-design-vue';
   import '../style/github-markdown.less';
@@ -185,13 +186,25 @@
       handleSubmit();
     }
   }
-  function handleSubmit() {
+  async function handleSubmit() {
+    await checkQuotaApi().then((res) => {
+      if (res.code !== 200) {
+        message.error(res.message);
+        return;
+      }
+    });
     let message = prompt.value;
     if (!message || message.trim() === '') return;
     prompt.value = '';
     onConversation(message);
   }
-  const handleOutQuestion = (message) => {
+  const handleOutQuestion = async (message) => {
+    await checkQuotaApi().then((res) => {
+      if (res.code !== 200) {
+        message.error(res.message);
+        return;
+      }
+    });
     onConversation(message);
   };
   async function onConversation(message) {