This commit is contained in:
李远 2026-03-19 17:45:44 +08:00
parent 6484da509e
commit 8491bc3427
10 changed files with 81 additions and 10 deletions

View File

@ -164,49 +164,49 @@ const staticMenuList = ref<ElMenuItem[]>(
{ {
id: 61, id: 61,
label: '存款审核', label: '存款审核',
path: '6-1', // index="6-1" path: '/funding/deposit', // index="6-1"
icon: '' icon: ''
}, },
{ {
id: 62, id: 62,
label: '取款审核', label: '取款审核',
path: '6-2', // index="6-2" path: '/funding/withdrawal', // index="6-2"
icon: '' icon: ''
}, },
{ {
id: 63, id: 63,
label: '取款明细', label: '取款明细',
path: '6-3', // index="6-3" path: '/funding/withdrawalDetail', // index="6-3"
icon: '' icon: ''
}, },
{ {
id: 64, id: 64,
label: '存款明细', label: '存款明细',
path: '6-4', // index="6-4" path: '/funding/depositDetail', // index="6-4"
icon: '' icon: ''
}, },
{ {
id: 65, id: 65,
label: '转账明细', label: '转账明细',
path: '6-5', // index="6-5" path: '/funding/transferDetail', // index="6-5"
icon: '' icon: ''
}, },
{ {
id: 66, id: 66,
label: '资金流水', label: '资金流水',
path: '6-6', // index="6-6" path: '/funding/flowDetail', // index="6-6"
icon: '' icon: ''
}, },
{ {
id: 67, id: 67,
label: '收款账户列表', label: '收款账户列表',
path: '6-7', // index="6-7" path: '/funding/receiverAccountList', // index="6-7"
icon: '' icon: ''
}, },
{ {
id: 68, id: 68,
label: '存款渠道', label: '存款渠道',
path: '6-8', // index="6-8" path: '/funding/depositChannel', // index="6-8"
icon: '' icon: ''
} }
] ]

View File

@ -165,8 +165,79 @@ const routes = [
component: () => import('@/views/notice/index.vue'), component: () => import('@/views/notice/index.vue'),
}, },
//资金管理 //资金管理
{
//风控管理 path: 'funding',
name: 'Funding',
meta: {
title: '资金管理', // 左侧菜单显示的标题
},
children: [
{
path: 'deposit',
name: 'Deposit',
component: () => import('@/views/funding/deposit/index.vue'),
meta: {
title: '存款审核', // 左侧菜单显示的标题
}
},
{
path: 'withdrawal',
name: 'Withdrawal',
component: () => import('@/views/funding/withdrawl/index.vue'),
meta: {
title: '取款审核', // 左侧菜单显示的标题
}
},
{
path: 'withdrawalDetail',
name: 'WithdrawalDetail',
component: () => import('@/views/funding/withdrawalDetail/index.vue'),
meta: {
title: '取款明细', // 左侧菜单显示的标题
}
},
{
path: 'depositDetail',
name: 'DepositDetail',
component: () => import('@/views/funding/depositDetail/index.vue'),
meta: {
title: '存款明细', // 左侧菜单显示的标题
}
},
{
path: 'transferDetail',
name: 'TransferDetail',
component: () => import('@/views/funding/transferDetail/index.vue'),
meta: {
title: '转账明细', // 左侧菜单显示的标题
}
},
{
path: 'capitalFlow',
name: 'CapitalFlow',
component: () => import('@/views/funding/capitalFlow/index.vue'),
meta: {
title: '资金流水', // 左侧菜单显示的标题
}
},
{
path: 'receiverAccount',
name: 'ReceiverAccount',
component: () => import('@/views/funding/receiverAccount/index.vue'),
meta: {
title: '收款账户列表', // 左侧菜单显示的标题
}
},
{
path: 'depositChannel',
name: 'DepositChannel',
component: () => import('@/views/funding/depositChannel/index.vue'),
meta: {
title: '存款渠道列表', // 左侧菜单显示的标题
}
},
]
},
{ {
path: 'risk', path: 'risk',
name: 'Risk', name: 'Risk',