From 8abcfcbe1a17af0faa3603a3bf3e4e7f9616814a Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Wed, 11 Sep 2024 13:03:47 +0800 Subject: [PATCH] =?UTF-8?q?qc=E8=B4=A8=E6=8E=A7=E6=96=87=E6=9C=AC=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../visit/qc-check/components/qualityAssurance.vue | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) 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 38e72f9c..d79e3da8 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 @@ -1640,19 +1640,15 @@ export default { this.qcForm.qcContent.forEach((item) => { if (item.isSelect) { types.push(`${item.keyName}`) - var str = `${item.keyName}
` + var str = `${item.keyName}
` if (item.keyValue) { // 问题总结 - str = `${str}${this.$t('trials:audit:form:questionSummary')}:
${ - item.keyValue - }
` + str = `${str}${this.$t('trials:audit:form:questionSummary')}:
${item.keyValue}
` } if (item.actionContent) { // 行动事项 actions.push(`${item.actionContent}`) - str = `${str}${this.$t('trials:audit:form:actionMatters')}:
${ - item.actionContent - }
` + str = `${str}${this.$t('trials:audit:form:actionMatters')}:
${item.actionContent}
` } contents.push(str) }