|
|
|
@ -24,6 +24,11 @@ |
|
|
|
<div>{{ dddw(resultStatus, 'id', scope.row.resultStatusId, 'dataInputPrompt') }}</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="criticalFlag" label="危急" width="40" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-checkbox v-model="scope.row.criticalFlag" size="small" true-label="Y" false-label="N" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
|
|
|
|
<!--弹窗--> |
|
|
|
@ -469,6 +474,12 @@ export default { |
|
|
|
.then((res) => { |
|
|
|
// console.log("checkItemList", res.data); |
|
|
|
if (res && res.code > -1) { |
|
|
|
|
|
|
|
res.data.forEach((e, i) => { |
|
|
|
// 虚拟显示危急状态 |
|
|
|
e['criticalFlag'] = 'N' |
|
|
|
}); |
|
|
|
|
|
|
|
this.doctorCheck.checkItemList = res.data; |
|
|
|
this.doctorCheck.checkItemList.forEach((e, i) => { |
|
|
|
if (this.doctorCheck.RegisterCheckEdit.completeFlag == '0') { |
|
|
|
|