export default { path: '/financial', name: 'Financial', redirect: '/financial/bill', meta: { icon: 'mdi:finance', title: 'financialmanagement', rank: 37, }, children: [ // 账单查询 { path: '/financial/bill', name: 'Bill', component: () => import('@/views/financial/bill/index.vue'), meta: { icon: 'grommet-icons:money', title: 'billManagement', }, }, // 用户分类 { path: '/financial/categoryUser', name: 'CategoryUser', component: () => import('@/views/financial/categoryUser/index.vue'), meta: { icon: 'iconamoon:category', title: 'categoryUserManagement', }, }, // 预算分类 { path: '/financial/budgetCategory', name: 'budgetCategory', component: () => import('@/views/financial/budgetCategory/index.vue'), meta: { icon: 'iconamoon:category', title: 'budgetCategory', }, }, // 债务还款计划 { path: '/financial/debtRepaymentPlan', name: 'debtRepaymentPlan', component: () => import('@/views/financial/debtRepaymentPlan/index.vue'), meta: { icon: 'iconamoon:category', title: 'debtRepaymentPlan', }, }, // 债务回收管理 { path: '/financial/debtCollectionManagement', name: 'debtRepaymentPlan', component: () => import('@/views/financial/debtCollectionManagement/index.vue'), meta: { icon: 'iconamoon:category', title: 'debtCollectionManagement', }, }, // 债务追踪 { path: '/financial/debtTracking', name: 'debtTracking', component: () => import('@/views/financial/debtTracking/index.vue'), meta: { icon: 'iconamoon:category', title: 'debtTracking', }, }, ], } satisfies RouteConfigsTable;