feat:【antd】商品积分活动的 review

This commit is contained in:
YunaiV
2025-10-23 09:35:16 +08:00
parent ebc7aba637
commit 9abaf69df1
8 changed files with 56 additions and 109 deletions

View File

@@ -234,7 +234,9 @@ async function handleSubmit() {
// 校验表单
if (!formRef.value) return;
const valid = await formRef.value.validate();
if (!valid) return;
if (!valid) {
return;
}
// 提交请求
submitLoading.value = true;