Commit e399c5e9072ac1416ce83ce1b5cb49f285cdaaea
1 parent
95e1720c
remove console.log
Showing
1 changed file
with
0 additions
and
3 deletions
Show diff stats
src/components/table/mixin.js
... | ... | @@ -25,9 +25,6 @@ export default { |
25 | 25 | width = this.columnsWidth[column._index].width; |
26 | 26 | } |
27 | 27 | // when browser has scrollBar,set a width to resolve scroll position bug |
28 | - if(this.columns.length==7 && column.fixed){ | |
29 | - console.log(column); | |
30 | - } | |
31 | 28 | if (width && this.columns.length === index + 1 && top && this.$parent.bodyHeight !== 0 && column.fixed!=='left' && !this.fixed) { |
32 | 29 | let scrollBarWidth = this.$parent.scrollBarWidth; |
33 | 30 | if (!this.$parent.showVerticalScrollBar) scrollBarWidth = 0; | ... | ... |