feat: 添加我的发行申请页面及相关组件,更新路由和国际化支持
This commit is contained in:
@@ -116,6 +116,24 @@ const routes: Array<RouteRecordRaw> = [
|
||||
component: () => import("@/views/trade-settings/my-subscribe/index.vue"),
|
||||
meta: { requiresAuth: true },
|
||||
},
|
||||
{
|
||||
path: "/trade-settings/my-issues",
|
||||
component: () => import("@/views/trade-settings/my-issues/outlet.vue"),
|
||||
meta: { requiresAuth: true },
|
||||
children: [
|
||||
{
|
||||
path: "",
|
||||
component: () => import("@/views/trade-settings/my-issues/index.vue"),
|
||||
meta: { requiresAuth: true },
|
||||
},
|
||||
{
|
||||
path: ":id",
|
||||
props: true,
|
||||
component: () => import("@/views/trade-settings/my-issues/detail.vue"),
|
||||
meta: { requiresAuth: true },
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "/trade-settings/bank-management/add",
|
||||
component: () => import("@/views/trade-settings/bank-management/add.vue"),
|
||||
|
||||
Reference in New Issue
Block a user