adtec-core-package 2.6.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -80,6 +80,16 @@ const init = async (procDefId: string, procInstId: string) => {
|
|
|
80
80
|
ver.value.workflowCode === 'CompanyProjectApplyWorkflow' &&
|
|
81
81
|
ver.value.version === 4
|
|
82
82
|
) {
|
|
83
|
+
//调整显示
|
|
84
|
+
if (taskGroup.value.length) {
|
|
85
|
+
const find = taskGroup.value.find(item => item.parentExecutionId === 'node_c9zht:2025-11-19 15:44:56')
|
|
86
|
+
if (find) {
|
|
87
|
+
const task = find.tasks.filter(item => item.businessId === '1963833051911258114')
|
|
88
|
+
task[0].comment = ''
|
|
89
|
+
task[0].finishTime = undefined
|
|
90
|
+
find.tasks = task
|
|
91
|
+
}
|
|
92
|
+
}
|
|
83
93
|
if (taskGroup.value.length) {
|
|
84
94
|
// 判断taskGroup.value中的专家预审的位置index
|
|
85
95
|
const expertPretrialIndex = taskGroup.value.findIndex(
|