Compare commits
2 Commits
9653e4478b
...
e6bd4576e6
Author | SHA1 | Date |
---|---|---|
|
e6bd4576e6 | |
|
8abcfcbe1a |
|
@ -1640,19 +1640,15 @@ 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>${
|
||||
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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue