From d5594e87b2c328bd5cf90a9f31ce402b76cb0e35 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 19 Mar 2024 17:45:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E8=87=B4=E6=80=A7=E5=88=86=E6=9E=90?= =?UTF-8?q?=E5=8D=B3=E9=A6=96=E6=AC=A1=E8=87=AA=E8=BA=AB/=E7=BB=84?= =?UTF-8?q?=E9=97=B4=E4=B8=80=E8=87=B4=E6=80=A7=E5=88=86=E6=9E=90=E6=97=B6?= =?UTF-8?q?=E8=99=9A=E6=8B=9F=E4=B8=AD=E5=BF=83=E7=BC=96=E5=8F=B7=E5=8F=AF?= =?UTF-8?q?=E7=BC=96=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../consistency-analysis/components/ReaderRulesForm.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/trials/trials-panel/reading/consistency-analysis/components/ReaderRulesForm.vue b/src/views/trials/trials-panel/reading/consistency-analysis/components/ReaderRulesForm.vue index 4c429e70..951adaa8 100644 --- a/src/views/trials/trials-panel/reading/consistency-analysis/components/ReaderRulesForm.vue +++ b/src/views/trials/trials-panel/reading/consistency-analysis/components/ReaderRulesForm.vue @@ -29,7 +29,7 @@ - + @@ -125,6 +125,7 @@ export default { IsEnable: true, Note: '' }, + Result:{}, // 接口返回弹窗数据,用于虚拟中心可编辑校验 rules: { IsHaveReadingPeriod: [{ required: true, message: this.$t('common:ruleMessage:select'), trigger: 'blur' }], IsGenerateGlobalTask: [{ required: true, message: this.$t('common:ruleMessage:select'), trigger: 'blur' }], @@ -153,7 +154,8 @@ export default { TrialReadingCriterionId: this.TrialReadingCriterionId }).then(res => { if (res.Result) { - this.form = res.Result + this.form = res.Result; + this.Result = JSON.parse(JSON.stringify(res.Result)); } else { let o = this.trialCriterionList.find(v => { return v.TrialReadingCriterionId === this.TrialReadingCriterionId