|
@@ -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) {
|