|
|
@@ -255,6 +255,7 @@
|
|
|
<bpmn-formrender
|
|
|
:visible="orverDialogFormVisible"
|
|
|
:instance-id="instanceId"
|
|
|
+ :processName="processName"
|
|
|
@callback="getOrver()"
|
|
|
@close="visible => (orverDialogFormVisible = visible)"
|
|
|
/>
|
|
|
@@ -652,6 +653,9 @@
|
|
|
},
|
|
|
// 获取检测流程对应的检测项目名称
|
|
|
getProjectName(v) {
|
|
|
+ if (!this.testingList.length) {
|
|
|
+ this.testingList = this.$store.getters.testingList
|
|
|
+ }
|
|
|
let res = this.testingList.find(item => item.processKey === v)
|
|
|
return res ? res.name : ''
|
|
|
}
|