From 1ca8b42abcb41d14729000a357355b7e372660cb Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 25 Mar 2022 10:37:10 +0800
Subject: [PATCH] 大屏页面得修改

---
 src/router/page/index.js |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/src/router/page/index.js b/src/router/page/index.js
index 672fc30..f6ef179 100644
--- a/src/router/page/index.js
+++ b/src/router/page/index.js
@@ -2,12 +2,14 @@
  * @Author: Morpheus
  * @Date: 2021-04-30 14:12:09
  * @Last Modified by: Morpheus
- * @Last Modified time: 2022-02-14 15:09:19
+ * @Last Modified time: 2022-03-24 15:25:40
  */
 
 import Vue from 'vue'
 import VueRouter from 'vue-router'
 Vue.use(VueRouter)
+
+const large = () => import('../../pcviews/large/index.vue')
 
 const pcLayout = () => import('../../pcLayout/index.vue')
 const pcHome = () => import('../../pcviews/home/index.vue')
@@ -53,8 +55,15 @@
 const pcToolLayerManage = () => import('../../pcviews/tool/layer-manage.vue')
 
 const routes = [
+    // 大屏页面
+    {
+        path: '/large',
+        meta: {
+            title: '大屏页面'
+        },
+        component: large
+    },
     // pc端
-
     {
         path: '/pcLayout',
         redirect: '/pcLayout/default',

--
Gitblit v1.9.3