fix(web): ui upgrade

This commit is contained in:
zhaoying
2026-03-25 13:58:25 +08:00
parent 9df41456f6
commit 2b9fd33bc8
42 changed files with 223 additions and 191 deletions

View File

@@ -2,7 +2,7 @@
* @Author: ZhaoYing
* @Date: 2026-02-02 15:24:23
* @Last Modified by: ZhaoYing
* @Last Modified time: 2026-03-23 11:35:33
* @Last Modified time: 2026-03-25 11:15:26
*/
/**
* SearchInput Component
@@ -51,6 +51,7 @@ const SearchInput: FC<SearchInputProps> = ({
throttleDelay,
defaultValue = undefined,
className = '',
variant = 'filled',
...props
}) => {
const { t } = useTranslation();
@@ -115,7 +116,8 @@ const SearchInput: FC<SearchInputProps> = ({
value={value}
onChange={handleChange}
style={{ width: '300px' }}
className={`rb:border-none! ${className}`}
className={className}
variant={variant}
{...props}
/>
);