|
@@ -1,142 +1,116 @@
|
|
|
<template>
|
|
|
- <div class='page-header'>
|
|
|
- <div id='page-header-logo' class='page-logo'>
|
|
|
- <a @click="toIndex">
|
|
|
- <img src='@/assets/logo.png' alt='logo' class='logo-default'>
|
|
|
- </a>
|
|
|
- <div class='menu-toggler sidebar-toggler' @click.stop='toggleSidebar'>
|
|
|
- <span>
|
|
|
- <i class='el-icon-fa-bars'></i>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div id='page-header-data-menu' class='data-menu'>
|
|
|
- <el-select v-model='selectedProjectId' placeholder='请选择' filterable>
|
|
|
- <el-option-group v-for="group in projectGropList" :key="group.label" :label="group.label">
|
|
|
- <el-option v-for='item in group.options' :key='item.id' :label='item.name' :value='item.id'></el-option>
|
|
|
- </el-option-group>
|
|
|
- </el-select>
|
|
|
- </div>
|
|
|
- <div id='page-header-user-menu' class='user-menu'>
|
|
|
- <el-dropdown trigger='hover' class='user-menu-dropdown' @command='userMenuCommand'>
|
|
|
- <span class='el-dropdown-link'>
|
|
|
- {{userInfo.userName}}
|
|
|
- <i class='el-icon-fa-user el-icon--right'></i>
|
|
|
- </span>
|
|
|
- <el-dropdown-menu slot='dropdown'>
|
|
|
- <el-dropdown-item icon='el-icon-plus' command='logout'>退出</el-dropdown-item>
|
|
|
- <el-dropdown-item icon='el-icon-circle-plus'>修改密码</el-dropdown-item>
|
|
|
- </el-dropdown-menu>
|
|
|
- </el-dropdown>
|
|
|
- <ul class="header-nav">
|
|
|
- <li class="header-nav-Splitscreen">
|
|
|
- <a href="/splitScreen" target="_blank"><i class="el-icon-s-platform"></i></a>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <div>
|
|
|
+ <div class="page-header">
|
|
|
+ <div class="page-header-main">
|
|
|
+ <div class='page-header-logo'>
|
|
|
+ <a @click="toIndex">
|
|
|
+ <img src='@/assets/logo.png' alt='logo' class='logo-default'>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ <div class="page-header-nav">
|
|
|
+ <el-menu
|
|
|
+ :default-active="sidebarSelected"
|
|
|
+ mode="horizontal"
|
|
|
+ @select="handleSelect"
|
|
|
+ background-color="#1F2429"
|
|
|
+ text-color="#C3C7CB"
|
|
|
+ router
|
|
|
+ >
|
|
|
+ <template v-for='menu in menus'>
|
|
|
+ <el-menu-item :index='menu.path' :key='menu.path' :disabled="menu.disabled">
|
|
|
+ <i v-if='menu.icon' :class='"iconfont "+ menu.icon'></i>
|
|
|
+ <span slot='title'>{{menu.name}}</span>
|
|
|
+ </el-menu-item>
|
|
|
+ </template>
|
|
|
+ </el-menu>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import frameworkApi from '@/api/framework'
|
|
|
import { mapGetters, mapMutations } from 'vuex'
|
|
|
-import getFirstLetter from '@/utils/getFirstLetter'
|
|
|
-import lStorage from '@/utils/localStorage'
|
|
|
+import frameworkApi from '@/api/framework'
|
|
|
export default {
|
|
|
- name: 'PageHeader',
|
|
|
- props: [],
|
|
|
- data() {
|
|
|
- return {
|
|
|
- selectedProjectId: null
|
|
|
- }
|
|
|
- },
|
|
|
- computed: {
|
|
|
- ...mapGetters('layout', ['sidebarClosed', 'userInfo', 'projects', 'projectId']),
|
|
|
- projectGropList () {
|
|
|
- const cacheInfo = lStorage.get('historyInfo')?lStorage.get('historyInfo'):{}
|
|
|
- let options = [{
|
|
|
- label: '最近使用',
|
|
|
- options: []
|
|
|
- }]
|
|
|
- const projectHistory = cacheInfo[this.userInfo.userName] || []
|
|
|
- options[0].options = projectHistory.map(projectId => {
|
|
|
- let obj = this.projects.find(project => {
|
|
|
- return project.id === projectId
|
|
|
- })
|
|
|
- return obj?obj:[]
|
|
|
- })
|
|
|
+ name: 'PageHeader',
|
|
|
+ props: [],
|
|
|
+ created() {
|
|
|
|
|
|
- let helpObj = {}
|
|
|
- this.projects.forEach(p => {
|
|
|
- const label = getFirstLetter((p.name || p.id).slice(0, 1))
|
|
|
- if (helpObj[label]) {
|
|
|
- helpObj[label].push(p)
|
|
|
- } else {
|
|
|
- helpObj[label] = [p]
|
|
|
- }
|
|
|
- })
|
|
|
- const arr = Object.keys(helpObj).sort().map(label => {
|
|
|
- return {
|
|
|
- label: label,
|
|
|
- options: helpObj[label]
|
|
|
- }
|
|
|
- })
|
|
|
- return [...(options[0].options.length > 0 ? options : []), ...arr]
|
|
|
- }
|
|
|
- },
|
|
|
- watch: {
|
|
|
- selectedProjectId(n, o) {
|
|
|
- this.setprojectId(n)
|
|
|
- }
|
|
|
- },
|
|
|
- methods: {
|
|
|
- ...mapMutations('layout', ['setSidebarClosed', 'setprojectId']),
|
|
|
- handleSelect() {},
|
|
|
- toggleSidebar() {
|
|
|
- this.setSidebarClosed(!this.sidebarClosed)
|
|
|
- },
|
|
|
- userMenuCommand(cmd) {
|
|
|
- // console.log('userMenuCommand ', cmd)
|
|
|
- if (cmd == 'logout') {
|
|
|
- console.log("点击登出l")
|
|
|
- frameworkApi.toLogout()
|
|
|
- }
|
|
|
- },
|
|
|
- toIndex() {
|
|
|
- this.$router.push('/')
|
|
|
- }
|
|
|
- },
|
|
|
- created() {
|
|
|
- let cacheInfo = lStorage.get('historyInfo')?lStorage.get('historyInfo'):{}
|
|
|
- if(cacheInfo[this.userInfo.userName] &&
|
|
|
- cacheInfo[this.userInfo.userName][0] &&
|
|
|
- this.projects.some((item) => {return item.id == cacheInfo[this.userInfo.userName][0]})
|
|
|
- ){
|
|
|
- this.selectedProjectId = cacheInfo[this.userInfo.userName][0]
|
|
|
- } else {
|
|
|
- this.selectedProjectId = this.projectId
|
|
|
- }
|
|
|
- },
|
|
|
- mounted() {}
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {}
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ ...mapGetters('layout', ['sidebarSelected', 'permissions']),
|
|
|
+ menus() {
|
|
|
+ let menus = frameworkApi.getMenus(this.permissions)
|
|
|
+ return menus
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ ...mapMutations('layout', ['setSidebarSelected']),
|
|
|
+ handleSelect(index, indexPath) {
|
|
|
+ this.setSidebarSelected(index)
|
|
|
+ },
|
|
|
+ toIndex() {
|
|
|
+ this.$router.push('/index')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+
|
|
|
+ },
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
-.header-nav-Splitscreen>a{
|
|
|
- display: flex;
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- position: relative;
|
|
|
- padding: 16px 10px 10px;
|
|
|
- -webkit-box-sizing: border-box;
|
|
|
- box-sizing: border-box;
|
|
|
- color: #79869a;
|
|
|
- font-size: 24px;
|
|
|
- text-decoration: none;
|
|
|
- cursor: pointer;
|
|
|
- i{transition:all 0ms ease 0ms}
|
|
|
-}
|
|
|
-.header-nav-Splitscreen>a:hover{
|
|
|
- text-decoration: none;
|
|
|
- color: #d3d8e2;
|
|
|
- background-color: #3f4f62;
|
|
|
-}
|
|
|
+ .page-header {
|
|
|
+ height: 48px;
|
|
|
+ background-color: #1F2429;
|
|
|
+ .page-header-main {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ width: 1200px;
|
|
|
+ height: 100%;
|
|
|
+ margin: auto;
|
|
|
+ .page-header-logo {
|
|
|
+ flex-grow: 0;
|
|
|
+ flex-shrink: 0;
|
|
|
+ padding-left: 20px;
|
|
|
+ padding-right: 20px;
|
|
|
+ width: 120px;
|
|
|
+ display: inline-flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-between;
|
|
|
+ >a {
|
|
|
+ display: inline-block;
|
|
|
+ cursor: pointer;
|
|
|
+ .logo-default {
|
|
|
+ margin: 18px 0 0;
|
|
|
+ height: 18px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .page-header-nav {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /deep/ .el-menu--horizontal>.el-menu-item.is-active {
|
|
|
+ border-bottom: 2px solid #3A8DDE;
|
|
|
+ color: #FFFFFF;
|
|
|
+ }
|
|
|
+
|
|
|
+ /deep/ .el-menu--horizontal>.el-submenu.is-active .el-submenu__title {
|
|
|
+ border-bottom: 2px solid #3A8DDE;
|
|
|
+ color: #FFFFFF;
|
|
|
+ }
|
|
|
+
|
|
|
+ /deep/ .el-menu--horizontal>.el-menu-item {
|
|
|
+ height: 48px;
|
|
|
+ line-height: 48px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /deep/ .el-menu--horizontal>.el-submenu .el-submenu__title {
|
|
|
+ height: 48px;
|
|
|
+ line-height: 48px;
|
|
|
+ }
|
|
|
</style>
|