Commit c1e0dc7f authored by neogcg's avatar neogcg

2.21

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