| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- <template>
- <el-row class="container">
- <el-col :span="24" class="header">
- <el-col :span="10" class="logo" :class="collapsed?'logo-collapse-width':'logo-width'">
- {{collapsed?'':sysName}}
- </el-col>
- <el-col :span="10">
- <div class="tools" @click.prevent="collapse">
- <i class="el-icon-menu"></i>
- </div>
- </el-col>
- <el-col :span="8">
- <div style="color:red;font-size:30px;">
- 模拟----(Demo)
- </div>
- </el-col>
- <el-col :span="4" class="userinfo">
- <el-dropdown trigger="hover">
- <span class="el-dropdown-link userinfo-inner"> {{sysUserName}} <span v-if="is_reg==1" style="color:red">登录中</span></span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item>我的消息</el-dropdown-item>
- <el-dropdown-item>设置</el-dropdown-item>
- <el-dropdown-item divided @click.native="logout">退出登录</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </el-col>
- </el-col>
- <el-col :span="24" class="main">
- <aside :class="collapsed?'menu-collapsed':'menu-expanded'">
- <!--导航菜单-->
- <el-menu :default-active="$route.path" class="el-menu-vertical-demo" @open="handleopen" @close="handleclose" @select="handleselect"
- unique-opened router v-show="!collapsed">
- <template v-for="(item,index) in $router.options.routes" v-if="!item.hidden">
- <el-submenu :index="index+''" v-if="!item.leaf">
- <template slot="title"><i :class="item.iconCls"></i>{{item.name}}</template>
- <el-menu-item v-for="child in item.children" :index="child.path" :key="child.path" v-if="!child.hidden">{{child.name}}</el-menu-item>
- </el-submenu>
- <el-menu-item v-if="item.leaf&&item.children.length>0" :index="item.children[0].path"><i :class="item.iconCls"></i>{{item.children[0].name}}</el-menu-item>
- </template>
- </el-menu>
- <!--导航菜单-折叠后-->
- <ul class="el-menu el-menu-vertical-demo collapsed" v-show="collapsed" ref="menuCollapsed">
- <li v-for="(item,index) in $router.options.routes" v-if="!item.hidden" class="el-submenu item">
- <template v-if="!item.leaf">
- <div class="el-submenu__title" style="padding-left: 20px;" @mouseover="showMenu(index,true)" @mouseout="showMenu(index,false)"><i :class="item.iconCls"></i></div>
- <ul class="el-menu submenu" :class="'submenu-hook-'+index" @mouseover="showMenu(index,true)" @mouseout="showMenu(index,false)">
- <li v-for="child in item.children" v-if="!child.hidden" :key="child.path" class="el-menu-item" style="padding-left: 40px;" :class="$route.path==child.path?'is-active':''" @click="$router.push(child.path)">{{child.name}}</li>
- </ul>
- </template>
- <template v-else>
- <li class="el-submenu">
- <div class="el-submenu__title el-menu-item" style="padding-left: 20px;height: 56px;line-height: 56px;padding: 0 20px;" :class="$route.path==item.children[0].path?'is-active':''" @click="$router.push(item.children[0].path)"><i :class="item.iconCls"></i></div>
- </li>
- </template>
- </li>
- </ul>
- </aside>
- <section class="content-container">
- <div class="grid-content bg-purple-light">
- <el-col :span="24" class="breadcrumb-container">
- <!-- 路由的名字 -->
- <strong class="title">{{$route.name}}</strong>
- <el-breadcrumb separator="/" class="breadcrumb-inner">
- <el-breadcrumb-item v-for="item in $route.matched" :key="item.path">
- {{ item.name }}
- </el-breadcrumb-item>
- </el-breadcrumb>
- </el-col>
- <el-col :span="24" class="content-wrapper">
- <transition name="fade" mode="out-in">
- <router-view></router-view>
- </transition>
- </el-col>
- </div>
- </section>
- </el-col>
-
- </el-row>
- </template>
- <script>
- export default {
- data() {
- return {
- sysName:'MT5跟单',
- collapsed:false, //是否折叠
- sysUserName: '', //用户名
- sysUserAvatar: '', //用户头像
- is_reg:null,
- form: {
- name: '',
- region: '',
- date1: '',
- date2: '',
- delivery: false,
- type: [],
- resource: '',
- desc: ''
- }
- }
- },
- mounted() {
- var user = sessionStorage.getItem('user'); //获取用户的信息
- var is_reg = sessionStorage.getItem('is_reg'); //获取登录状态
- if (user) {
- user = JSON.parse(user);
- this.sysUserName = user || ''; //获取用户的姓名
- this.is_reg = is_reg;
- // this.sysUserAvatar = user.avatar || '';
- }
- },
- methods: {
- onSubmit() {
- console.log('submit!');
- },
- handleopen() {
- //console.log('handleopen');
- },
- handleclose() {
- //console.log('handleclose');
- },
- handleselect: function (a, b) {
- },
- //退出登录
- logout: function () {
- var _this = this;
- this.$confirm('确认退出吗?', '提示', {
- //type: 'warning'
- }).then(() => {
- var loginParams = { is_reg: 0 }; //登录状态为未登录
- _this.$api.post('/api/index/base/logout',loginParams, response => {
- if (response.status == 200 && response.status < 300) {
- if(response.data){
-
- sessionStorage.removeItem('user'); //移除user的存储
- sessionStorage.removeItem('is_reg'); //移除is_reg的存储
- sessionStorage.removeItem('authKey');
- _this.$router.push('/login'); //从新跳转到login页面
- }
- } else {
- console.log(response.data);
- }
- });
- }).catch(() => {
- });
- },
- //折叠导航栏
- collapse:function(){
- this.collapsed=!this.collapsed;
- },
- showMenu(i,status){
- this.$refs.menuCollapsed.getElementsByClassName('submenu-hook-'+i)[0].style.display=status?'block':'none';
- },
- },
-
- }
- </script>
- <style>
- .el-message-box__header > .el-message-box__headerbtn{
- display: none !important;
- }
- </style>
- <style scoped lang="scss">
- @import '~scss_vars';
-
- .container {
- position: absolute;
- top: 0px;
- bottom: 0px;
- width: 100%;
- .header {
- height: 60px;
- line-height: 60px;
- background: $color-primary;
- color:#fff;
- .userinfo {
- text-align: right;
- padding-right: 35px;
- float: right;
- .userinfo-inner {
- cursor: pointer;
- color:#fff;
- img {
- width: 40px;
- height: 40px;
- border-radius: 20px;
- margin: 10px 0px 10px 10px;
- float: right;
- }
- }
- }
- .logo {
- //width:230px;
- height:60px;
- text-align: center;
- font-size: 22px;
- padding-left:20px;
- padding-right:20px;
- border-color: rgba(238,241,146,0.3);
- border-right-width: 1px;
- border-right-style: solid;
- img {
- width: 40px;
- float: left;
- margin: 10px 10px 10px 18px;
- }
- .txt {
- color:#fff;
- }
- }
- .logo-width{
- width:140px;
- }
- .logo-collapse-width{
- width:60px
- }
- .tools{
- padding: 0px 23px;
- width:14px;
- height: 60px;
- line-height: 60px;
- cursor: pointer;
- }
- }
- .main {
- display: flex;
- // background: #324057;
- position: absolute;
- top: 60px;
- bottom: 0px;
- overflow: hidden;
- aside {
- flex:0 0 230px;
- width: 230px;
- // position: absolute;
- // top: 0px;
- // bottom: 0px;
- .el-menu{
- height: 100%;
- }
- .collapsed{
- width:60px;
- .item{
- position: relative;
- }
- .submenu{
- position:absolute;
- top:0px;
- left:60px;
- z-index:99999;
- height:auto;
- display:none;
- }
- }
- }
- .menu-collapsed{
- flex:0 0 60px;
- width: 60px;
- }
- .menu-expanded{
- flex:0 0 140px;
- width: 60px;
- }
-
- // 恢复折叠菜单的样式
- .menu-expanded .el-menu-vertical-demo{
- width: 140px !important;
- }
- .content-container {
- // background: #f1f2f7;
- flex:1;
- // position: absolute;
- // right: 0px;
- // top: 0px;
- // bottom: 0px;
- // left: 230px;
- overflow-y: scroll;
- padding: 20px;
- .breadcrumb-container {
- //margin-bottom: 15px;
- .title {
- width: 200px;
- float: left;
- color: #475669;
- }
- .breadcrumb-inner {
- float: right;
- }
- }
- .content-wrapper {
- background-color: #fff;
- box-sizing: border-box;
- }
- }
- }
- }
- </style>
|