diff --git a/src/interface/request/main/main.ts b/src/interface/request/main/main.ts index f998559b7..c40be23d4 100644 --- a/src/interface/request/main/main.ts +++ b/src/interface/request/main/main.ts @@ -743,6 +743,12 @@ const menuList = readonly([ path: "developmentScholarship", role: "development", }, + { + key: 14.5, + label: "ยุทธศาสตร์", + path: "developmentStrategic", + role: "development", + }, ], }, // { diff --git a/src/modules/15_development/router.ts b/src/modules/15_development/router.ts index af63439cc..a3390bcbd 100644 --- a/src/modules/15_development/router.ts +++ b/src/modules/15_development/router.ts @@ -7,14 +7,20 @@ const employeeHistory = () => import("@/modules/15_development/views/EmployeeHistory.vue"); const Scholarship = () => import("@/modules/15_development/views/Scholarship.vue"); -const historyAdd = () => import('@/modules/15_development/components/history/AddPage.vue') -const historyEdit = () => import('@/modules/15_development/components/history/AddPage.vue') -const historyEmployeeAdd = () => import('@/modules/15_development/components/historyEmployee/AddPage.vue') -const historyEmployeeEdit = () => import('@/modules/15_development/components/historyEmployee/AddPage.vue') +const historyAdd = () => + import("@/modules/15_development/components/history/AddPage.vue"); +const historyEdit = () => + import("@/modules/15_development/components/history/AddPage.vue"); +const historyEmployeeAdd = () => + import("@/modules/15_development/components/historyEmployee/AddPage.vue"); +const historyEmployeeEdit = () => + import("@/modules/15_development/components/historyEmployee/AddPage.vue"); const ScholarshipDetail = () => import("@/modules/15_development/components/scholarship/DetailView.vue"); // const historyAdd = () => // import("@/modules/15_development/components/history/AddPage.vue"); +const StrategicView = () => + import("@/modules/15_development/views/Strategic.vue"); export default [ { path: "/development", @@ -136,4 +142,15 @@ export default [ Role: "development", }, }, + + { + path: "/development/strategic", + name: "developmentStrategic", + component: StrategicView, + meta: { + Auth: true, + Key: [1.6], + Role: "development", + }, + }, ]; diff --git a/src/modules/15_development/views/Strategic.vue b/src/modules/15_development/views/Strategic.vue new file mode 100644 index 000000000..8b92734c9 --- /dev/null +++ b/src/modules/15_development/views/Strategic.vue @@ -0,0 +1,121 @@ + + + +