stylr:mibBrowser 小窗口下的样式调整

This commit is contained in:
zhangyu
2022-08-01 10:44:18 +08:00
parent 9a9dc50938
commit 8dbfeb6d75
3 changed files with 8 additions and 4 deletions

View File

@@ -68,9 +68,12 @@
.mib-browser-left {
height: 100%;
width: 28%;
min-width: 260px;
display: flex;
flex-direction: column;
}
.mib-browser-tree {
height: calc(69% - 40px);
flex: 1;
background-color: $--background-color-empty;
border-radius: 4px 0 0 0;
font-size: 14px;
@@ -80,6 +83,7 @@
}
.mib-browser-detail {
height: 31%;
min-height: 260px;
width: 100%;
}
.el-scrollbar__wrap .el-scrollbar__view, .el-scrollbar__wrap, .el-tree {
@@ -140,7 +144,7 @@
padding: 0 14px 0 0;
}
.mib-browser-right {
width: calc(72% - 4px);
flex: 1;
height: 100%;
.plTableBox.mib-browser-table {
.el-table__body-wrapper {

View File

@@ -137,7 +137,7 @@ export default {
if (value === '' && this.editUser.pin) {
callback(new Error(this.$t('config.user.reinputPin')))
} else if (value !== this.editUser.pin) {
callback(new Error(this.$t('profile.confirmPasswordErr')))
callback(new Error(this.$t('profile.confirmPasswordError')))
} else {
callback()
}

View File

@@ -45,7 +45,7 @@ export default {
if (value && value != '' && value == temp.user.newPin) {
callback()
} else {
callback(new Error(temp.$t('profile.confirmPasswordErr')))
callback(new Error(temp.$t('profile.confirmPasswordError')))
}
}
return {