From 421087f05bbcee88211f2b95afd4843da521998b Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Tue, 22 Jul 2025 16:02:58 +0800
Subject: [PATCH] 1
---
src/router/index.js | 21 +++++++++++++++++----
1 files changed, 17 insertions(+), 4 deletions(-)
diff --git a/src/router/index.js b/src/router/index.js
index 4a09b7c..07652e7 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -86,6 +86,8 @@
import new_service from "@/page/home/new_service.vue";
import smart_intraday from "@/page/home/smart_intraday.vue";
import smart_list from "@/page/home/smart_list.vue";
+import guide from "@/page/home/guide.vue";
+
Vue.use(Router);
const routerPush = Router.prototype.push;
@@ -161,11 +163,10 @@
meta: {
// title: '详情',
title: i18n.t("hj238"),
+ requireAuth: false,
hasHeader: false,
- // hasHeader: true,
- // is_Show: true,
- is_Show: false,
- index: 2
+ index: 81,
+ show: true
},
component: NewPage
},
@@ -1118,6 +1119,18 @@
},
component: smart_list
},
+
+ {
+ path: "/guide",
+ name: "guide",
+ meta: {
+ itle: i18n.t("hj2"),
+ requireAuth: true,
+ hasHeader: false,
+ index: 65
+ },
+ component: guide
+ },
{
// 会匹配所有路径
path: "*",
--
Gitblit v1.9.3