/** * Router เครื่องราชอิสริยาภรณ์ (insignia) */ const Main = () => import("@/modules/07_insignia/views/Main.vue"); const ReportView = () => import("../07_insignia/components/report/ReportView.vue"); const report_01 = () => import("../07_insignia/components/report/Report_01.vue"); const RecordInsignia = () => import("@/modules/07_insignia/components/RecordInsignia.vue"); const Coin = () => import("@/modules/07_insignia/components/Coin.vue"); const insigniaProposals = () => import("@/modules/07_insignia/components/1_Proposals/listProposals.vue"); const roundAdd = () => import("@/modules/07_insignia/components/1_Proposals/addProposals.vue"); export default [ { path: "/insignia", name: "insignia", component: Main, meta: { Auth: true, Key: [8], Role: "insignia", }, }, { path: "/insignia/round-proposals", name: "insigniaProposals", component: insigniaProposals, meta: { Auth: true, Key: [8.1], Role: "insignia", }, }, { path: "/insignia/round-add", name: "roundAdd", component: roundAdd, meta: { Auth: true, Key: [8.1], Role: "insignia", }, }, { path: "/insignia/record", name: "insigniaRecord", component: RecordInsignia, meta: { Auth: true, Key: [8.4], Role: "insignia", }, }, { path: "/insignia/coin", name: "coin", component: Coin, meta: { Auth: true, Key: [8], Role: "insignia", }, }, { path: "/insignia/report", name: "insigniaReport", component: ReportView, meta: { Auth: true, Key: [8.5], Role: "insignia", }, }, { path: "/insignia/report/report-01", name: "report-report-01", component: report_01, meta: { Auth: true, Key: [8.5], Role: "insignia", }, }, ];