From 73abf21dbf036a740f2cfbbdcb596b6464828ff7 Mon Sep 17 00:00:00 2001 From: "1204992313@qq.com" <1204992313@qq.com> Date: Sun, 17 Aug 2025 18:54:51 +0800 Subject: [PATCH] =?UTF-8?q?[dev]=20refactor(ui):=20=E9=87=8D=E6=9E=84?= =?UTF-8?q?=E5=BA=94=E7=94=A8=E5=B8=83=E5=B1=80=E5=92=8C=E5=A4=B4=E9=83=A8?= =?UTF-8?q?=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将头部导航栏逻辑提取为独立组件 AppHeader 优化应用布局结构,修复滚动和高度问题 调整 CSS 样式以改善用户体验 --- prompto-lab-ui/src/App.vue | 768 ++------------------ prompto-lab-ui/src/assets/base.css | 2 +- prompto-lab-ui/src/assets/main.css | 2 +- prompto-lab-ui/src/components/AppHeader.vue | 741 +++++++++++++++++++ prompto-lab-ui/src/components/ChatMain.vue | 6 +- prompto-lab-ui/src/views/HomeView.vue | 1 - 6 files changed, 797 insertions(+), 723 deletions(-) create mode 100644 prompto-lab-ui/src/components/AppHeader.vue diff --git a/prompto-lab-ui/src/App.vue b/prompto-lab-ui/src/App.vue index 4c6eb15..4a75f6e 100644 --- a/prompto-lab-ui/src/App.vue +++ b/prompto-lab-ui/src/App.vue @@ -1,199 +1,42 @@