UPDATE: 优化

This commit is contained in:
贾同学
2025-10-15 08:45:37 +08:00
parent 045acfa061
commit b0ca84c8fd

View File

@@ -208,11 +208,11 @@ const openDialog = () => {
dialogVisible.value = true
}
const beforeClose = (done: Function) => {
applicationFormRef.value.resetFields()
applicationFormRef.value?.resetFields()
done()
}
const cancel = () => {
applicationFormRef.value.resetFields()
applicationFormRef.value?.resetFields()
dialogVisible.value = false
}
const submitActivation = async () => {