审查视图

src/views/Home.vue 12.4 KB
朱兆平 authored
1
<template>
朱兆平 authored
2
    <el-row class="container darkmenu" style="margin-top: 0px;">
3 4 5 6 7 8 9 10 11 12 13
        <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="fa fa-align-justify"></i>
                </div>
            </el-col>
            <el-col :span="4" class="userinfo">
                <el-dropdown trigger="hover">
14
                    <span class="el-dropdown-link userinfo-inner"><img :src="this.sysUserAvatar" /> {{sysUserName}}</span>
15 16 17 18 19 20 21 22 23 24 25
                    <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'">
                <!--导航菜单-->
26
                <el-menu :default-active="$route.path" class="el-menu-vertical-demo" @open="handleopen" @close="handleclose" @select="handleselect" unique-opened router v-show="!collapsed" style="min-width: 230px">
27 28 29
                    <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>
30
                            <el-menu-item v-for="child in item.children" :index="child.path" :key="child.path" v-if="!child.hidden">{{child.name}}</el-menu-item>
31
                        </el-submenu>
32
                        <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>
33 34 35 36 37 38
                    </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">
39 40 41
                            <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>
42 43 44 45
                            </ul>
                        </template>
                        <template v-else>
                    <li class="el-submenu">
46
                        <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>
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
                    </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">
朱兆平 authored
64
                <router-view :key="$route.path +$route.query.t"></router-view>
65 66 67 68 69 70
            </transition>
        </el-col>
    </div>
</section>
</el-col>
</el-row>
朱兆平 authored
71 72 73
</template>

<script>
74 75
    import rt from '../routes'
    export default {
朱兆平 authored
76 77 78 79 80 81

        provide() {
            return {
                reload: this.reload
            }
        },
82 83
        data() {
            return {
84
                sysName:'易通快速通关申报管理系统',
85
                collapsed:false,
86 87
                sysUserName: '',
                sysUserAvatar: '',
朱兆平 authored
88
                isRouterAlive: true,
89 90 91 92 93 94 95 96 97 98 99 100 101
                form: {
                    name: '',
                    region: '',
                    date1: '',
                    date2: '',
                    delivery: false,
                    type: [],
                    resource: '',
                    desc: ''
                }
            }
        },
        methods: {
朱兆平 authored
102 103 104 105 106 107 108 109 110 111
            reload() {
                this.$nextTick(function () {
                   this.$router.push({
                       path: this.$router.path,
                       query:{
                           t: new Date().getTime()
                       }
                   })
                })
            },
112 113 114 115 116 117 118 119 120 121
            onSubmit() {
                console.log('submit!');
            },
            handleopen() {
                console.log('handleopen');
            },
            handleclose() {
                console.log('handleclose');
            },
            handleselect: function (a, b) {
朱兆平 authored
122
                this.reload()
123 124 125 126 127 128 129 130
            },
            //退出登录
            logout: function () {
                var _this = this;
                this.$confirm('确认退出吗?', '提示', {
                    //type: 'warning'
                }).then(() => {
                    sessionStorage.removeItem('user');
131 132 133
                    sessionStorage.removeItem('menu');

                    //退出后初始化原来的路由
134 135
                    let sysRoutes =  JSON.parse(sessionStorage.getItem('sysMenu'));
                    console.log(sysRoutes);
136
                    _this.$router.options.routes = sysRoutes;
137
138 139
                    _this.$router.push('/login');
                }).catch(() => {
朱兆平 authored
140
141
                });
朱兆平 authored
142 143

144 145
            },
            //折叠导航栏
146 147
            collapse:function(){
                this.collapsed=!this.collapsed;
148
            },
149 150
            showMenu(i,status){
                this.$refs.menuCollapsed.getElementsByClassName('submenu-hook-'+i)[0].style.display=status?'block':'none';
151 152 153
            }
        },
        mounted() {
154
            var _this = this;
155 156 157 158 159 160 161 162 163
            var user = sessionStorage.getItem('user');
            if (user) {
                user = JSON.parse(user);
                this.sysUserName = user.username || '';
                this.sysUserAvatar = user.userface || '/static/images/faceDefault.jpg';
            }
            //操作路由,判断本地存储的用户栏目列表是否存在,如果存在则加载路由
            var userRouters = sessionStorage.getItem('menu');
            if (userRouters) {
164
                userRouters = JSON.parse(userRouters);
165
                _this.$router.options.routes = userRouters;
166 167
                console.log("home:");
                console.log(_this.$router.options.routes);
168 169 170
            }
        }
    }
