7.16 修复bug

This commit is contained in:
jl-zhoujl2
2023-07-16 21:47:12 +08:00
parent 133f159450
commit 0889ef8e0f
2 changed files with 2 additions and 2 deletions

View File

@ -1831,7 +1831,7 @@ const JudgingPanel: React.FC<{}> = () => {
count += 1;
}
}
if (count > 0) {
if ((count > 0) && reserveStatus) {
message.error(`请上传专家照片`);
loadingSet(false);
return;

View File

@ -1700,7 +1700,7 @@ const JudgingPanel: React.FC<{}> = (props: any) => {
count += 1;
}
}
if (count > 0) {
if ((count > 0) && reserveStatus) {
message.error(`请上传专家照片`);
loadingSet(false);
return;