mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-vue3
synced 2025-08-08 16:32:43 +08:00
fix:【BPM 工作流】支持 BPMN 延迟修改后,直接更新到 BPMN XML 里
This commit is contained in:
parent
f28778723d
commit
75220bfd8e
@ -28,7 +28,12 @@
|
|||||||
v-model="timeDuration"
|
v-model="timeDuration"
|
||||||
:min="1"
|
:min="1"
|
||||||
controls-position="right"
|
controls-position="right"
|
||||||
@change="() => updateTimeModdle()"
|
@change="
|
||||||
|
() => {
|
||||||
|
updateTimeModdle()
|
||||||
|
updateElementExtensions()
|
||||||
|
}
|
||||||
|
"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-select
|
<el-select
|
||||||
@ -55,7 +60,12 @@
|
|||||||
v-model="maxRemindCount"
|
v-model="maxRemindCount"
|
||||||
:min="1"
|
:min="1"
|
||||||
:max="10"
|
:max="10"
|
||||||
@change="() => updateTimeModdle()"
|
@change="
|
||||||
|
() => {
|
||||||
|
updateTimeModdle()
|
||||||
|
updateElementExtensions()
|
||||||
|
}
|
||||||
|
"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
@ -65,7 +75,7 @@
|
|||||||
import {
|
import {
|
||||||
TimeUnitType,
|
TimeUnitType,
|
||||||
TIME_UNIT_TYPES,
|
TIME_UNIT_TYPES,
|
||||||
TIMEOUT_HANDLER_TYPES,
|
TIMEOUT_HANDLER_TYPES
|
||||||
} from '@/components/SimpleProcessDesignerV2/src/consts'
|
} from '@/components/SimpleProcessDesignerV2/src/consts'
|
||||||
import { convertTimeUnit } from '@/components/SimpleProcessDesignerV2/src/utils'
|
import { convertTimeUnit } from '@/components/SimpleProcessDesignerV2/src/utils'
|
||||||
|
|
||||||
@ -195,6 +205,7 @@ const onTimeUnitChange = () => {
|
|||||||
timeDuration.value = 1
|
timeDuration.value = 1
|
||||||
}
|
}
|
||||||
updateTimeModdle()
|
updateTimeModdle()
|
||||||
|
updateElementExtensions()
|
||||||
}
|
}
|
||||||
|
|
||||||
const updateTimeModdle = () => {
|
const updateTimeModdle = () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user