This commit is contained in:
=
2026-05-15 17:59:39 +08:00
parent 1406ad264f
commit 5e4ebfda32
@@ -388,9 +388,16 @@ const singleSignUp = {
}, },
//再次报名 //再次报名
onConfirmAgain() { async onConfirmAgain() {
if (this.isCustomForm && this.fapi) { if (this.isCustomForm && this.fapi) {
console.log(this.fapi.validate()) let formValid = false
try {
await this.fapi.validate()
formValid = true
} catch (e) {
formValid = false
}
if (!formValid) return
} }
//组队 //组队