2024-02-06 11:58:23 +07:00
|
|
|
const mainPage = () => import("@/modules/04_registryNew/views/main.vue");
|
2024-03-04 12:46:42 +07:00
|
|
|
const listPage = () => import("@/modules/04_registryNew/views/list.vue");
|
2024-01-12 13:54:47 +07:00
|
|
|
|
|
|
|
|
export default [
|
|
|
|
|
{
|
|
|
|
|
path: "/registry-new",
|
|
|
|
|
name: "registryNew",
|
2024-03-04 12:46:42 +07:00
|
|
|
component: listPage,
|
|
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
Key: [7],
|
|
|
|
|
Role: "organization",
|
|
|
|
|
},
|
|
|
|
|
},
|
2024-03-08 13:11:20 +07:00
|
|
|
// {
|
|
|
|
|
// path: "/registry-new/list",
|
|
|
|
|
// name: "registryNewList",
|
|
|
|
|
// component: listPage,
|
|
|
|
|
// meta: {
|
|
|
|
|
// Auth: true,
|
|
|
|
|
// Key: [7],
|
|
|
|
|
// Role: "organization",
|
|
|
|
|
// },
|
|
|
|
|
// },
|
2024-01-12 13:54:47 +07:00
|
|
|
];
|