审查视图

src/views/Home.vue 17.7 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
                    <el-dropdown-menu slot="dropdown">
                        <el-dropdown-item>我的消息</el-dropdown-item>
xudada authored
17
                        <el-dropdown-item @click.native="editPass">修改密码</el-dropdown-item>
18 19 20 21 22
                        <el-dropdown-item divided @click.native="logout">退出登录</el-dropdown-item>
                    </el-dropdown-menu>
                </el-dropdown>
            </el-col>
        </el-col>
xudada authored
23 24 25 26 27 28 29
        <el-col>
            <el-dialog title="修改密码" :visible.sync="dialogFormVisible">
                <el-form :model="resetForm" status-icon :rules="resetFormRules" ref="resetForm" label-width="100px">
                    <el-form-item label="用户名" prop="name">
                        <span>{{sysUserName}}</span>
                    </el-form-item>
                    <el-form-item label="新密码" prop="newpwd">
xudada authored
30
                        <el-input type="password" v-model="resetForm.newpwd" autocomplete="off" placeholder="8-20位字符在数字、小写、大写字母以及特殊字符中四选三"></el-input>
xudada authored
31 32 33 34 35 36 37 38 39 40 41
                    </el-form-item>
                    <el-form-item label="确认密码" prop="renewpwd">
                        <el-input type="password" v-model="resetForm.renewpwd" auto-complete="off"></el-input>
                    </el-form-item>
                    <el-form-item>
                        <el-button type="primary" @click="submitEdit('resetForm')" style="float:right">提 交</el-button>
                    </el-form-item>

                </el-form>
            </el-dialog>
        </el-col>
42 43 44
        <el-col :span="24" class="main">
            <aside :class="collapsed?'menu-collapsed':'menu-expanded'">
                <!--导航菜单-->
45
                <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">
46 47 48
                    <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>
49
                            <el-menu-item v-for="child in item.children" :index="child.path" :key="child.path" v-if="!child.hidden">{{child.name}}</el-menu-item>
50
                        </el-submenu>
51
                        <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>
52 53 54 55 56 57
                    </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">
58 59 60
                            <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>
61 62 63 64
                            </ul>
                        </template>
                        <template v-else>
                    <li class="el-submenu">
65
                        <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>
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
                    </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
83
                <router-view :key="$route.path +$route.query.t"></router-view>
84 85 86 87 88 89
            </transition>
        </el-col>
    </div>
</section>
</el-col>
</el-row>
朱兆平 authored
90 91 92
</template>

<script>
93
    import rt from '../routes'
xudada authored
94 95
    import { editPass} from '../api/user';
    import ElFormItem from "element-ui/packages/form/src/form-item";
