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) }