1.修复上传业务单据类型列表无法移除单据类型问题

prod
x_z 3 years ago
parent 49efd81d56
commit cfe6ad73e7

@ -260,7 +260,7 @@
<el-table-column label="操作" fixed="right">
<template slot-scope="scope">
<el-button type="text" size="small" :disabled="configQuery.downstreamEnable"
@click.native="remveBus(scope.$index, scope.row)">移除
@click.native="removeChangeBus(scope.$index, scope.row)">移除
</el-button>
</template>
</el-table-column>
@ -590,6 +590,9 @@ export default {
checkSelectableChange(row) {
return !row.isSelect;
},
removeChangeBus(index, row) {
this.checkedChangeBusTypes.splice(index, 1);
},
},
created() {
this.headers = {

Loading…
Cancel
Save