diff --git a/src/views/system/poser/index.vue b/src/views/system/poser/index.vue index 77a2f9e..67cd7b1 100644 --- a/src/views/system/poser/index.vue +++ b/src/views/system/poser/index.vue @@ -956,7 +956,6 @@ export default { }, // 多选框选中数据 handleSelectionChange(selection) { - console.log(selection); this.ids = selection.map((item) => item.nurseStationId); this.itemids = selection.map((item) => item.nurseItemId); this.Types = selection.map((item) => item.moduleType); @@ -973,7 +972,7 @@ export default { handleUpdate(row) { this.reset(); const id = row.nurseStationId || this.ids; - const itemid = row.nurseStationId || this.ids; + const itemid = row.nurseItemId || this.itemids; const type = row.moduleType || this.Types; getPoser(type, id, itemid).then((response) => { this.form = response.data;