diff --git a/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue b/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue index c99b77ed..89c3b1b6 100644 --- a/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue +++ b/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue @@ -1204,7 +1204,8 @@ export default { .then((res) => { this.secondReviewList = res.Result.SecondReviewList if (this.secondReviewList.length > 0) { - this.secondReviewActiveName = this.secondReviewList.find(item => item.SignTime).SecondReviewTime + let data = this.secondReviewList.find(item => item.SignTime) || {} + this.secondReviewActiveName = data.SecondReviewTime if (!this.isAudit) { this.SecondReviewTime = this.secondReviewList[0].SecondReviewTime }