()
| 126 | const [channelSearchValue, setChannelSearchValue] = useState(''); |
| 127 | const [useManualInput, setUseManualInput] = useState(false); // 是否使用手动输入模式 |
| 128 | const getInitValues = () => ({ ...originInputs }); |
| 129 | const handleInputChange = (name, value) => { |
| 130 | if (formApiRef.current) { |
| 131 | formApiRef.current.setValue(name, value); |