qc质控文本格式更改

uat_us
caiyiling 2024-09-11 13:03:47 +08:00
parent 9402501c0b
commit 8abcfcbe1a
1 changed files with 3 additions and 7 deletions

View File

@ -1640,19 +1640,15 @@ export default {
this.qcForm.qcContent.forEach((item) => { this.qcForm.qcContent.forEach((item) => {
if (item.isSelect) { if (item.isSelect) {
types.push(`${item.keyName}`) types.push(`${item.keyName}`)
var str = `${item.keyName} <br>` var str = `${item.keyName}<br>`
if (item.keyValue) { if (item.keyValue) {
// //
str = `${str}${this.$t('trials:audit:form:questionSummary')}<br>${ str = `${str}${this.$t('trials:audit:form:questionSummary')}<br><div style='margin-left:20px'>${item.keyValue}</div>`
item.keyValue
}<br>`
} }
if (item.actionContent) { if (item.actionContent) {
// //
actions.push(`${item.actionContent}`) actions.push(`${item.actionContent}`)
str = `${str}${this.$t('trials:audit:form:actionMatters')}<br>${ str = `${str}${this.$t('trials:audit:form:actionMatters')}<br><div style='margin-left:20px'>${item.actionContent}</div>`
item.actionContent
}<br>`
} }
contents.push(str) contents.push(str)
} }