diff --git a/src/components/chat/ChatMain.vue b/src/components/chat/ChatMain.vue
index e9f10e2..e1a096f 100644
--- a/src/components/chat/ChatMain.vue
+++ b/src/components/chat/ChatMain.vue
@@ -28,13 +28,6 @@
@@ -84,28 +81,27 @@
+
+
+
+
+
+
+
+
diff --git a/src/components/ui/StackedCards.vue b/src/components/ui/StackedCards.vue
index 6305f4b..82cc02a 100644
--- a/src/components/ui/StackedCards.vue
+++ b/src/components/ui/StackedCards.vue
@@ -1,28 +1,56 @@
-
-
+
+
-
-
-
-
- {{ card.icon }}
+
+
+
-
+
+
+
![]()
+
+
+
+ {{ getCardIcon(card) }}
+
+
+
+
+
-
-
-
-
◉
-
点击展开
+
+
+
+
+
+
+
+
+
\ No newline at end of file
+
diff --git a/src/components/ui/StackedCardsDemo.vue b/src/components/ui/StackedCardsDemo.vue
deleted file mode 100644
index 5dd2598..0000000
--- a/src/components/ui/StackedCardsDemo.vue
+++ /dev/null
@@ -1,157 +0,0 @@
-
-
-
-
-
-
层叠卡片组
-
悬停展开 · 视觉发现 · 触感交互
-
-
-
-
-
-
-
-
使用方式
-
<StackedCards
- :cards="cardList"
- :max-visible="5"
- :spread-gap="190"
-/>
-
-
-
-
卡片数据结构
-
interface CardItem {
- id: string | number
- title: string
- description?: string
- icon?: string
- color?: string
-}
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/router/index.ts b/src/router/index.ts
index 2c8f84a..b3a78b8 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -15,11 +15,6 @@ const router = createRouter({
component: () => import('@/views/ShareView.vue'),
alias: ['/chat-ui/share/:id'],
},
- {
- path: '/demo/cards',
- name: 'stacked-cards-demo',
- component: () => import('@/components/ui/StackedCardsDemo.vue'),
- },
],
})