调整字典及发布

This commit is contained in:
筱野
2025-09-18 22:26:55 +08:00
parent c096d265ab
commit 81898de75d
9 changed files with 145 additions and 74 deletions

View File

@@ -96,8 +96,8 @@ const FormBasicInfo: React.FC<FormBasicInfoProps> = ({
onChange({...value, [key]: ''});
return;
}
if (numValue < 0) {
onChange({...value, [key]: '0'});
if (numValue <= 0) {
onChange({...value, [key]: '1'});
return;
}
if (numValue > 9999.99) {