[update] 修改bug88448

This commit is contained in:
lideqin
2024-08-14 18:13:03 +08:00
parent f89b9432f9
commit 8534ffc3e0
@@ -305,8 +305,14 @@ export default {
*/ */
initRetractableFlag () { initRetractableFlag () {
this.retractableFlag = {} this.retractableFlag = {}
this.formPartList.forEach(key => { this.partList.forEach(key => {
this.retractableFlag[key] = true if (key === DisplayAreaManagement.PROCESS_DOCUMENTATION.text ||
key === DisplayAreaManagement.PROCESS_DOCUMENTATION.textEn) {
// 过程稿件默认收起
this.retractableFlag[key] = false
} else {
this.retractableFlag[key] = true
}
}) })
this.$forceUpdate() this.$forceUpdate()
}, },