You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

255 lines
6.2 KiB

2 years ago
<template>
<div class="big-container">
2 years ago
<div class="left-menu">
2 years ago
<nav class="menu-headers">
<div>
2 years ago
<img src="../assets/images/logo.png" alt="" />
2 years ago
</div>
<div class="nav-text">苏州市应急</div>
<div class="nav-text">执法计划管理系统</div>
</nav>
<div class="menu-bottom">
2 years ago
<div
2 years ago
v-for="(item, index) in newRouter"
:key="index"
@click="changePath(index, item)"
2 years ago
>
2 years ago
<!-- 标题分割线 -->
<div class="subLine1" v-if="index == 0"></div>
2 years ago
<div
2 years ago
class="sub-item"
:class="routerIndex == index ? 'activeColor' : ''"
>
<div class="activeBox" v-show="index == routerIndex"></div>
<div
class="item-img"
:style="`background-image:url(${
routerIndex == index ? item.icon2 : item.icon1
})`"
></div>
{{ item.name }}
</div>
<!-- 菜单分割线 -->
<div class="subLine2"></div>
2 years ago
</div>
</div>
</div>
<div class="right-view">
<header>
<el-dropdown trigger="click" @visible-change="getDrop">
<div>
<div class="avatar"></div>
<div class="header-text">
2 years ago
<span
>{{ dept.deptName }}&nbsp;&nbsp;&nbsp;&nbsp;{{ username }}
</span>
2 years ago
<i class="el-icon-caret-bottom" v-if="!avatarFlag"></i>
<i class="el-icon-caret-top" v-if="avatarFlag"></i>
</div>
</div>
<el-dropdown-menu slot="dropdown">
2 years ago
<el-dropdown-item @click.native="logout">退出登录</el-dropdown-item>
2 years ago
</el-dropdown-menu>
</el-dropdown>
<!-- <div
class="showGLstyle"
v-if="roles && roles[0] == 'admin'"
@click="toNewPage"
>
2 years ago
进入管理平台
</div> -->
2 years ago
</header>
<div class="bottom-view">
<router-view></router-view>
</div>
</div>
</div>
</template>
<script>
2 years ago
import { mapState } from "vuex";
2 years ago
export default {
data() {
return {
routerIndex: 0,
avatarFlag: false,
};
},
2 years ago
computed: {
...mapState({
dept: (state) => state.user.dept,
username: (state) => state.user.name,
roles: (state) => state.user.roles,
newRouter: (state) => state.user.newRouter,
new1: (state) => state.user.new1,
2 years ago
}),
},
created() {},
watch: {
2 years ago
$route: {
handler(n, o) {
this.routerIndex = this.new1.indexOf(n.path);
},
immediate: true,
2 years ago
},
},
2 years ago
methods: {
2 years ago
toNewPage() {
this.$router.push({ path: "/system/user" });
},
2 years ago
changePath(e, item) {
this.$router.push(item.path);
},
getDrop(e) {
this.avatarFlag = e;
},
2 years ago
//退出登录
2 years ago
async logout() {
2 years ago
this.$confirm("确定注销并退出系统吗?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
2 years ago
this.$store.dispatch("LogOut").then(() => {
2 years ago
// location.href = process.env.NODE_ENV === "production"
// ? "/demo/suzhouyingjiPC/"
// : "/";
2 years ago
2 years ago
location.href = process.env.NODE_ENV === "production" ? "./" : "/";
2 years ago
});
2 years ago
})
.catch(() => {});
},
2 years ago
},
};
</script>
<style lang="scss" scoped>
2 years ago
.showGLstyle {
font-family: "Alibaba-PuHuiTi-Medium.otf";
color: #606266;
margin-right: 20px;
cursor: pointer;
}
2 years ago
.nav-text {
font-size: 20px;
font-family: "Alibaba-PuHuiTi-Medium.otf";
font-weight: 500;
color: #ffffff;
line-height: 32px;
}
.big-container {
height: 100%;
width: 100%;
display: flex;
.left-menu {
width: 210px;
// background-image: url("../assets/images/cb.png");
2 years ago
background-size: 102% 100%;
.menu-headers {
background-image: url("../assets/images/ceT.jpg");
background-size: 102% 100%;
2 years ago
height: 180px;
div {
text-align: center;
img {
margin: 12px 0 10px 0;
height: 70px;
width: 70px;
}
}
}
.menu-bottom {
height: calc(100% - 180px);
background-image: url("../assets/images/ceB.jpg");
background-size: 102% 100%;
}
2 years ago
.sub-item {
flex: 1;
height: 50px;
font-family: "Alibaba-PuHuiTi-Medium.otf";
font-size: 16px;
color: #c4dbff;
display: flex;
align-items: center;
padding-left: 40px;
position: relative;
cursor: pointer;
user-select: none;
.item-img {
height: 20px;
width: 20px;
background-size: 100% 100%;
margin-right: 8px;
}
}
.activeBox {
width: 4px;
height: 100%;
position: absolute;
left: 1px;
top: 0;
background: #fffaa8;
border-radius: 1px;
}
.activeColor {
background: linear-gradient(90deg, #fff9a7 0%);
background: linear-gradient(
to right,
rgba(255, 249, 167, 0.32),
rgb(247, 247, 247, 0)
);
border-radius: 1px;
color: #fffaa8;
}
.subLine1 {
height: 2px;
background-color: #0d408d;
margin-bottom: 1px;
}
.subLine2 {
height: 3px;
width: 100%;
background-image: url("../assets/images/fengeLINE.png");
2 years ago
background-size: 100% 100%;
// margin: 1px 0;
margin-bottom: 1px;
}
}
.right-view {
flex: 1;
header {
height: 50px;
background-image: url("../assets/images/ybnav.png");
2 years ago
background-size: 100% 100%;
display: flex;
flex-direction: row-reverse;
align-items: center;
2 years ago
padding-right: 20px;
2 years ago
.avatar {
height: 25px;
width: 25px;
background-size: 100% 100%;
background-image: url("../assets/images/gl-icon.png");
2 years ago
}
.header-text {
font-family: "Alibaba-PuHuiTi-Medium.otf";
span {
margin: 0 8px;
}
}
}
.bottom-view {
height: calc(100% - 50px);
background: #f5f6fa;
}
}
}
::v-deep .el-dropdown-selfdefine {
display: flex;
align-items: center;
cursor: pointer;
user-select: none;
}
2 years ago
</style>