feat: 更新交易 RWA 路由,添加编辑功能和相关视图
This commit is contained in:
@@ -124,8 +124,21 @@ const routes: Array<RouteRecordRaw> = [
|
||||
{
|
||||
path: "/trade-rwa/:id",
|
||||
props: true,
|
||||
component: () => import("@/views/trade-rwa/index.vue"),
|
||||
component: () => import("@/views/trade-rwa/outlet.vue"),
|
||||
meta: { requiresAuth: true },
|
||||
children: [
|
||||
{
|
||||
path: "",
|
||||
component: () => import("@/views/trade-rwa/index.vue"),
|
||||
meta: { requiresAuth: true },
|
||||
},
|
||||
{
|
||||
path: "edit",
|
||||
name: "trade-rwa-edit",
|
||||
component: () => import("@/views/trade-rwa/edit.vue"),
|
||||
meta: { requiresAuth: true },
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user