@blur.native.capture //监听事件
<el-table-column prop="departmentLi" label="完成比例%" width="85px">
<template slot-scope="scope">
<el-input v-model="scope.row.departmentLi" placeholder="请输入完成比例"
@blur.native.capture="intNum(scope.row,scope.$index)"
:disabled="scope.row.status =='2'?true:false">
</el-table-column>
js方法
intNum(rowList,num){
//this.tableData 你的表格数据
var data = {} //要更新的内容
this.$set(this.tableData,num,data )
},