#ICBR4R 管理员流程变量修改功能

This commit is contained in:
dyd
2025-06-26 09:41:22 +08:00
parent 00e9af75f6
commit 4c960b558c
9 changed files with 1258 additions and 3 deletions

View File

@ -18,9 +18,12 @@
<a-tab-pane :key="6" :tab="t('审批记录')">
<AuditRecord :processId="processId" :schemaId="schemaId" :xml="xml" />
</a-tab-pane>
<a-tab-pane :key="7 + index" v-for="(item, index) in predecessorTasks" :tab="item.schemaName">
<a-tab-pane :key="7" :tab="t('流程变量')">
<ProcVarPage :processId="processId" :schemaId="schemaId" :xml="xml" />
</a-tab-pane>
<a-tab-pane :key="8 + index" v-for="(item, index) in predecessorTasks" :tab="item.schemaName">
<LookRelationTask
v-if="activeKey === 7 + index"
v-if="activeKey === 8 + index"
:taskId="item.taskId"
:processId="item.processId"
position="left"
@ -38,7 +41,8 @@
import { SchemaTaskItem } from '/@/model/workflow/bpmnConfig';
import { useI18n } from '/@/hooks/web/useI18n';
import ChangeRecord from '/@/views/formChange/formChangeLog/index.vue';
import AuditRecord from '/@/views/auditOpt/auditRecord/index.vue'
import AuditRecord from '/@/views/auditOpt/auditRecord/index.vue';
import ProcVarPage from '/@/views/editProVar/procVarManage/index.vue';
const { t } = useI18n();
let props = withDefaults(
defineProps<{