ปรับ ui checkin

This commit is contained in:
Tanyalak 2024-01-19 15:34:09 +07:00
parent 4dbf1de05d
commit f9ec074f03
10 changed files with 705 additions and 695 deletions

View file

@ -1,6 +1,7 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '@/views/HomeView.vue'
import MapView from '@/views/MapView.vue'
import MianView from '@/views/MianView.vue'
import keycloak from '@/plugins/keycloak'
@ -8,56 +9,63 @@ const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: HomeView,
meta: {
Auth: true,
},
},
{
path: '/map',
name: 'map',
component: MapView,
meta: {
Auth: true,
},
},
{
path: '/about',
name: 'about',
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('@/views/AboutView.vue'),
meta: {
Auth: true,
},
},
{
path: '/history',
name: 'history',
component: () => import('@/views/HistoryView.vue'),
meta: {
Auth: true,
},
},
// {
// path: '/camera',
// name: 'camera',
// component: () => import('@/views/SampleCamera.vue'),
// },
/**
* 404 Not Found
* ref: https://router.vuejs.org/guide/essentials/dynamic-matching.html#catch-all-404-not-found-route
*/
{
path: '/:pathMatch(.*)*',
name: 'NotFound',
component: () => import('@/views/ErrorNotFoundPage.vue'),
meta: {
Auth: true,
},
path: "/",
name: "home",
component: MianView,
children: [
{
path: '/',
name: 'home',
component: HomeView,
meta: {
Auth: true,
},
},
{
path: '/map',
name: 'map',
component: MapView,
meta: {
Auth: true,
},
},
{
path: '/about',
name: 'about',
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('@/views/AboutView.vue'),
meta: {
Auth: true,
},
},
{
path: '/history',
name: 'history',
component: () => import('@/views/HistoryView.vue'),
meta: {
Auth: true,
},
},
// {
// path: '/camera',
// name: 'camera',
// component: () => import('@/views/SampleCamera.vue'),
// },
/**
* 404 Not Found
* ref: https://router.vuejs.org/guide/essentials/dynamic-matching.html#catch-all-404-not-found-route
*/
{
path: '/:pathMatch(.*)*',
name: 'NotFound',
component: () => import('@/views/ErrorNotFoundPage.vue'),
meta: {
Auth: true,
},
},
]
},
],
})