49 lines
No EOL
1.4 KiB
TypeScript
49 lines
No EOL
1.4 KiB
TypeScript
|
|
const complaintMain = () => import("@/modules/11_discipline/components/1_Complaint/MainPage.vue")
|
|
const factsMain = () => import("@/modules/11_discipline/components/2_InvestigateFacts/MainPage.vue")
|
|
const investigatefactsAdd = () => import("@/modules/11_discipline/components/2_InvestigateFacts/investigatefactsAdd.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",
|
|
},
|
|
},
|
|
{
|
|
path: "/discipline/investigatefacts/add",
|
|
name: "/discipline-investigatefactsAdd",
|
|
component: investigatefactsAdd,
|
|
meta: {
|
|
Auth: true,
|
|
Key: [11.2],
|
|
Role: "coin",
|
|
},
|
|
},
|
|
] |