refactor: 重构 bpmnProcessDesigner 组件 ele => antd

This commit is contained in:
puhui999
2025-09-14 18:16:02 +08:00
parent a277f0fa03
commit 71dd9f2d88
24 changed files with 3852 additions and 4451 deletions

View File

@@ -2,6 +2,7 @@
import { nextTick, onBeforeUnmount, ref, toRaw, watch } from 'vue';
import { Form, Input, Select } from 'ant-design-vue';
const { TextArea } = Input;
defineOptions({ name: 'FlowCondition' });
@@ -212,9 +213,9 @@ watch(
v-if="flowConditionForm.scriptType === 'inlineScript'"
key="body"
>
<Input
<TextArea
v-model:value="flowConditionForm.body"
:autosize="{ minRows: 2, maxRows: 6 }"
:auto-size="{ minRows: 2, maxRows: 6 }"
allow-clear
@change="updateFlowCondition"
/>