Compare commits

..

No commits in common. "e6bd4576e6bcfa45dbd4152c780ac192fec975dd" and "9653e4478bece8b28881367a81075e17e37ccbd4" have entirely different histories.

1 changed files with 7 additions and 3 deletions

View File

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