feat: 添加提现管理功能,整合提现页面及相关路由,支持提现请求的审核与管理
This commit is contained in:
@@ -24,4 +24,5 @@ export const views: Record<LastLevelRouteKey, RouteComponent | (() => Promise<Ro
|
||||
news: () => import("@/views/news/index.vue"),
|
||||
product: () => import("@/views/product/index.vue"),
|
||||
user: () => import("@/views/user/index.vue"),
|
||||
withdraw: () => import("@/views/withdraw/index.vue"),
|
||||
};
|
||||
|
||||
@@ -99,5 +99,14 @@ export const generatedRoutes: GeneratedRoute[] = [
|
||||
title: 'user',
|
||||
i18nKey: 'route.user'
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'withdraw',
|
||||
path: '/withdraw',
|
||||
component: 'layout.base$view.withdraw',
|
||||
meta: {
|
||||
title: 'withdraw',
|
||||
i18nKey: 'route.withdraw'
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
@@ -171,7 +171,8 @@ const routeMap: RouteMap = {
|
||||
"login": "/login/:module(pwd-login|code-login|register|reset-pwd|bind-wechat)?",
|
||||
"news": "/news",
|
||||
"product": "/product",
|
||||
"user": "/user"
|
||||
"user": "/user",
|
||||
"withdraw": "/withdraw"
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user