fix:从接口重新获取报名状态

This commit is contained in:
zxj
2025-12-22 12:11:20 +08:00
parent 2f4615f9ba
commit ad6569e6b4

View File

@@ -400,7 +400,9 @@ export default {
);
} else {
this.$refs.customMessage.show("您已重新报名成功");
this.approvalResults = 2;
const res = await getWelcomeData();
// 1报名失败、2审核中、3审核通过、4审核失败
this.approvalResults = res.data.approvalResults;
}
});
},