- ปรับเมนู (ใหม่)
- ปรับคำสั่ง
This commit is contained in:
parent
ed7c6e9f07
commit
ada9644df7
19 changed files with 448 additions and 15 deletions
26
src/modules/01_metadataNew/router.ts
Normal file
26
src/modules/01_metadataNew/router.ts
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
const calendarWorkPage = () =>
|
||||
import("@/modules/01_metadataNew/views/calendar.vue");
|
||||
const masterInsignia = () => import("@/modules/01_metadataNew/views/insignia.vue");
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/master-data/calendar",
|
||||
name: "masterCalendarWork",
|
||||
component: calendarWorkPage,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [7],
|
||||
Role: "metadata",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/master-data/insignia",
|
||||
name: "masterInsignia",
|
||||
component: masterInsignia,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [7],
|
||||
Role: "metadata",
|
||||
},
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue