ปรับหน้าลงเวลาเข้างาน, ออกงาน, ประวัติการลาเวลา
This commit is contained in:
parent
421f4d5805
commit
7f0e41ff31
15 changed files with 696 additions and 191 deletions
49
src/modules/03_retire/router.ts
Normal file
49
src/modules/03_retire/router.ts
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
/**
|
||||
* Router ขอโอน
|
||||
*/
|
||||
|
||||
const Main = () => import("@/modules/03_retire/views/main.vue")
|
||||
|
||||
const AddRetire = () => import("@/modules/03_retire/views/addRetire.vue")
|
||||
|
||||
const ResultQuestionair = () => import("@/modules/03_retire/views/result.vue")
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/retire",
|
||||
name: "Retire",
|
||||
component: Main,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [7],
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/retire/add",
|
||||
name: "AddRetire",
|
||||
component: AddRetire,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [7],
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/retire/:id",
|
||||
name: "detailRetire",
|
||||
component: AddRetire,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [7],
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
path: "/retire/result/:id",
|
||||
name: "resultRetire",
|
||||
component: ResultQuestionair,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [7],
|
||||
},
|
||||
},
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue