feat(千行含有固定列的优化):

This commit is contained in:
wanghaoo 2018-09-14 13:54:28 +08:00
parent 0068267001
commit b464ef9e23
2 changed files with 3 additions and 2 deletions

View File

@ -264,7 +264,8 @@ var Table = function (_Component) {
this.contentWidth = numSetWidthParam; this.contentWidth = numSetWidthParam;
} else { } else {
//计算总表格宽度、根据表格宽度和各列的宽度和比较,重置最后一列 //计算总表格宽度、根据表格宽度和各列的宽度和比较,重置最后一列
this.contentWidth = this.contentTable.getBoundingClientRect().width; //表格宽度 this.contentDomWidth = this.contentTable.getBoundingClientRect().width; //表格容器宽度
this.contentWidth = this.contentDomWidth; //默认与容器宽度一样
if (typeof setWidthParam == 'string' && setWidthParam.indexOf('%')) { if (typeof setWidthParam == 'string' && setWidthParam.indexOf('%')) {
this.contentWidth = this.contentWidth * parseInt(setWidthParam) / 100; this.contentWidth = this.contentWidth * parseInt(setWidthParam) / 100;
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "bee-table", "name": "bee-table",
"version": "1.4.0", "version": "1.4.1",
"description": "Table ui component for react", "description": "Table ui component for react",
"keywords": [ "keywords": [
"react", "react",