From 074f334d060ec7d33d39cdeaae5ed84a2a2dd3a3 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期二, 22 八月 2023 18:20:59 +0800
Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/dmMes

---
 screen_standard/src/router/index.js |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/screen_standard/src/router/index.js b/screen_standard/src/router/index.js
index 7377b96..c8239a7 100644
--- a/screen_standard/src/router/index.js
+++ b/screen_standard/src/router/index.js
@@ -1,20 +1,22 @@
 import { createRouter, createWebHistory } from 'vue-router'
 import HomeView from '../views/HomeView.vue'
 import indexView from '../views/index.vue'
+import processView from '../views/process.vue'
 
 const router = createRouter({
-  history: createWebHistory(import.meta.env.BASE_URL),
+  
+  history: createWebHistory(import.meta.env.VITE_BASE_CONTEXT),
   routes: [
     {
       path: '/',
       name: 'home',
       component: indexView
     },
-    // {
-    //   path: '/index',
-    //   name: 'index',
-    //   component: indexView
-    // }
+    {
+      path: '/process',
+      name: 'process',
+      component: processView
+    }
   ]
 })
 

--
Gitblit v1.9.3