From dd78502d220801c2d8372ef323df4ca73faf47ad Mon Sep 17 00:00:00 2001 From: bb_pan Date: Mon, 5 Jan 2026 13:32:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/home/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/home/index.vue b/src/views/home/index.vue index 892d99a1..ee2fa682 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -21,7 +21,7 @@ export default { created() { const deptName = sessionStorage.getItem('deptName') // 如果 deptName 包含 省公司 则显示ProvincialCompany 否则 显示 MunicipalCompany - this.isShowComponent = deptName.includes('省公司') ? 'MunicipalCompany' : 'MunicipalCompany' + this.isShowComponent = deptName.includes('省公司') ? 'ProvincialCompany' : 'MunicipalCompany' }, methods: {}, }