From 1028e20d42293a431f175c00a19e70aba8bf648a Mon Sep 17 00:00:00 2001 From: duanshuwen Date: Thu, 13 Nov 2025 19:43:03 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9C=8D=E5=8A=A1=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=E5=8A=A8=E6=80=81=E8=8E=B7=E5=8F=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 6 ------ .env.production | 6 ------ .env.staging | 8 +------- project.config.json | 2 +- src/App.vue | 5 +++-- src/constant/base.js | 2 +- src/manifest.json | 2 +- .../components/chat/ChatMainList/index.vue | 3 +-- src/request/api/AgentChatStream.js | 5 +++-- src/request/api/UpdateFile.js | 5 +++-- src/request/api/config.js | 17 +++++++++++++++++ src/request/base/baseUrl.js | 18 ------------------ src/request/base/request.js | 5 ++--- src/store/modules/app.js | 15 +++++++++++---- 14 files changed, 44 insertions(+), 55 deletions(-) create mode 100644 src/request/api/config.js diff --git a/.env.development b/.env.development index aedcfae..df484b6 100644 --- a/.env.development +++ b/.env.development @@ -1,7 +1 @@ NODE_ENV = development - -# 测试 -VITE_BASE_URL = https://onefeel.brother7.cn/ingress - -# 测试 -VITE_WSS_URL = wss://onefeel.brother7.cn/ingress/agent/ws/chat diff --git a/.env.production b/.env.production index e2be08e..da815eb 100644 --- a/.env.production +++ b/.env.production @@ -1,7 +1 @@ NODE_ENV = production - -# 生产 -VITE_BASE_URL = https://biz.nianxx.cn - -# 生产 -VITE_WSS_URL = wss://biz.nianxx.cn/agent/ws/chat \ No newline at end of file diff --git a/.env.staging b/.env.staging index 84749b3..0269cee 100644 --- a/.env.staging +++ b/.env.staging @@ -1,7 +1 @@ -NODE_ENV = staging - -# 生产 -VITE_BASE_URL = https://biz.nianxx.cn - -# 生产 -VITE_WSS_URL = wss://biz.nianxx.cn/agent/ws/chat \ No newline at end of file +NODE_ENV = staging \ No newline at end of file diff --git a/project.config.json b/project.config.json index d102f1b..b241ab1 100644 --- a/project.config.json +++ b/project.config.json @@ -1,5 +1,5 @@ { - "appid": "wx5e79df5996572539", + "appid": "wx23f86d809ae80259", "compileType": "miniprogram", "libVersion": "3.8.10", "packOptions": { diff --git a/src/App.vue b/src/App.vue index 70542cc..3fdb7cc 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,8 +1,9 @@