Browse Source

【issues/7413】合计行有点对不齐

pull/7333/merge
JEECG 1 week ago
parent
commit
55a25caafd
  1. 9
      jeecgboot-vue3/src/components/Table/src/BasicTable.vue

9
jeecgboot-vue3/src/components/Table/src/BasicTable.vue

@ -222,7 +222,7 @@
// update-end--author:sunjianlei---date:220230630---forQQYUN-5571 // update-end--author:sunjianlei---date:220230630---forQQYUN-5571
); );
const { getScrollRef, redoHeight } = useTableScroll(getProps, tableElRef, getColumnsRef, getRowSelectionRef, getDataSourceRef); const { getScrollRef, redoHeight } = useTableScroll(getProps, tableElRef, getColumnsRef, getRowSelectionRef, getDataSourceRef, slots);
const { customRow } = useCustomRow(getProps, { const { customRow } = useCustomRow(getProps, {
setSelectedRowKeys, setSelectedRowKeys,
@ -605,7 +605,12 @@
.ant-table > .ant-table-footer { .ant-table > .ant-table-footer {
padding: 12px 0 0; padding: 12px 0 0;
} }
.ant-table > .ant-table-footer {
// update-begin--author:liaozhiyang---date:20241111---forissues/7413
padding-left: 0 !important;
padding-right: 0 !important;
// update-end--author:liaozhiyang---date:20241111---forissues/7413
}
.ant-table.ant-table-bordered > .ant-table-footer { .ant-table.ant-table-bordered > .ant-table-footer {
border: 0; border: 0;
} }

Loading…
Cancel
Save