|
|
@@ -496,7 +496,7 @@ export default {
|
|
|
},
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
- this.ids = selection.map((item) => item.teamId);
|
|
|
+ this.ids = selection.map((item) => item.pointId);
|
|
|
this.single = selection.length !== 1;
|
|
|
this.multiple = !selection.length;
|
|
|
},
|
|
|
@@ -557,7 +557,7 @@ export default {
|
|
|
handleDelete(row) {
|
|
|
const teamIds = row.pointId || this.ids;
|
|
|
this.$modal
|
|
|
- .confirm('是否确认删除隔离点编号为"' + teamIds + '"的数据项?')
|
|
|
+ .confirm('是否确认删除隔离点ID为"' + teamIds + '"的数据项?')
|
|
|
.then(function () {
|
|
|
return deleteIsIsolationPointByPointIds(teamIds);
|
|
|
})
|