diff --git a/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue b/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue index 70f29157..970ee285 100644 --- a/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue +++ b/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue @@ -117,7 +117,7 @@ export default { }) this.form.IsOpenLostVistRead = res.Result.IsOpenLostVistRead this.form.IsSupportQCDownloadImage = res.Result.IsSupportQCDownloadImage - this.form.IsCloseEquipmentSurvey = res.Result.IsCloseEquipmentSurvey + this.form.IsCloseEquipmentSurvey = !res.Result.IsCloseEquipmentSurvey if (Array.isArray(res.Result.NotShowFieldList) && res.Result.NotShowFieldList.length > 0) { res.Result.NotShowFieldList.forEach(key => { this.form[key] = false @@ -164,7 +164,7 @@ export default { let data = { IsOpenLostVistRead: this.form.IsOpenLostVistRead, IsSupportQCDownloadImage: this.form.IsSupportQCDownloadImage, - IsCloseEquipmentSurvey: this.form.IsCloseEquipmentSurvey, + IsCloseEquipmentSurvey: !this.form.IsCloseEquipmentSurvey, ModifyFiledList: [], NotShowFieldList: [] }