pull/101/head
xiaojunnuo 2024-07-08 11:29:11 +08:00
parent 5ba9831ed1
commit ed8a54a2bc
2 changed files with 4 additions and 1 deletions

View File

@ -97,7 +97,6 @@ async function changePassword() {
const formOptions = buildFormOptions(passwordFormOptions);
formOptions.newInstance = true; //
passwordFormRef.value = await openDialog(formOptions);
debugger;
console.log(passwordFormRef.value);
}
</script>

View File

@ -222,6 +222,10 @@ export default {
);
}
}
//
if (input.default != null && currentStep.value.input[key] == null) {
currentStep.value.input[key] = input.default ?? input.value;
}
}
}