{{ scope.row.queueVoList.map((i) => i.queueName).join(",") }}
@@ -1193,7 +1193,7 @@
handleUpdate(row) {
this.open = true;
this.title = "修改诊疗档案";
- let queueList = row.queueVoList.map((item) => item.queueId);
+ let queueList = row.queueVoList?.map((item) => item.queueId) || [];
this.form = {
...JSON.parse(JSON.stringify(row)),
queueIdList: queueList