From d4dc337cd73035c23eaf6a02e6d3d49ba383ac38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Fri, 8 Mar 2024 10:17:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E6=A1=A3=E6=8B=86?= =?UTF-8?q?=E5=88=86--=E6=9F=A5=E7=9C=8B--=E5=B7=A6=E4=BE=A7=E7=9B=AE?= =?UTF-8?q?=E5=BD=95--=E7=BC=96=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/public/index.html | 2 +- jero-web/src/components/layouts/TabLayout.vue | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/jero-web/public/index.html b/jero-web/public/index.html index d9935c2..fda7fba 100644 --- a/jero-web/public/index.html +++ b/jero-web/public/index.html @@ -5,7 +5,7 @@ - 中国重汽标准法规管理系统 + diff --git a/jero-web/src/components/layouts/TabLayout.vue b/jero-web/src/components/layouts/TabLayout.vue index cc60222..108a6be 100644 --- a/jero-web/src/components/layouts/TabLayout.vue +++ b/jero-web/src/components/layouts/TabLayout.vue @@ -155,12 +155,13 @@ export default { methods: { // update-begin-author:sunjianlei date:20200120 for: 动态更改页面标题 changeTitle (title) { - const projectTitle = '中国重汽标准法规管理系统' + const projectTitle = '' // 首页特殊处理 if (this.$route.path === indexKey) { document.title = projectTitle } else { - document.title = title + ' · ' + projectTitle + // + ' · ' + projectTitle + document.title = title } }, // update-end-author:sunjianlei date:20200120 for: 动态更改页面标题