From 23081b2ebf01f9b64306effb4447705ccf667ce3 Mon Sep 17 00:00:00 2001
From: jiaosong <jiaosong6760@dingtalk.com>
Date: 星期一, 21 八月 2023 14:14:25 +0800
Subject: [PATCH] # 删除 a.status = 和字段 a.code
---
screen_standard/src/router/index.js | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/screen_standard/src/router/index.js b/screen_standard/src/router/index.js
index e58491f..7377b96 100644
--- a/screen_standard/src/router/index.js
+++ b/screen_standard/src/router/index.js
@@ -1,5 +1,6 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
+import indexView from '../views/index.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -7,8 +8,13 @@
{
path: '/',
name: 'home',
- component: HomeView
- }
+ component: indexView
+ },
+ // {
+ // path: '/index',
+ // name: 'index',
+ // component: indexView
+ // }
]
})
--
Gitblit v1.9.3