|
|
@ -134,7 +134,7 @@ |
|
|
|
<span>{{ status[scope.row.status] }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="随访队列" align="center" prop="" show-overflow-tooltip width="200"> |
|
|
|
<el-table-column fixed="right" label="随访队列" align="center" prop="" show-overflow-tooltip width="200"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div v-if="scope.row.queueVoList && scope.row.queueVoList.length"> |
|
|
|
{{ 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 |
|
|
|