修改发布

This commit is contained in:
筱野
2025-08-23 21:39:46 +08:00
parent 8bc2fa8d97
commit c6f4f11259
29 changed files with 384 additions and 241 deletions

View File

@@ -24,6 +24,7 @@ const TextareaTag: React.FC<TextareaTagProps> = ({
}) => {
// 处理输入框变化
const [tags, setTags] = useState<string[]>([])
console.log(value, 'options')
const handleInputChange = useCallback((e: any) => {
onChange(e.detail.value)
}, [onChange])
@@ -43,6 +44,7 @@ const TextareaTag: React.FC<TextareaTagProps> = ({
onChange(newValue)
}, [value, onChange])
console.log(options, 'options')
return (
<View className='textarea-tag'>
{/* 选择选项 */}