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) => { 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><div style='margin-left:20px'>${item.keyValue}</div>` str = `${str}${this.$t('trials:audit:form:questionSummary')}<br>${
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><div style='margin-left:20px'>${item.actionContent}</div>` str = `${str}${this.$t('trials:audit:form:actionMatters')}<br>${
item.actionContent
}<br>`
} }
contents.push(str) contents.push(str)
} }