From 8be8799e3dd222e00f98daf5d0f98d60e6e080e8 Mon Sep 17 00:00:00 2001 From: yangzhe Date: Tue, 16 Dec 2025 16:14:33 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=8E=86=E5=8F=B2=E8=AE=B0=E5=BD=95):=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8E=86=E5=8F=B2=E8=AE=B0=E5=BD=95=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/ChatHistory.vue | 2 +- pages.json | 4 ++-- pages/home/history/{history.vue => index.vue} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename pages/home/history/{history.vue => index.vue} (100%) diff --git a/components/ChatHistory.vue b/components/ChatHistory.vue index c81f474..865d7da 100644 --- a/components/ChatHistory.vue +++ b/components/ChatHistory.vue @@ -241,7 +241,7 @@ export default { // 处理历史记录点击事件 handleHistoryClick() { uni.navigateTo({ - url: "/pages/home/history/history", + url: "/pages/home/history/index", }); }, // 处理设置点击事件 diff --git a/pages.json b/pages.json index d4669ff..ed9ab5f 100644 --- a/pages.json +++ b/pages.json @@ -106,9 +106,9 @@ } }, { - "path": "pages/home/history/history", + "path": "pages/home/history/index", "style": { - "navigationBarTitleText": "", + "navigationBarTitleText": "历史记录", "enablePullDownRefresh": false, "navigationStyle": "custom" } diff --git a/pages/home/history/history.vue b/pages/home/history/index.vue similarity index 100% rename from pages/home/history/history.vue rename to pages/home/history/index.vue