Compare commits

...

2 Commits

Author SHA1 Message Date
ibuler
ee3f15ea0a perf: 修复dialog 不能滚动问题 2021-09-22 17:02:01 +08:00
ibuler
76b53ddddf fix: 修复select2初始可能报错的bug
perf: 去掉debug
2021-09-18 15:03:11 +08:00
2 changed files with 1 additions and 7 deletions

View File

@@ -114,7 +114,7 @@ export default {
},
iValue: {
set(val) {
if (!val) {
if (!val || val.length === 0) {
return
}
this.$emit('input', val)

View File

@@ -458,9 +458,3 @@ a {
.el-table-filter__list-item:hover {
color: $--color-text-primary;
}
.el-dialog__wrapper {
display: flex;
align-items: center;
justify-content: center;
}