|
|
@ -683,6 +683,7 @@ export default { |
|
|
isCriticalValueAudit:this.tableData.isCriticalValueAudit, |
|
|
isCriticalValueAudit:this.tableData.isCriticalValueAudit, |
|
|
isReview:this.tableData.isReview |
|
|
isReview:this.tableData.isReview |
|
|
}).then(res => { |
|
|
}).then(res => { |
|
|
|
|
|
this.doctorCheck.RegisterCheckEdit.isCriticalValue=this.tableData.isCriticalValue |
|
|
this.dialogWin.FollowCriticalCheck = false |
|
|
this.dialogWin.FollowCriticalCheck = false |
|
|
this.tableData=this.$options.data.tableData |
|
|
this.tableData=this.$options.data.tableData |
|
|
}) |
|
|
}) |
|
|
@ -696,6 +697,13 @@ export default { |
|
|
isReview:this.tableData.isReview, |
|
|
isReview:this.tableData.isReview, |
|
|
itemId:this.tableData.itemId |
|
|
itemId:this.tableData.itemId |
|
|
}).then(res => { |
|
|
}).then(res => { |
|
|
|
|
|
for(let i=0;i<this.doctorCheck.checkItemList.length;i++){ |
|
|
|
|
|
console.log(this.doctorCheck.checkItemList[i]) |
|
|
|
|
|
if(this.doctorCheck.checkItemList[i].itemId==this.tableData.itemId){ |
|
|
|
|
|
this.doctorCheck.checkItemList[i].isCriticalValue=this.tableData.isCriticalValue |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
this.dialogWin.FollowCriticalCheck = false |
|
|
this.dialogWin.FollowCriticalCheck = false |
|
|
this.tableData=this.$options.data.tableData |
|
|
this.tableData=this.$options.data.tableData |
|
|
}) |
|
|
}) |
|
|
|