โครงสร้าง folder ชื่อ 11_discipline
This commit is contained in:
parent
6119fbcb59
commit
58a99e1e49
12 changed files with 182 additions and 8 deletions
38
src/modules/11_discipline/router.ts
Normal file
38
src/modules/11_discipline/router.ts
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
|
||||
const complaintMain = () => import("@/modules/11_discipline/components/1_Complaint/MainPage.vue")
|
||||
const factsMain = () => import("@/modules/11_discipline/components/2_InvestigateFacts/MainPage.vue")
|
||||
const disciplinaryMain = () => import("@/modules/11_discipline/components/3_InvestigateDisciplinary/MainPage.vue")
|
||||
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/discipline/complaints",
|
||||
name: "/discipline-complaints",
|
||||
component: complaintMain,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [11.1],
|
||||
Role: "coin",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/discipline/investigatefacts",
|
||||
name: "/discipline-investigatefacts",
|
||||
component: factsMain,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [11.2],
|
||||
Role: "coin",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/discipline/disciplinary",
|
||||
name: "/discipline-disciplinary",
|
||||
component: disciplinaryMain,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [9],
|
||||
Role: "coin",
|
||||
},
|
||||
},
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue