From 618b66708bf0cd5c2a201d4f3e5e40bb8155904e Mon Sep 17 00:00:00 2001 From: wangyetao <2898314561@qq.com> Date: Tue, 28 Oct 2025 16:35:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=8E=A5=E5=8F=A3=E8=B7=AF?= =?UTF-8?q?=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/deepMate/deepMate.js | 2 +- pages/deepMate/deepMate.vue | 2 +- utils/http.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/deepMate/deepMate.js b/api/deepMate/deepMate.js index 5c50638..9416772 100644 --- a/api/deepMate/deepMate.js +++ b/api/deepMate/deepMate.js @@ -20,7 +20,7 @@ export const getData = () => { export const postIntent = (data) => { return http({ method: 'POST', - url: '/testApi/api/deepMate/dmFirst', + url: '/api/deepMate/dmFirst', data }) } diff --git a/pages/deepMate/deepMate.vue b/pages/deepMate/deepMate.vue index 5497d58..d4e335e 100644 --- a/pages/deepMate/deepMate.vue +++ b/pages/deepMate/deepMate.vue @@ -640,7 +640,7 @@ const simulateBotResponse = async (userMessage) => { scrollToBottom(); // 字符间延迟,模拟打字效果 - const baseDelay = 5; // 普通字符基础延迟(毫秒) + const baseDelay = 165; // 普通字符基础延迟(毫秒) const slowPunct = /[。!?!?;;]/; // 句号、感叹号、分号等较长停顿 const midPunct = /[,、,::]/; // 逗号、顿号、冒号等中等停顿 const delay = slowPunct.test(ch) diff --git a/utils/http.js b/utils/http.js index 9f443b1..7016a37 100644 --- a/utils/http.js +++ b/utils/http.js @@ -1,6 +1,6 @@ import { useUserStore } from "../stores/modules/userInfo" -const baseURL = "https://hwjb.homilychart.com" +const baseURL = "https://hwjb.homilychart.com/testApi" const httpInterceptor = {