qc质控文本格式更改
parent
9402501c0b
commit
8abcfcbe1a
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue