增加提现相关的与打款相关逻辑
This commit is contained in:
@@ -36,6 +36,18 @@ export const accountRoutes: RouteRecordRaw[] = [
|
||||
component: () => import('@/features/wallet/views/WalletView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
},
|
||||
{
|
||||
path: '/wallet/payment-accounts',
|
||||
name: 'payment-accounts',
|
||||
component: () => import('@/features/wallet/views/PaymentAccountsView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
},
|
||||
{
|
||||
path: '/wallet/withdrawal',
|
||||
name: 'withdrawal',
|
||||
component: () => import('@/features/wallet/views/WithdrawalView.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
},
|
||||
{
|
||||
path: '/notifications',
|
||||
name: 'notifications',
|
||||
|
||||
@@ -70,6 +70,12 @@ export const adminRoutes: RouteRecordRaw[] = [
|
||||
component: () => import('@/features/admin/views/AdminWalletLedgerView.vue'),
|
||||
meta: adminMeta,
|
||||
},
|
||||
{
|
||||
path: '/admin/withdrawals',
|
||||
name: 'admin-withdrawals',
|
||||
component: () => import('@/features/admin/views/AdminWithdrawalsView.vue'),
|
||||
meta: adminMeta,
|
||||
},
|
||||
{
|
||||
path: '/admin/system-configs',
|
||||
name: 'admin-system-configs',
|
||||
|
||||
Reference in New Issue
Block a user