解决左侧固定列滚动到底不对齐

This commit is contained in:
cw 2019-08-13 20:01:30 +08:00
parent e65f4cec38
commit 0613edbc05
7 changed files with 177247 additions and 172357 deletions

View File

@ -462,7 +462,7 @@ var Table = function (_Component) {
this.domWidthDiff = this.contentDomWidth - this.contentWidth; this.domWidthDiff = this.contentDomWidth - this.contentWidth;
} }
if (this.computeWidth < this.contentWidth) { if (this.computeWidth <= this.contentWidth) {
var contentWidthDiff = this.scrollbarWidth ? this.contentWidth - this.computeWidth - this.scrollbarWidth : this.contentWidth - this.computeWidth; var contentWidthDiff = this.scrollbarWidth ? this.contentWidth - this.computeWidth - this.scrollbarWidth : this.contentWidth - this.computeWidth;
//bordered的表格需要减去边框的差值1 //bordered的表格需要减去边框的差值1
if (this.props.bordered) { if (this.props.bordered) {

File diff suppressed because one or more lines are too long

2
dist/demo.css.map vendored

File diff suppressed because one or more lines are too long

343806
dist/demo.js vendored

File diff suppressed because one or more lines are too long

2
dist/demo.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -298,7 +298,7 @@ class Table extends Component {
this.domWidthDiff = this.contentDomWidth - this.contentWidth; this.domWidthDiff = this.contentDomWidth - this.contentWidth;
} }
if (this.computeWidth < this.contentWidth) { if (this.computeWidth <= this.contentWidth) {
let contentWidthDiff = this.scrollbarWidth?this.contentWidth - this.computeWidth-this.scrollbarWidth:this.contentWidth - this.computeWidth; let contentWidthDiff = this.scrollbarWidth?this.contentWidth - this.computeWidth-this.scrollbarWidth:this.contentWidth - this.computeWidth;
//bordered的表格需要减去边框的差值1 //bordered的表格需要减去边框的差值1
if(this.props.bordered){ if(this.props.bordered){