2024-11-11 12:04:24 +08:00
|
|
|
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',
|
|
|
|
},
|
|
|
|
},
|
2024-11-11 16:21:19 +08:00
|
|
|
// 预算分类
|
|
|
|
{
|
|
|
|
path: '/financial/budgetCategory',
|
|
|
|
name: 'budgetCategory',
|
|
|
|
component: () => import('@/views/financial/budgetCategory/index.vue'),
|
|
|
|
meta: {
|
|
|
|
icon: 'iconamoon:category',
|
|
|
|
title: 'budgetCategory',
|
|
|
|
},
|
|
|
|
},
|
2024-11-11 15:30:03 +08:00
|
|
|
// 债务还款计划
|
|
|
|
{
|
|
|
|
path: '/financial/debtRepaymentPlan',
|
|
|
|
name: 'debtRepaymentPlan',
|
|
|
|
component: () => import('@/views/financial/debtRepaymentPlan/index.vue'),
|
|
|
|
meta: {
|
|
|
|
icon: 'iconamoon:category',
|
|
|
|
title: 'debtRepaymentPlan',
|
|
|
|
},
|
|
|
|
},
|
2024-11-11 16:21:19 +08:00
|
|
|
// 债务回收管理
|
|
|
|
{
|
|
|
|
path: '/financial/debtCollectionManagement',
|
|
|
|
name: 'debtRepaymentPlan',
|
|
|
|
component: () => import('@/views/financial/debtCollectionManagement/index.vue'),
|
|
|
|
meta: {
|
|
|
|
icon: 'iconamoon:category',
|
|
|
|
title: 'debtCollectionManagement',
|
|
|
|
},
|
|
|
|
},
|
2024-11-11 16:42:58 +08:00
|
|
|
// 债务追踪
|
|
|
|
{
|
|
|
|
path: '/financial/debtTracking',
|
|
|
|
name: 'debtTracking',
|
|
|
|
component: () => import('@/views/financial/debtTracking/index.vue'),
|
|
|
|
meta: {
|
|
|
|
icon: 'iconamoon:category',
|
|
|
|
title: 'debtTracking',
|
|
|
|
},
|
|
|
|
},
|
2024-11-11 16:57:35 +08:00
|
|
|
// 预算储值
|
|
|
|
{
|
|
|
|
path: '/financial/savingGoal',
|
|
|
|
name: 'savingGoal',
|
|
|
|
component: () => import('@/views/financial/savingGoal/index.vue'),
|
|
|
|
meta: {
|
|
|
|
icon: 'iconamoon:category',
|
|
|
|
title: 'savingGoal',
|
|
|
|
},
|
|
|
|
},
|
2024-11-11 12:04:24 +08:00
|
|
|
],
|
|
|
|
} satisfies RouteConfigsTable;
|