This commit is contained in:
parent
6484da509e
commit
8491bc3427
|
|
@ -164,49 +164,49 @@ const staticMenuList = ref<ElMenuItem[]>(
|
|||
{
|
||||
id: 61,
|
||||
label: '存款审核',
|
||||
path: '6-1', // index="6-1"
|
||||
path: '/funding/deposit', // index="6-1"
|
||||
icon: ''
|
||||
},
|
||||
{
|
||||
id: 62,
|
||||
label: '取款审核',
|
||||
path: '6-2', // index="6-2"
|
||||
path: '/funding/withdrawal', // index="6-2"
|
||||
icon: ''
|
||||
},
|
||||
{
|
||||
id: 63,
|
||||
label: '取款明细',
|
||||
path: '6-3', // index="6-3"
|
||||
path: '/funding/withdrawalDetail', // index="6-3"
|
||||
icon: ''
|
||||
},
|
||||
{
|
||||
id: 64,
|
||||
label: '存款明细',
|
||||
path: '6-4', // index="6-4"
|
||||
path: '/funding/depositDetail', // index="6-4"
|
||||
icon: ''
|
||||
},
|
||||
{
|
||||
id: 65,
|
||||
label: '转账明细',
|
||||
path: '6-5', // index="6-5"
|
||||
path: '/funding/transferDetail', // index="6-5"
|
||||
icon: ''
|
||||
},
|
||||
{
|
||||
id: 66,
|
||||
label: '资金流水',
|
||||
path: '6-6', // index="6-6"
|
||||
path: '/funding/flowDetail', // index="6-6"
|
||||
icon: ''
|
||||
},
|
||||
{
|
||||
id: 67,
|
||||
label: '收款账户列表',
|
||||
path: '6-7', // index="6-7"
|
||||
path: '/funding/receiverAccountList', // index="6-7"
|
||||
icon: ''
|
||||
},
|
||||
{
|
||||
id: 68,
|
||||
label: '存款渠道',
|
||||
path: '6-8', // index="6-8"
|
||||
path: '/funding/depositChannel', // index="6-8"
|
||||
icon: ''
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -165,8 +165,79 @@ const routes = [
|
|||
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',
|
||||
name: 'Risk',
|
||||
|
|
|
|||
Loading…
Reference in New Issue