|
|
@@ -3,7 +3,7 @@
|
|
|
<div class="hos-name">
|
|
|
|
|
|
<!--Logo-->
|
|
|
- <img :src="logo" alt="logo">
|
|
|
+ <img :src="logo" class="logo" alt="logo">
|
|
|
|
|
|
<!--开关左边导航-->
|
|
|
<hamburger id="hamburger-container" :is-active="sidebar.opened" class="hamburger-container" @toggleClick="toggleSideBar" />
|
|
|
@@ -90,6 +90,8 @@ import Screenfull from '@/components/Screenfull'
|
|
|
import SizeSelect from '@/components/SizeSelect'
|
|
|
import Search from '@/components/HeaderSearch'
|
|
|
import { getUnReadCounter } from '@/api/system/msgApi'
|
|
|
+import { isNotNull } from '@/utils'
|
|
|
+
|
|
|
export default {
|
|
|
name: 'NavBar',
|
|
|
components: {
|
|
|
@@ -161,7 +163,7 @@ export default {
|
|
|
// 渲染导航
|
|
|
initSideTab() {
|
|
|
let id = this.sideMenuTabId
|
|
|
- if (this.isNotNull(localStorage.getItem('csat_tabId'))) {
|
|
|
+ if (isNotNull(localStorage.getItem('csat_tabId'))) {
|
|
|
id = parseFloat(localStorage.getItem('csat_tabId'))
|
|
|
}
|
|
|
const path = this.sideMenuTabList.filter(item => item.id === id)[0].path
|
|
|
@@ -237,7 +239,7 @@ export default {
|
|
|
.logo {
|
|
|
display: block;
|
|
|
width: auto;
|
|
|
- height: 48px;
|
|
|
+ height: 38px;
|
|
|
}
|
|
|
|
|
|
.tag{
|
|
|
@@ -344,7 +346,7 @@ export default {
|
|
|
flex-direction: column;
|
|
|
color: #ccc;
|
|
|
line-height: 1;
|
|
|
- font-weight: 500;
|
|
|
+ font-weight: 600;
|
|
|
padding: 0 15px;
|
|
|
cursor: pointer;
|
|
|
transition: 0.2s;
|