new command module
This commit is contained in:
parent
612cd87689
commit
a750c4924c
13 changed files with 91 additions and 4 deletions
25
src/modules/18_command/router.ts
Normal file
25
src/modules/18_command/router.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
const listPage = () => import("@/modules/18_command/views/lists.vue");
|
||||
const detailPage = () => import("@/modules/18_command/views/detail.vue");
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/command",
|
||||
name: "commandListPage",
|
||||
component: listPage,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: "COMMAND",
|
||||
Role: "STAFF",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/command/:id",
|
||||
name: "commandDetailPage",
|
||||
component: detailPage,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: "COMMAND",
|
||||
Role: "STAFF",
|
||||
},
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue