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

@ -1643,16 +1643,12 @@ export default {
var str = `${item.keyName}<br>`
if (item.keyValue) {
//
str = `${str}${this.$t('trials:audit:form:questionSummary')}<br>${
item.keyValue
}<br>`
str = `${str}${this.$t('trials:audit:form:questionSummary')}<br><div style='margin-left:20px'>${item.keyValue}</div>`
}
if (item.actionContent) {
//
actions.push(`${item.actionContent}`)
str = `${str}${this.$t('trials:audit:form:actionMatters')}<br>${
item.actionContent
}<br>`
str = `${str}${this.$t('trials:audit:form:actionMatters')}<br><div style='margin-left:20px'>${item.actionContent}</div>`
}
contents.push(str)
}