更新提现相关功能,新增已批准提现列表页面及路由,优化提现和待审核提现页面的数据获取逻辑,添加过滤功能
This commit is contained in:
@@ -28,5 +28,6 @@ export const views: Record<LastLevelRouteKey, RouteComponent | (() => Promise<Ro
|
||||
user_bankcard: () => import("@/views/user/bankcard/index.vue"),
|
||||
user_list: () => import("@/views/user/list/index.vue"),
|
||||
user_transfer: () => import("@/views/user/transfer/index.vue"),
|
||||
withdraw_approved: () => import("@/views/withdraw/approved/index.vue"),
|
||||
withdraw_fiat: () => import("@/views/withdraw/fiat/index.vue"),
|
||||
};
|
||||
|
||||
@@ -184,6 +184,15 @@ export const generatedRoutes: GeneratedRoute[] = [
|
||||
order: 3
|
||||
},
|
||||
children: [
|
||||
{
|
||||
name: 'withdraw_approved',
|
||||
path: '/withdraw/approved',
|
||||
component: 'view.withdraw_approved',
|
||||
meta: {
|
||||
title: 'withdraw_approved',
|
||||
i18nKey: 'route.withdraw_approved'
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'withdraw_fiat',
|
||||
path: '/withdraw/fiat',
|
||||
|
||||
@@ -180,6 +180,7 @@ const routeMap: RouteMap = {
|
||||
"user_list": "/user/list",
|
||||
"user_transfer": "/user/transfer",
|
||||
"withdraw": "/withdraw",
|
||||
"withdraw_approved": "/withdraw/approved",
|
||||
"withdraw_fiat": "/withdraw/fiat"
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user