From 8fb7cc0325027caa4ed7574443e24f5bd7a8efb7 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 02 九月 2024 23:09:45 +0800 Subject: [PATCH] 考核结果图表bug,登录路由权限控制 --- src/layout/components/Navbar.vue | 20 +++++++++++++++++--- 1 files changed, 17 insertions(+), 3 deletions(-) diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue index cd90e52..90c59ec 100644 --- a/src/layout/components/Navbar.vue +++ b/src/layout/components/Navbar.vue @@ -1,7 +1,7 @@ <template> <div class="navbar"> <hamburger id="hamburger-container" :is-active="sidebar.opened" class="hamburger-container" - @toggleClick="toggleSideBar" /> + @toggleClick="toggleSideBar" /> <breadcrumb id="breadcrumb-container" class="breadcrumb-container" v-if="!topNav" /> <top-nav id="topmenu-container" class="topmenu-container" v-if="topNav" /> @@ -39,7 +39,13 @@ </div> <div class="button-container"> - <el-button type="primary" @click="toScreen">鍙鍖栧ぇ灞�</el-button> + <el-button v-if="roles.includes('admin') || roles.includes('county_leader') || roles.includes('city_leader')" type="primary" @click="toScreen" size="small">鍙鍖栧ぇ灞�</el-button> + </div> + <div class="button-container"> + <el-button type="primary" @click="toSystemB" size="small">璺宠浆B绯荤粺</el-button> + </div> + <div class="button-container"> + <el-button type="primary" @click="toSystemA" size="small">璺宠浆A绯荤粺</el-button> </div> </div> </template> @@ -70,7 +76,8 @@ ...mapGetters([ 'sidebar', 'avatar', - 'device' + 'device', + 'roles' ]), setting: { get() { @@ -109,6 +116,13 @@ this.$router.push({ path: '/screen' }) + }, + + toSystemA() { + window.open('https://www.baidu.com/') + }, + toSystemB() { + window.open('https://www.baidu.com/') } } } -- Gitblit v1.8.0