From 55a25caafdb989bf7eb8bd90e380be4fc2db610a Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Tue, 12 Nov 2024 09:36:53 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90issues/7413=E3=80=91=E5=90=88=E8=AE=A1?= =?UTF-8?q?=E8=A1=8C=E6=9C=89=E7=82=B9=E5=AF=B9=E4=B8=8D=E9=BD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jeecgboot-vue3/src/components/Table/src/BasicTable.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/jeecgboot-vue3/src/components/Table/src/BasicTable.vue b/jeecgboot-vue3/src/components/Table/src/BasicTable.vue index 7e11d7b8..33b1ddfe 100644 --- a/jeecgboot-vue3/src/components/Table/src/BasicTable.vue +++ b/jeecgboot-vue3/src/components/Table/src/BasicTable.vue @@ -222,7 +222,7 @@ // update-end--author:sunjianlei---date:220230630---for:【QQYUN-5571】自封装选择列,解决数据行选择卡顿问题 ); - const { getScrollRef, redoHeight } = useTableScroll(getProps, tableElRef, getColumnsRef, getRowSelectionRef, getDataSourceRef); + const { getScrollRef, redoHeight } = useTableScroll(getProps, tableElRef, getColumnsRef, getRowSelectionRef, getDataSourceRef, slots); const { customRow } = useCustomRow(getProps, { setSelectedRowKeys, @@ -605,7 +605,12 @@ .ant-table > .ant-table-footer { padding: 12px 0 0; } - + .ant-table > .ant-table-footer { + // update-begin--author:liaozhiyang---date:20241111---for:【issues/7413】合计行有点对不齐 + padding-left: 0 !important; + padding-right: 0 !important; + // update-end--author:liaozhiyang---date:20241111---for:【issues/7413】合计行有点对不齐 + } .ant-table.ant-table-bordered > .ant-table-footer { border: 0; }