From da4257bc32483409af02a06dd342c6981ec786ec Mon Sep 17 00:00:00 2001
From: liulijun <liulijun@hnkhzn.com>
Date: 星期一, 17 十一月 2025 17:14:14 +0800
Subject: [PATCH] 更新大屏幕页面和任务信息页面

---
 项目代码/BigScreen/src/router/index.js |   43 ++++++++++++++-----------------------------
 1 files changed, 14 insertions(+), 29 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/BigScreen/src/router/index.js" "b/\351\241\271\347\233\256\344\273\243\347\240\201/BigScreen/src/router/index.js"
index 87a4813..8f9b734 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/BigScreen/src/router/index.js"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/BigScreen/src/router/index.js"
@@ -1,36 +1,21 @@
-/*
- * @Author: daidai
- * @Date: 2022-01-12 14:22:29
- * @LastEditors: Please set LastEditors
- * @LastEditTime: 2022-04-28 14:53:02
- * @FilePath: \web-pc\src\pages\big-screen\router\index.js
- */
-import Vue from "vue";
-import VueRouter from "vue-router";
+import Vue from 'vue'
+import VueRouter from 'vue-router'
 
-Vue.use(VueRouter);
+Vue.use(VueRouter)
 
-const routes = [  {
-  path: '/',
-  redirect: '/index',
+const routes = [{
+  path: '/line',
+  name: 'indexLine',
+  component: () => import('../views/indexLine.vue')
 },
 {
-  path: '/home',
-  name: 'home',
-  component: () => import(/* webpackChunkName: "LSD.bighome" */ '../views/home.vue'),
-  children:[
-    {
-      path: '/index',
-      name: 'index',
-      component: () => import(/* webpackChunkName: "LSD.bighome" */ '../views/indexs/index.vue'),
-    }
-  ]
-}, 
-];
+  path:"/pick",
+  name:"indexPick",
+  component: () => import('../views/indexPick.vue')
+}
+]
 const router = new VueRouter({
-  mode: "hash",
-  base: process.env.BASE_URL,
   routes
-});
+})
 
-export default router;
\ No newline at end of file
+export default router
\ No newline at end of file

--
Gitblit v1.9.3