chore: add modal

This commit is contained in:
jialin
2024-05-20 15:43:26 +08:00
parent eeab170970
commit 313da7a9d2
10 changed files with 361 additions and 86 deletions
+2
View File
@@ -39,6 +39,7 @@ const SealSelect: React.FC<SelectProps & SealFormItemProps> = (props) => {
};
const handleOnBlur = (e: any) => {
setIsFocus(false);
props.onBlur?.(e);
};
@@ -61,6 +62,7 @@ const SealSelect: React.FC<SelectProps & SealFormItemProps> = (props) => {
onBlur={handleOnBlur}
onSearch={handleOnSearch}
onChange={handleChange}
notFoundContent={null}
>
{children}
</Select>