From 27aa23179f187db41d48d254302c09ab150f0865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B6=85=E7=BA=A7=E8=80=81=E7=99=BD=E5=85=94?= Date: Fri, 29 Aug 2025 15:59:53 +0800 Subject: [PATCH 1/7] =?UTF-8?q?refactor:=20=E6=9B=B4=E6=96=B0=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E5=90=8D=E7=A7=B0=E5=92=8CAPI=E5=9F=BA=E7=A1=80URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将应用名称从"存客宝"更改为"Ai智能客服"以更准确反映产品功能 更新baseUrl为新的API域名"kr-phone.quwanzhi.com" --- aiApp/manifest.json | 2 +- aiApp/pages/index/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aiApp/manifest.json b/aiApp/manifest.json index b8ab3182..7e70618b 100644 --- a/aiApp/manifest.json +++ b/aiApp/manifest.json @@ -1,5 +1,5 @@ { - "name" : "存客宝", + "name" : "Ai智能客服", "appid" : "__UNI__2B34F1A", "description" : "", "versionName" : "1.0.0", diff --git a/aiApp/pages/index/index.vue b/aiApp/pages/index/index.vue index 50698c36..0dd58374 100644 --- a/aiApp/pages/index/index.vue +++ b/aiApp/pages/index/index.vue @@ -18,7 +18,7 @@ export default { data() { return { - baseUrl: 'https://kr-op.quwanzhi.com/init', + baseUrl: 'kr-phone.quwanzhi.com', iframeUrl: '', // 动态构建的 URL receivedMessages: [], messageId: 0, From 2ba9616f49c403a3e047ad160ca80c7b2b325424 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B6=85=E7=BA=A7=E8=80=81=E7=99=BD=E5=85=94?= Date: Fri, 29 Aug 2025 16:00:20 +0800 Subject: [PATCH 2/7] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E5=90=8D=E7=A7=B0=E4=B8=BA"Ai=E6=95=B0=E6=99=BA?= =?UTF-8?q?=E5=91=98=E5=B7=A5"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改manifest.json文件中的应用名称,从"Ai智能客服"变更为"Ai数智员工"以反映产品定位更新 --- aiApp/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiApp/manifest.json b/aiApp/manifest.json index 7e70618b..67faf351 100644 --- a/aiApp/manifest.json +++ b/aiApp/manifest.json @@ -1,5 +1,5 @@ { - "name" : "Ai智能客服", + "name" : "Ai数智员工", "appid" : "__UNI__2B34F1A", "description" : "", "versionName" : "1.0.0", From 3dba61f9d93fae7fa5ea4d53cba9152af53cc068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B6=85=E7=BA=A7=E8=80=81=E7=99=BD=E5=85=94?= Date: Fri, 29 Aug 2025 16:03:05 +0800 Subject: [PATCH 3/7] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0manifest.json?= =?UTF-8?q?=E4=B8=AD=E7=9A=84appid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aiApp/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiApp/manifest.json b/aiApp/manifest.json index 67faf351..f0685907 100644 --- a/aiApp/manifest.json +++ b/aiApp/manifest.json @@ -1,6 +1,6 @@ { "name" : "Ai数智员工", - "appid" : "__UNI__2B34F1A", + "appid" : "__UNI__8F915F5", "description" : "", "versionName" : "1.0.0", "versionCode" : "100", From 778f1a3a113c409ae59254ce84d396ddc7504728 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B6=85=E7=BA=A7=E8=80=81=E7=99=BD=E5=85=94?= Date: Fri, 29 Aug 2025 17:09:47 +0800 Subject: [PATCH 4/7] =?UTF-8?q?feat(update):=20=E6=B7=BB=E5=8A=A0=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E8=87=AA=E5=8A=A8=E6=9B=B4=E6=96=B0=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增updateService模块实现版本检查、下载和安装功能 - 在首页集成更新检查逻辑 - 支持Android和iOS平台的更新处理 - 添加版本比较和更新提示对话框功能 --- ckApp/pages/index/index.vue | 69 +++++++++++- ckApp/utils/updateService.js | 207 +++++++++++++++++++++++++++++++++++ 2 files changed, 274 insertions(+), 2 deletions(-) create mode 100644 ckApp/utils/updateService.js diff --git a/ckApp/pages/index/index.vue b/ckApp/pages/index/index.vue index 50698c36..5bd991d4 100644 --- a/ckApp/pages/index/index.vue +++ b/ckApp/pages/index/index.vue @@ -9,6 +9,7 @@ \ No newline at end of file diff --git a/aiApp/pages/index/index.vue b/aiApp/pages/index/index.vue index f4eab4f4..d67f0cc5 100644 --- a/aiApp/pages/index/index.vue +++ b/aiApp/pages/index/index.vue @@ -29,9 +29,9 @@ } }, onLoad() { - this.sendBaseConfig() + // this.sendBaseConfig() // 检查更新 - this.checkAppUpdate() + // this.checkAppUpdate() }, methods: { // 构建 iframe URL,包含参数 diff --git a/aiApp/pages/index/test.vue b/aiApp/pages/index/test.vue deleted file mode 100644 index 538d3a3c..00000000 --- a/aiApp/pages/index/test.vue +++ /dev/null @@ -1,304 +0,0 @@ - - - - - From b3aa52cd91f2b1d84cf9b0d45d06fccf3a30f073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B6=85=E7=BA=A7=E8=80=81=E7=99=BD=E5=85=94?= Date: Fri, 29 Aug 2025 17:19:23 +0800 Subject: [PATCH 7/7] =?UTF-8?q?FEAT=20=3D>=20=E6=9C=AC=E6=AC=A1=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E9=A1=B9=E7=9B=AE=E4=B8=BA=EF=BC=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aiApp/pages/index/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aiApp/pages/index/index.vue b/aiApp/pages/index/index.vue index d67f0cc5..d85d8282 100644 --- a/aiApp/pages/index/index.vue +++ b/aiApp/pages/index/index.vue @@ -1,7 +1,7 @@