添加智能分类功能,支持获取未分类账单数量和列表;实现AI分类逻辑;更新相关API和前端视图
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 20s
Docker Build & Deploy / Deploy to Production (push) Successful in 8s

This commit is contained in:
孙诚
2025-12-25 15:40:50 +08:00
parent a9dfcdaa5c
commit bbcb630401
9 changed files with 714 additions and 3 deletions

View File

@@ -34,6 +34,12 @@ const router = createRouter({
component: () => import('../views/CalendarView.vue'),
meta: { requiresAuth: true },
},
{
path: '/smart-classification',
name: 'smart-classification',
component: () => import('../views/SmartClassification.vue'),
meta: { requiresAuth: true },
}
],
})