朱兆平 authored
171 172 173 174

</script>

<style scoped lang="scss">
175 176 177 178 179 180 181 182 183
    @import '~scss_vars';
    .container {
        position: absolute;
        top: 0px;
        bottom: 0px;
        width: 100%;
        .header {
            height: 60px;
            line-height: 60px;
朱兆平 authored
184
            background: $color-primary url("/static/images/air-banner.png");
185
            color:#fff;
186 187 188 189 190 191
            .userinfo {
                text-align: right;
                padding-right: 35px;
                float: right;
                .userinfo-inner {
                    cursor: pointer;
192
                    color:#fff;
193 194 195 196 197 198 199 200 201 202 203
                    img {
                        width: 40px;
                        height: 40px;
                        border-radius: 20px;
                        margin: 10px 0px 10px 10px;
                        float: right;
                    }
                }
            }
            .logo {
                //width:230px;
204
                height:60px;
205
                font-size: 22px;
206 207 208
                padding-left:20px;
                padding-right:20px;
                border-color: rgba(238,241,146,0.3);
209 210 211 212 213 214 215 216
                border-right-width: 1px;
                border-right-style: solid;
                img {
                    width: 40px;
                    float: left;
                    margin: 10px 10px 10px 18px;
                }
                .txt {
217
                    color:#fff;
218 219
                }
            }
220 221
            .logo-width{
                width:230px;
222
            }
223 224
            .logo-collapse-width{
                width:60px
225
            }
226
            .tools{
227
                padding: 0px 23px;
228
                width:14px;
229 230 231 232 233 234 235 236 237 238 239 240 241
                height: 60px;
                line-height: 60px;
                cursor: pointer;
            }
        }
        .main {
            display: flex;
            // background: #324057;
            position: absolute;
            top: 60px;
            bottom: 0px;
            overflow: hidden;
            aside {
242
                flex:0 0 230px;
243 244 245 246
                width: 230px;
                // position: absolute;
                // top: 0px;
                // bottom: 0px;
247 248 249
                .collapsed{
                    width:60px;
                    .item{
250 251
                        position: relative;
                    }
252 253 254 255 256 257 258
                    .submenu{
                        position:absolute;
                        top:0px;
                        left:60px;
                        z-index:99999;
                        height:auto;
                        display:none;
259 260 261 262
                    }

                }
            }
263 264
            .menu-collapsed{
                flex:0 0 60px;
265 266
                width: 60px;
            }
267 268
            .menu-expanded{
                flex:0 0 230px;
269 270
                width: 230px;
            }
271
            .menu-expanded ul{
272 273 274 275
                width: 230px;
            }
            .content-container {
                // background: #f1f2f7;
276
                flex:1;
277 278 279 280 281 282
                // position: absolute;
                // right: 0px;
                // top: 0px;
                // bottom: 0px;
                // left: 230px;
                overflow-y: scroll;
朱兆平 authored
283
                padding: 10px;
284 285 286 287 288 289
                .breadcrumb-container {
                    //margin-bottom: 15px;
                    .title {
                        width: 200px;
                        float: left;
                        color: #475669;
朱兆平 authored
290
                        margin-left: 10px;
291 292 293
                    }
                    .breadcrumb-inner {
                        float: right;
朱兆平 authored
294 295 296 297
                        margin-right:10px;
                    }
                    .el-breadcrumb{
                        line-height:36px;
298 299 300 301 302 303 304 305 306
                    }
                }
                .content-wrapper {
                    background-color: #fff;
                    box-sizing: border-box;
                }
            }
        }
    }
朱兆平 authored
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
</style>
<style lang="scss">
    .darkmenu{
        .main {
            aside {
                .el-menu{
                    height: 100%;
                    background: #606060;
                    .el-menu-item {
                        i{
                            color: white;
                        }
                        color: white;
                    }
                    .el-menu-item.is-active{
                        color:#e6a23c;
                    }
                    .el-menu-item:hover,.el-menu-item:focus{
                        background-color: #1a4496;
                    }
                    .el-submenu {
                        ul.el-menu.el-menu--inline{
                            background: #303030;
                        }
                        .el-submenu__title {
                            color: white;
                            i{
                                color: white;
                            }
                        }
                        .el-submenu__title:hover {
                            background-color: #1a4496;
                        }
                    }
                }
            }
        }
    }
345
</style>