diff --git a/core/frontend/src/components/canvas/components/editor/ComponentWrapper.vue b/core/frontend/src/components/canvas/components/editor/ComponentWrapper.vue index a6a7ba7096..f3ad7c68cf 100644 --- a/core/frontend/src/components/canvas/components/editor/ComponentWrapper.vue +++ b/core/frontend/src/components/canvas/components/editor/ComponentWrapper.vue @@ -387,6 +387,7 @@ export default { position: absolute; top: 0; left: 0; + z-index: 2; width: 100% !important; height: 100% !important; } diff --git a/core/frontend/src/components/deDrag/index.vue b/core/frontend/src/components/deDrag/index.vue index 546f5ca1f3..f005d035a2 100644 --- a/core/frontend/src/components/deDrag/index.vue +++ b/core/frontend/src/components/deDrag/index.vue @@ -2163,6 +2163,7 @@ export default { position: absolute; top: 0; left: 0; + z-index: 2; width: 100% !important; height: 100% !important; } diff --git a/core/frontend/src/store/index.js b/core/frontend/src/store/index.js index 7adc657223..91dece30ba 100644 --- a/core/frontend/src/store/index.js +++ b/core/frontend/src/store/index.js @@ -519,6 +519,14 @@ const data = { } else { 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') {