diff --git a/src/components/dashboard/DashboardView.vue b/src/components/dashboard/DashboardView.vue index 3390ce3..e7c57db 100644 --- a/src/components/dashboard/DashboardView.vue +++ b/src/components/dashboard/DashboardView.vue @@ -203,8 +203,26 @@ const userName = computed(() => {
AI Summary
-
- +
+
+ Общая оценка + +
+
+
+ Анализ категорий + +
+
+
+ Ключевые инсайты + +
+
+
+ Рекомендации + +
@@ -289,6 +307,10 @@ const userName = computed(() => { background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important; } +b { + font-weight: bold !important; +} + .expand-button:active { transform: translateY(0); } diff --git a/src/models/dashboard.ts b/src/models/dashboard.ts index 28ad5b7..49e1439 100644 --- a/src/models/dashboard.ts +++ b/src/models/dashboard.ts @@ -9,7 +9,14 @@ export interface DashboardData { upcomingTransactions: Transaction[], recentTransactions: Transaction[], weeks: DashboardWeek[], - analyzedText: string, + analyzedText: AISummary, +} + +export interface AISummary { + common: string, + categoryAnalysis: string, + keyInsights: string, + recommendations: string } export interface DashboardWeek {