347 lines
8.6 KiB
Vue
347 lines
8.6 KiB
Vue
<template>
|
|
<div class="navbar">
|
|
<!-- <hamburger id="hamburger-container" :is-active="sidebar.opened" class="hamburger-container" @toggleClick="toggleSideBar" />-->
|
|
<!-- <breadcrumb id="breadcrumb-container" class="breadcrumb-container" v-if="!topNav"/>-->
|
|
|
|
<top-nav id="topmenu-container" class="topmenu-container" v-if="topNav"/>
|
|
<div class="title-logo">
|
|
|
|
<div>
|
|
{{storeName || "百业兴智慧油站"}}欢迎您
|
|
</div>
|
|
|
|
</div>
|
|
<div class="right-box">
|
|
<div class="d-s">
|
|
<div class="icon-img">
|
|
<img src="../../../src/assets/new/t-sousuo.png" alt="">
|
|
</div>
|
|
搜索
|
|
</div>
|
|
<div class="d-s">
|
|
<div class="icon-img">
|
|
<img src="../../../src/assets/new/t-fangda.png" alt="">
|
|
</div>
|
|
放大
|
|
</div>
|
|
<div class="d-s">
|
|
<div class="icon-img">
|
|
<img src="../../../src/assets/new/t-sjdp.png" alt="">
|
|
</div>
|
|
收银台
|
|
</div>
|
|
<div class="d-s">
|
|
<div class="icon-img">
|
|
<img src="../../../src/assets/new/t-syt.png" alt="">
|
|
</div>
|
|
数据大屏
|
|
</div>
|
|
|
|
<el-dropdown class="avatar-container right-menu-item hover-effect" trigger="click">
|
|
<div class="avatar-wrapper">
|
|
<img :src="avatar" class="user-avatar">
|
|
<span class="j-kuang">
|
|
系统管理员
|
|
</span>
|
|
<span class="user-name">{{ name }}</span>
|
|
<i class="el-icon-caret-bottom"/>
|
|
</div>
|
|
<el-dropdown-menu slot="dropdown">
|
|
<el-dropdown-item @click.native="setting = true">
|
|
<span>布局设置</span>
|
|
</el-dropdown-item>
|
|
<el-dropdown-item divided @click.native="logout">
|
|
<span>退出登录</span>
|
|
</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</el-dropdown>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- <div class="right-menu">-->
|
|
<!-- <template v-if="device!=='mobile'">-->
|
|
<!-- <span v-if="day>=0 && day<11" class="right-menu-item hover-effect" style="color: #ff1f1f; margin-right: 10px">油站有效期还剩{{day}}天</span>-->
|
|
<!-- <search id="header-search" class="right-menu-item" />-->
|
|
<!-- <ScreenData class="right-menu-item hover-effect" style="font-size: 24px"></ScreenData>-->
|
|
<!-- <screenfull id="screenfull" class="right-menu-item hover-effect" />-->
|
|
|
|
<!-- <div title="收银台" class="right-menu-item hover-effect " style="font-size: 24px">-->
|
|
<!-- <i class="el-icon-s-shop" @click="goToCashier()"></i>-->
|
|
<!-- </div>-->
|
|
<!-- <FuintDoc id="fuint-doc" class="right-menu-item hover-effect" />-->
|
|
<!--<!– <i class="right-menu-item hover-effect el-icon-s-shop" @click="goToCashier()"></i>–>-->
|
|
<!-- </template>-->
|
|
<!-- <el-dropdown class="avatar-container right-menu-item hover-effect" trigger="click">-->
|
|
<!-- <div class="avatar-wrapper">-->
|
|
<!-- <img :src="avatar" class="user-avatar">-->
|
|
<!-- <span class="user-name">{{ name }}</span>-->
|
|
<!-- <i class="el-icon-caret-bottom"/>-->
|
|
<!-- </div>-->
|
|
<!-- <el-dropdown-menu slot="dropdown">-->
|
|
<!-- <el-dropdown-item @click.native="setting = true">-->
|
|
<!-- <span>布局设置</span>-->
|
|
<!-- </el-dropdown-item>-->
|
|
<!-- <el-dropdown-item divided @click.native="logout">-->
|
|
<!-- <span>退出登录</span>-->
|
|
<!-- </el-dropdown-item>-->
|
|
<!-- </el-dropdown-menu>-->
|
|
<!-- </el-dropdown>-->
|
|
<!-- </div>-->
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
import Breadcrumb from '@/components/Breadcrumb'
|
|
import TopNav from '@/components/TopNav'
|
|
import Hamburger from '@/components/Hamburger'
|
|
import Screenfull from '@/components/Screenfull'
|
|
import SizeSelect from '@/components/SizeSelect'
|
|
import Search from '@/components/HeaderSearch'
|
|
import FuintDoc from '@/components/Fuint/Doc'
|
|
import ScreenData from '@/components/ScreenData'
|
|
import {getCountdownApi} from "@/api/store";
|
|
import {ljStoreInfo} from "@/api/staff/store";
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
day: -1,
|
|
storeName:"",
|
|
}
|
|
},
|
|
components: {
|
|
Breadcrumb,
|
|
TopNav,
|
|
Hamburger,
|
|
Screenfull,
|
|
SizeSelect,
|
|
Search,
|
|
FuintDoc,
|
|
ScreenData
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'sidebar',
|
|
'avatar',
|
|
'name',
|
|
'device'
|
|
]),
|
|
setting: {
|
|
get() {
|
|
return this.$store.state.settings.showSettings
|
|
},
|
|
set(val) {
|
|
this.$store.dispatch('settings/changeSetting', {
|
|
key: 'showSettings',
|
|
value: val
|
|
})
|
|
}
|
|
},
|
|
topNav: {
|
|
get() {
|
|
return this.$store.state.settings.topNav
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
this.getCountdown()
|
|
this.getStore()
|
|
},
|
|
methods: {
|
|
toggleSideBar() {
|
|
this.$store.dispatch('app/toggleSideBar')
|
|
},
|
|
async logout() {
|
|
this.$confirm('确定注销并退出系统吗?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.$store.dispatch('LogOut').then(() => {
|
|
location.href = '/';
|
|
})
|
|
}).catch(() => {});
|
|
},
|
|
goToCashier() {
|
|
window.open(this.pcUrl+'#/homeindex?id=0')
|
|
},
|
|
getStore(){
|
|
ljStoreInfo().then(res => {
|
|
this.storeName = res.data.name
|
|
})
|
|
},
|
|
// 查询到期时间
|
|
getCountdown() {
|
|
getCountdownApi().then(res=> {
|
|
if (res.code === 200) {
|
|
this.day = res.data
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.right-box{
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
}
|
|
.d-s{
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 10px;
|
|
cursor: pointer;
|
|
}
|
|
.icon-img{
|
|
width: 28px;
|
|
height: 28px;
|
|
margin-right: 5px;
|
|
img{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
.avatar-wrapper{
|
|
img{
|
|
width: 28px;
|
|
height: 28px;
|
|
margin-right: 10px;
|
|
}
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
.j-kuang{
|
|
box-sizing: border-box;
|
|
padding: 2px 2px;
|
|
font-weight: 400;
|
|
font-size: 10px;
|
|
color: #FF9655;
|
|
border: 1px solid #FF9655;
|
|
border-radius: 2px 2px 2px 2px;
|
|
margin-right: 10px;
|
|
}
|
|
.navbar {
|
|
height: 60px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
//background-image: url("../../assets/images/kkx.png") ;
|
|
background-size: 100% 100%;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background: #FFFFFF;
|
|
box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.1);
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
.hamburger-container {
|
|
line-height: 46px;
|
|
height: 100%;
|
|
float: left;
|
|
cursor: pointer;
|
|
transition: background .3s;
|
|
-webkit-tap-highlight-color:transparent;
|
|
|
|
&:hover {
|
|
background: rgba(0, 0, 0, .025)
|
|
}
|
|
}
|
|
.title-logo{
|
|
//position: absolute;
|
|
//top: 50%; /* 将元素垂直向上移动容器高度的50% */
|
|
//left: 50%; /* 将元素水平向左移动容器宽度的50% */
|
|
//transform: translate(-50%, -50%); /* 通过移动元素的左上角使其居中 */
|
|
color: #333;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.breadcrumb-container {
|
|
float: left;
|
|
}
|
|
|
|
.topmenu-container {
|
|
position: absolute;
|
|
left: 50px;
|
|
}
|
|
|
|
.errLog-container {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.right-menu {
|
|
|
|
height: 100%;
|
|
line-height: 50px;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.right-menu-item {
|
|
display: inline-block;
|
|
padding: 0 8px;
|
|
height: 100%;
|
|
font-size: 18px;
|
|
color: #ffffff;
|
|
vertical-align: text-bottom;
|
|
|
|
&.hover-effect {
|
|
cursor: pointer;
|
|
transition: background .3s;
|
|
|
|
&:hover {
|
|
background: rgba(0, 0, 0, .025)
|
|
}
|
|
}
|
|
}
|
|
|
|
.avatar-container {
|
|
margin-right: 30px;
|
|
|
|
.avatar-wrapper {
|
|
margin-top: 5px;
|
|
position: relative;
|
|
|
|
.user-name {
|
|
font-weight: bold;
|
|
line-height: 35px;
|
|
display: block;
|
|
margin-left: 5px;
|
|
font-size: 14px;
|
|
float: left;
|
|
}
|
|
|
|
.user-avatar {
|
|
cursor: pointer;
|
|
width: 35px;
|
|
height: 35px;
|
|
border-radius: 10px;
|
|
float: left;
|
|
}
|
|
|
|
.el-icon-caret-bottom {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
right: -15px;
|
|
top: 12px;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|