123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- <template>
- <div class="home">
- <header class="header">
- <div class="left">
- 慧牧科技
- <el-button
- @click="onMenuCollapse"
- circle
- style="font-size: 20px"
- :icon="menuCollapse? 'el-icon-s-unfold' : 'el-icon-s-fold'"
- ></el-button>
- </div>
- <div class="right">
- <span class="warp">
- <el-dropdown @command="onLogOut">
- <span class="el-dropdown-link">
- 账号管理
- <i class="el-icon-arrow-down el-icon--right"></i>
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item>退出登录</el-dropdown-item>
- <el-dropdown-item>切换账号</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </span>
- <span>
- <el-dropdown @command="onLogOut">
- <span class="el-dropdown-link">
- 权限切换
- <i class="el-icon-arrow-down el-icon--right"></i>
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item disabled>权限一</el-dropdown-item>
- <el-dropdown-item divided>权限二</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </span>
- </div>
- </header>
- <section class="section">
- <div class="tac">
- <div class="col1">
- <el-menu
- default-active="2"
- class="el-menu-vertical-demo"
- @open="handleOpen"
- @close="handleClose"
- :collapse="menuCollapse"
- :unique-opened="true"
- :default-openeds="defaultUnfoldedMenu"
- select="1-1"
- background-color="rgba(46,38,87)"
- text-color="#fff"
- active-text-color="#ffd04b"
- >
- <div v-for="(item) in menuData " :key="item.index">
- <el-submenu
- v-if="item.childList && item.childList.length > 0"
- :index="item.index"
- >
- <template slot="title">
- <i :class="item.iconClassName"></i>
- <span slot="title">{{ !menuCollapse? item.optionName : '' }}</span>
- <!-- <span slot="title">{{ item.oneMenuName }}</span> -->
- </template>
- <el-menu-item
- v-for="(item1) in item.childList"
- :key="item1.index"
- :index="item1.index"
- :routerName="item1.routerName"
- @click="onClickMenu(item1)"
- >{{ item1.optionName }}</el-menu-item>
- </el-submenu>
- <el-menu-item
- v-else
- :index="item.index"
- :disabled="item.disabled"
- :routerName="item.routerName"
- @click="onClickMenu(item)"
- >
- <i :class="item.iconClassName"></i>
- <span slot="title">{{ !menuCollapse? item.optionName : '' }}</span>
- </el-menu-item>
- </div>
- </el-menu>
- </div>
- <div class="col2">
- <header class="col2_header">
- <el-tag
- v-for="tag in tags"
- :key="tag.routerName"
- closable
- @close="close(tag)"
- @click="clickTag(tag)"
- :type="tag.type?tag.type:'info'"
- class="item"
- >{{tag.name}}</el-tag>
- </header>
- <div class="warp">
- <router-view />
- </div>
- </div>
- </div>
- </section>
- </div>
- </template>
- <script>
- import { menuData } from "./mencCofig.js";
- export default {
- data() {
- return {
- // 菜单配置
- menuData,
- menuCollapse: false, //是否水平折叠收起菜单
- defaultUnfoldedMenu: [menuData[0].index], // 默认展开第一项
- tags: []
- };
- },
- created() {
- this.defaultUnfoldedMenu = [
- localStorage.getItem("defaultUnfoldedMenu")
- ];
- this.menuCollapse = JSON.parse(localStorage.getItem("menuCollapse"));
- this.tags = JSON.parse(localStorage.getItem("tagsNavList")) || [];
- },
- methods: {
- // 收取菜单按钮
- onMenuCollapse() {
- this.menuCollapse = !this.menuCollapse;
- localStorage.setItem("menuCollapse", this.menuCollapse);
- this.defaultUnfoldedMenu = [
- localStorage.getItem("defaultUnfoldedMenu")
- ];
- },
- // 菜单展开
- handleOpen(key, keyPath) {
- console.log(key, keyPath);
- localStorage.setItem("defaultUnfoldedMenu", "" + key);
- },
- // 菜单收取
- handleClose(key, keyPath) {
- console.log(key, keyPath);
- },
- // 点击菜单项
- onClickMenu(item) {
- let _this = this;
- // 如果要跳转的路由和当前路由一致就 return
- if (this.$router.history.current.name == item.routerName) return;
- this.$router.push({
- name: item.routerName
- });
- // 如果tags中已经存在 return
- let temp = includes(item.routerName);
- if (temp) {
- this.tags.forEach(item => {
- item.type = "info";
- });
- temp.type = "success";
- return;
- }
- this.tags.forEach(item => {
- item.type = "info";
- });
- this.tags.push({
- name: item.optionName,
- routerName: item.routerName,
- type: "success"
- });
- this.changeTagColor(item.routerName);
- localStorage.setItem("tagsNavList", JSON.stringify(this.tags));
- // 查看当前 tags里有没有传进来的路由,返回 true false
- function includes(routerName) {
- let tags = _this.tags;
- return tags.find(item => {
- return item.routerName == routerName;
- });
- }
- },
- // 点击 tag
- clickTag(tag) {
- console.log(tag.routerName);
- if (this.$router.history.current.name == tag.routerName) return;
- this.$router.push({
- name: tag.routerName
- });
- this.changeTagColor(tag.routerName);
- localStorage.setItem("tagsNavList", JSON.stringify(this.tags));
- },
- // 点击 tag 的小×
- close(tag) {
- console.log(tag);
- let spliceIndex = this.tags.findIndex(item => {
- return item.routerName == tag.routerName;
- });
- console.log(spliceIndex);
- this.tags.splice(spliceIndex, 1);
- localStorage.setItem("tagsNavList", JSON.stringify(this.tags));
- },
- // 改变tag的颜色 公用的
- changeTagColor(routerName) {
- this.tags.forEach(item => {
- if (item.routerName == routerName) {
- item.type = "success";
- } else {
- item.type = "info";
- }
- });
- },
- onLogOut() {
- this.$router.push('login')
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .home {
- height: 100%;
- overflow: hidden;
- box-sizing: border-box;
- background-color: #eee;
- display: flex;
- flex-direction: column;
- .header {
- // background-color: #029b62;
- // background-color: rgb(46,38,87);
- background-color: rgb(85, 70, 148);
- height: 40px;
- padding: 10px 20px;
- margin-bottom: 5px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .left {
- font-size: 25px;
- color: #fff;
- /deep/ .is-circle {
- margin-left: 40px;
- }
- }
- .right {
- .warp {
- margin-right: 20px;
- }
- }
- }
- .section {
- flex: 1;
- box-sizing: border-box;
- overflow: auto;
- .tac {
- flex: 1;
- display: flex;
- height: 96%;
- box-sizing: border-box;
- .col1 {
- margin-right: 5px;
- background-color: rgb(46,38,87);
- // background-image: linear-gradient(to bottom, rgb(85, 70, 148) , rgb(41, 33, 85), rgb(41, 33, 85));
- }
- .col2 {
- flex: 1;
- background-color: #fff;
- padding: 0 15px 15px 15px;
- border-radius: 5px;
- margin-right: 5px;
- height: 100%;
- overflow: auto;
- .col2_header {
- position: relative;
- width: 85%;
- height: 50px;
- overflow: hidden;
- border-bottom: 2px solid #eee;
- background-color: #fff;
- padding: 10px;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- z-index: 3;
- position: fixed;
- .item {
- margin-right: 8px;
- }
- }
- .warp {
- margin: 15px;
- padding-top: 55px;
- }
- }
- }
- }
- // border: 1px solid #f00;
- }
- .el-menu-vertical-demo:not(.el-menu--collapse) {
- width: 200px;
- min-height: 400px;
- }
- // 下拉菜单
- .el-dropdown-link {
- cursor: pointer;
- color: #fff;
- }
- .el-icon-arrow-down {
- font-size: 12px;
- }
- </style>
|