refactor: 调整过滤组件边框图层层级,优化外部参数优先级

This commit is contained in:
wangjiahao 2023-11-28 17:36:35 +08:00
parent 81d9941794
commit 09f2a70173
3 changed files with 10 additions and 0 deletions

View File

@ -387,6 +387,7 @@ export default {
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
z-index: 2;
width: 100% !important; width: 100% !important;
height: 100% !important; height: 100% !important;
} }

View File

@ -2163,6 +2163,7 @@ export default {
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
z-index: 2;
width: 100% !important; width: 100% !important;
height: 100% !important; height: 100% !important;
} }

View File

@ -519,6 +519,14 @@ const data = {
} else { } else {
element.options.value = paramValueStr element.options.value = paramValueStr
} }
// 去掉动态时间
if (element.options.manualModify) {
element.options.manualModify = false
}
// 去掉首选项
if (element.options?.attr?.selectFirst) {
element.options.attr.selectFirst = false
}
} }
}) })
if (element.type === 'view') { if (element.type === 'view') {