Skip to content

Commit f6b5b8e

Browse files
author
黄书伟
committed
fixed bug
1 parent 4faa628 commit f6b5b8e

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

examples/doc/updateLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
2017-12-4(未发布)
22
1、修复 table 组件 固定左列偶尔无法触发滚动事件的bug
33
2、优化 table 组件 当有纵向自适应时并设置了最小高度时,表格内容高度小于‘最小高度’则以表格内容高度为准
4+
3、修复 table 组件 数据变化合并单元格样式错乱的问题 #60
45

56
2017-12-1
67
1、修复 table 组件左侧固定列绑定滚动事件失效的问题

libs/v-table/src/table.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -835,6 +835,8 @@
835835
836836
handler: function (newVal) {
837837
838+
this.skipRenderCells = [];
839+
838840
this.internalTableData = this.initInternalTableData(newVal);
839841
840842
this.updateCheckboxGroupModel();

packages/v-table/src/table.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -835,6 +835,8 @@
835835
836836
handler: function (newVal) {
837837
838+
this.skipRenderCells = [];
839+
838840
this.internalTableData = this.initInternalTableData(newVal);
839841
840842
this.updateCheckboxGroupModel();

umd/js/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)