96
    export default {
朱兆平 authored
97 98 99 100 101 102

        provide() {
            return {
                reload: this.reload
            }
        },
xudada authored
103
        components: {ElFormItem},
104
        data() {
xudada authored
105 106 107
            var validatePass = (rule, value, callback) => {
                if (!value) {
                    callback(new Error('请输入新密码'));
xudada authored
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
                }else {
                    var ls=0;
                 if(value.match(/([a-z])+/)){
                        ls++;
                    } if(value.match(/([0-9])+/)){
                        ls++;
                    } if(value.match(/([A-Z])+/)){
                        ls++;
                    } if((/([\W])+/) && !value.match(/(![\u4E00-\u9FA5])+/)){
                        ls++;
                    }  if (value.toString().length < 8 || value.toString().length > 20) {
                        callback(new Error('密码长度为8 - 20个字符'));
                        ls=0;
                    } if(value.match(/([\u4E00-\u9FA5])+/)){
                        callback(new Error('不能包含中文字符'));
                        ls=0;
                    }
                    switch (ls) {
                        case 0: this.passwordPercent = 0;callback(new Error('数字、小写字母、大写字母以及特殊字符中四选三'));break;
                        case 1: this.passwordPercent = 33;callback(new Error('数字、小写字母、大写字母以及特殊字符中四选三'));break;
                        case 2: this.passwordPercent = 66;callback(new Error('数字、小写字母 、大写字母以及特殊字符中四选三'));break;
                        case 3:
                        case 4: this.passwordPercent = 100;break;
                        default: this.passwordPercent = 0;break;
                    }
xudada authored
133 134
                    callback();
                }
xudada authored
135
xudada authored
136
            };
xudada authored
137
xudada authored
138 139 140 141 142 143 144 145 146
            var validatePass2 = (rule, value, callback) => {
                if (value === '') {
                    callback(new Error('请再次输入密码'));
                } else if (value !== this.resetForm.newpwd) {
                    callback(new Error('两次输入密码不一致!'));
                } else {
                    callback();
                }
            };
147
            return {
148
                sysName:'易通快速通关申报管理系统',
149
                collapsed:false,
150
                sysUserName: '',
xudada authored
151
                sysUserId:'',
152
                sysUserAvatar: '',
朱兆平 authored
153
                isRouterAlive: true,
154 155 156 157 158 159 160 161 162
                form: {
                    name: '',
                    region: '',
                    date1: '',
                    date2: '',
                    delivery: false,
                    type: [],
                    resource: '',
                    desc: ''
xudada authored
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
                },
                dialogFormVisible:false,
                resetForm: {
                    newpwd: '',
                    renewpwd: '',
                },
                resetFormRules: {
                    newpwd: [
                        { required: true, validator: validatePass, trigger: 'blur' }
                    ],
                    renewpwd: [
                        { required: true, validator: validatePass2, trigger: 'blur' }
                    ]
                },
                editForm: {
                    userId: '',
                    password: '',
                },
181 182 183
            }
        },
        methods: {
朱兆平 authored
184 185 186 187 188 189 190 191 192 193
            reload() {
                this.$nextTick(function () {
                   this.$router.push({
                       path: this.$router.path,
                       query:{
                           t: new Date().getTime()
                       }
                   })
                })
            },
xudada authored
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
            editPass:function(){
                this.dialogFormVisible=true;
            },
            submitEdit(formName){
                this.$refs[formName].validate((valid) => {
                    if (valid) {
                        this.editForm.userId=this.sysUserId;
                        this.editForm.password=this.resetForm.renewpwd;
                        editPass(this.editForm).then(res=>{
                            let response=res.data;
                            if(response.code=='200'){
                                this.$notify({
                                    title: '密码修改成功',
                                    message: '密码修改成功,退出请重新登录',
                                    type: 'success'
                                });
                                this.dialogFormVisible=false;
                            }else{
                                this.$notify.error({
                                    title: '密码修改失败',
                                    message: '密码修改失败!!!'
                                });
                            }
                        });
                    } else {
                        console.log('error submit!!');
                        return false;
                    }
                });
            },
224 225 226 227 228 229 230 231 232 233
            onSubmit() {
                console.log('submit!');
            },
            handleopen() {
                console.log('handleopen');
            },
            handleclose() {
                console.log('handleclose');
            },
            handleselect: function (a, b) {
朱兆平 authored
234
                this.reload()
235 236 237 238 239 240 241 242
            },
            //退出登录
            logout: function () {
                var _this = this;
                this.$confirm('确认退出吗?', '提示', {
                    //type: 'warning'
                }).then(() => {
                    sessionStorage.removeItem('user');
243 244
                    sessionStorage.removeItem('menu');
                    //退出后初始化原来的路由
245 246
                    let sysRoutes =  JSON.parse(sessionStorage.getItem('sysMenu'));
                    console.log(sysRoutes);
247
                    _this.$router.options.routes = sysRoutes;
248
249 250
                    _this.$router.push('/login');
                }).catch(() => {
朱兆平 authored
251
252
                });
朱兆平 authored
253 254

255 256
            },
            //折叠导航栏
257 258
            collapse:function(){
                this.collapsed=!this.collapsed;
259
            },
260 261
            showMenu(i,status){
                this.$refs.menuCollapsed.getElementsByClassName('submenu-hook-'+i)[0].style.display=status?'block':'none';
262 263 264
            }
        },
        mounted() {
265
            var _this = this;
266 267 268 269
            var user = sessionStorage.getItem('user');
            if (user) {
                user = JSON.parse(user);
                this.sysUserName = user.username || '';
xudada authored
270
                this.sysUserId=user.userId||'';
271 272 273 274 275
                this.sysUserAvatar = user.userface || '/static/images/faceDefault.jpg';
            }
            //操作路由,判断本地存储的用户栏目列表是否存在,如果存在则加载路由
            var userRouters = sessionStorage.getItem('menu');
            if (userRouters) {
276
                userRouters = JSON.parse(userRouters);
277
                _this.$router.options.routes = userRouters;
278 279
                console.log("home:");
                console.log(_this.$router.options.routes);
280 281 282
            }
        }
    }
