fix:校验报名审批接口调整

This commit is contained in:
zxj
2025-12-11 23:35:54 +08:00
parent f83438e97d
commit 8a3fe68a33

View File

@@ -142,7 +142,11 @@ export default {
// 报名按钮点击 // 报名按钮点击
async handleEnrollClick() { async handleEnrollClick() {
if (this.approvalResults == "1" || this.approvalResults == "4") { if (
!this.approvalResults ||
this.approvalResults == "1" ||
this.approvalResults == "4"
) {
this.enrollLoading = true; this.enrollLoading = true;
try { try {
const res = await enrollRequest(); const res = await enrollRequest();