【代码优化】Bpm:更多设置-流程编码

This commit is contained in:
YunaiV
2025-01-20 12:33:28 +08:00
parent e6765b7e61
commit 0677173856
2 changed files with 2 additions and 1 deletions

View File

@ -119,7 +119,7 @@ const numberExample = computed(() => {
} }
}) })
// 兼容以前未配置更多设置的流程 /** 兼容以前未配置更多设置的流程 */
const initData = () => { const initData = () => {
if (!modelData.value.processIdRule) { if (!modelData.value.processIdRule) {
modelData.value.processIdRule = { modelData.value.processIdRule = {

View File

@ -196,6 +196,7 @@ const initData = async () => {
// 最终,设置 currentStep 切换到第一步 // 最终,设置 currentStep 切换到第一步
currentStep.value = 0 currentStep.value = 0
// 兼容,以前未配置更多设置的流程
extraSettingsRef.value.initData() extraSettingsRef.value.initData()
} }