We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0dcef4 commit 80c51e6Copy full SHA for 80c51e6
src/components/bpmnProcessDesigner/package/penal/form/ElementForm.vue
@@ -237,7 +237,7 @@ const props = defineProps({
237
const prefix = inject('prefix')
238
const width = inject('width')
239
240
-const formKey = ref('')
+const formKey = ref(undefined)
241
const businessKey = ref('')
242
const optionModelTitle = ref('')
243
const fieldList = ref<any[]>([])
@@ -462,6 +462,7 @@ const updateElementExtensions = () => {
462
const formList = ref([]) // 流程表单的下拉框的数据
463
onMounted(async () => {
464
formList.value = await FormApi.getFormSimpleList()
465
+ formKey.value = parseInt(formKey.value)
466
})
467
468
watch(
0 commit comments