38 lines
680 B
TypeScript
38 lines
680 B
TypeScript
/**
|
|
* Router Checkin
|
|
*/
|
|
|
|
const Checkin = () => import("@/modules/04_checkin/views/CheckIn.vue");
|
|
const History = () => import("@/modules/04_checkin/views/History.vue");
|
|
|
|
/* const Checkout = () => import("@/modules/04_checkin/views/Checkout.vue");
|
|
*/
|
|
export default [
|
|
{
|
|
path: "/check-in",
|
|
name: "Checkin",
|
|
component: Checkin,
|
|
meta: {
|
|
Auth: true,
|
|
Key: [7],
|
|
},
|
|
},
|
|
{
|
|
path: "/check-in/history",
|
|
name: "History",
|
|
component: History,
|
|
meta: {
|
|
Auth: true,
|
|
Key: [7],
|
|
},
|
|
},
|
|
/* {
|
|
path: "/check-out",
|
|
name: "Checkout",
|
|
component: Checkout,
|
|
meta: {
|
|
Auth: true,
|
|
Key: [7],
|
|
},
|
|
}, */
|
|
];
|