朱兆平 authored
283 284 285 286

</script>

<style scoped lang="scss">
287 288 289 290 291 292 293 294 295
    @import '~scss_vars';
    .container {
        position: absolute;
        top: 0px;
        bottom: 0px;
        width: 100%;
        .header {
            height: 60px;
            line-height: 60px;
朱兆平 authored
296
            background: $color-primary url("/static/images/air-banner.png");
297
            color:#fff;
298 299 300 301 302 303
            .userinfo {
                text-align: right;
                padding-right: 35px;
                float: right;
                .userinfo-inner {
                    cursor: pointer;
304
                    color:#fff;
305 306 307 308 309 310 311 312 313 314 315
                    img {
                        width: 40px;
                        height: 40px;
                        border-radius: 20px;
                        margin: 10px 0px 10px 10px;
                        float: right;
                    }
                }
            }
            .logo {
                //width:230px;
316
                height:60px;
317
                font-size: 22px;
318 319 320
                padding-left:20px;
                padding-right:20px;
                border-color: rgba(238,241,146,0.3);
321 322 323 324 325 326 327 328
                border-right-width: 1px;
                border-right-style: solid;
                img {
                    width: 40px;
                    float: left;
                    margin: 10px 10px 10px 18px;
                }
                .txt {
329
                    color:#fff;
330 331
                }
            }
332 333
            .logo-width{
                width:230px;
334
            }
335 336
            .logo-collapse-width{
                width:60px
337
            }
338
            .tools{
339
                padding: 0px 23px;
340
                width:14px;
341 342 343 344 345 346 347 348 349 350 351 352 353
                height: 60px;
                line-height: 60px;
                cursor: pointer;
            }
        }
        .main {
            display: flex;
            // background: #324057;
            position: absolute;
            top: 60px;
            bottom: 0px;
            overflow: hidden;
            aside {
354
                flex:0 0 230px;
355 356 357 358
                width: 230px;
                // position: absolute;
                // top: 0px;
                // bottom: 0px;
359 360 361
                .collapsed{
                    width:60px;
                    .item{
362 363
                        position: relative;
                    }
364 365 366 367 368 369 370
                    .submenu{
                        position:absolute;
                        top:0px;
                        left:60px;
                        z-index:99999;
                        height:auto;
                        display:none;
371 372 373 374
                    }

                }
            }
375 376
            .menu-collapsed{
                flex:0 0 60px;
377 378
                width: 60px;
            }
379 380
            .menu-expanded{
                flex:0 0 230px;
381 382
                width: 230px;
            }
383
            .menu-expanded ul{
384 385 386 387
                width: 230px;
            }
            .content-container {
                // background: #f1f2f7;
388
                flex:1;
389 390 391 392 393 394
                // position: absolute;
                // right: 0px;
                // top: 0px;
                // bottom: 0px;
                // left: 230px;
                overflow-y: scroll;
朱兆平 authored
395
                padding: 10px;
396 397 398 399 400 401
                .breadcrumb-container {
                    //margin-bottom: 15px;
                    .title {
                        width: 200px;
                        float: left;
                        color: #475669;
朱兆平 authored
402
                        margin-left: 10px;
403 404 405
                    }
                    .breadcrumb-inner {
                        float: right;
朱兆平 authored
406 407 408 409
                        margin-right:10px;
                    }
                    .el-breadcrumb{
                        line-height:36px;
410 411 412 413 414 415 416 417 418
                    }
                }
                .content-wrapper {
                    background-color: #fff;
                    box-sizing: border-box;
                }
            }
        }
    }
朱兆平 authored
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
</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;
                        }
                    }
                }
            }
        }
    }
457
</style>