From a426b9027ef524f9033d510d0c74cd17b2ad5bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=A0=E6=9C=A8?= Date: Mon, 23 Aug 2021 16:35:36 +0800 Subject: [PATCH] fix(table): fix table footer style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复表尾合计行可能与主体部分的列没有对齐的问题 fixed: #1112 --- CHANGELOG.zh_CN.md | 4 +++- src/components/Table/src/BasicTable.vue | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md index a85bff6e..59791bfa 100644 --- a/CHANGELOG.zh_CN.md +++ b/CHANGELOG.zh_CN.md @@ -7,7 +7,9 @@ - **CodeEditor** 修复 JSON 编辑器在格式化无效 JSON 文本时会抛出异常的问题 - **Tinymce** 修复 inline 模式在一些场景下会出现异常的问题 -- **BasicTable** 修复可编辑单元格的内容为空时,不会显示编辑图标的问题 +- **BasicTable** + - 修复可编辑单元格的内容为空时,不会显示编辑图标的问题 + - 修复表尾合计行与表格主体部分的列有时候未能对齐的问题 - **其它** - 修复部分封装组件在使用插槽时报错的问题 - 修复`useECharts`的`theme`参数不起作用的问题 diff --git a/src/components/Table/src/BasicTable.vue b/src/components/Table/src/BasicTable.vue index 903c095d..c5a74e79 100644 --- a/src/components/Table/src/BasicTable.vue +++ b/src/components/Table/src/BasicTable.vue @@ -413,7 +413,7 @@ .ant-table-body { overflow-x: hidden !important; - overflow-y: scroll !important; + // overflow-y: scroll !important; } td {