jxdnsong
2022-10-25 bf5ba56e8a82f0ef699f2eae413d0dc2c4e4f67d
src/router/page/index.js
@@ -64,35 +64,31 @@
const pcTechniqueSpace = () => import('../../pcviews/technique/space.vue')
const pcTechniqueGraph = () => import('../../pcviews/technique/graph.vue')
const pcTechniquePath = () => import('../../pcviews/technique/path.vue')
const pcHomepage = () => import('../../pcviews/homepage/index.vue')
const pcLogin = () => import('../../pcviews/Login/index.vue')
const routes = [
    // 大屏页面
    // {
    //     path: '/large',
    //     meta: {
    //         title: '大屏页面'
    //     },
    //     component: large
    // },
    {
        path: '/large',
        path: '/homepage',
        meta: {
            title: '大屏页面'
        },
        component: large
    },
    {
        path: '/',
        redirect: '/pcLayout'
        component: pcHomepage
    },
    {
        path: '/login',
        name: 'login',
        component: resolve => require(['../../pcviews/Login/index.vue'], resolve),
        component: pcLogin,
        meta: {
            title: '登录页',
            isAuth: false
        }
    },
    {
        path: '/homee',
        name: 'homee',
        component: resolve => require(['../../pcviews/homee/index.vue'], resolve),
        meta: {
            title: '首页',
            isAuth: false
        }
    },