Skip to content

Commit

Permalink
bugfix: 修复表格内tag blur事件不生效的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
luofann committed Oct 10, 2023
1 parent 58a6518 commit dad3fb6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
:parent-value="scope.row"
@init="onInitColumn(scope.$index, cIndex, ...arguments)"
@change="onEditColumn(scope.$index, cIndex, ...arguments)"
@blur="onColumnInputBlur(scope.$index, ...arguments)">
@blur="onColumnInputBlur(scope.$index, cIndex, ...arguments)">
</component>
</template>
</el-table-column>
Expand Down Expand Up @@ -570,8 +570,8 @@
this.$set(this.tableValue[this.editRowNumber], field, val)
this.triggerSameRowEvent('change', row, col, val)
},
onColumnInputBlur (scope, val) {
this.triggerSameRowEvent('blur', scope.$index, scope.column.index, val)
onColumnInputBlur (row, col, val) {
this.triggerSameRowEvent('blur', row, col, val)
},
onDelete (index, row) {
if (this.pagination) {
Expand Down

0 comments on commit dad3fb6

Please sign in to comment.