From fc57c03cda160e2e7ff8664b288123ecbfad14fc Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Thu, 20 Mar 2025 17:17:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../custom-component/v-query/QueryConditionConfiguration.vue | 5 ++++- core/core-frontend/src/style/index.less | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue b/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue index b8e589582d..d9bb3935f1 100644 --- a/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue +++ b/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue @@ -2350,7 +2350,10 @@ defineExpose({ 'active' " class="list-item_primary list-tree_primary" - :style="{ top: 40 * (index + 1) + 'px' }" + :style="{ + top: 40 * (index + 1) + 'px', + paddingLeft: 32 + 16 * (index + 1) + 'px' + }" v-for="(itx, index) in element.treeFieldList.slice(1)" :key="itx.field" @click.stop="notCurrentEle(element, index + 1)" diff --git a/core/core-frontend/src/style/index.less b/core/core-frontend/src/style/index.less index 5c99e834a8..4d2ccb9501 100644 --- a/core/core-frontend/src/style/index.less +++ b/core/core-frontend/src/style/index.less @@ -677,3 +677,7 @@ strong { margin-bottom: 8px !important; } } + +.ed-month-table td { + padding: 8px 0 !important; +}