Commit c1e0dc7f authored by neogcg's avatar neogcg

2.21

parent 09238138
......@@ -111,7 +111,7 @@ export default {
}
.right-menu {
float: right;
// float: right;
height: 100%;
line-height: 50px;
position: absolute;
......
......@@ -140,6 +140,7 @@ export default {
}
.el-menu .el-menu--popup .el-menu--popup-bottom-start ::v-deep{
width: 1020px;
}
</style>
......@@ -58,8 +58,8 @@ export default {
.frame-menu {
padding-left: 30px;
border: none;
height: 55px;
// width: 100% !important;
height: 56px;
width: 100% !important;
white-space: nowrap;
&.el-menu--horizontal {
border-bottom: none !important;
......
......@@ -98,7 +98,7 @@
}
.main-container {
margin-left: 54px;
margin-left: 0px;
}
.submenu-title-noDropdown {
......@@ -122,20 +122,20 @@
overflow: hidden;
&>.el-submenu__title {
padding: 0 !important;
// padding: 0 !important;
.svg-icon {
margin-left: 20px;
}
// .svg-icon {
// margin-left: 20px;
// }
.sub-el-icon {
margin-left: 19px;
}
.el-submenu__icon-arrow {
color: #fff;
display: none;
}
// .el-submenu__icon-arrow {
// color: #fff;
// display: none;
// }
}
}
.el-menu--collapse {
......
......@@ -121,6 +121,16 @@ export default {
immediate: true,
},
},
created() {
var that = this;
document.onkeydown = function(e) {
var key = window.event.keyCode;
if (key == 13 || key == 100) {
that.handleLogin()
}
};
},
methods: {
showPwd() {
if (this.passwordType === "password") {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment