|
@ -92,7 +92,7 @@ function Retrieval(props) { |
|
|
|
|
|
|
|
|
return !result?.rows ? <div className='search-container'> |
|
|
return !result?.rows ? <div className='search-container'> |
|
|
<div className='title'>数据资源检索</div> |
|
|
<div className='title'>数据资源检索</div> |
|
|
<Input addonAfter={<div onClick={() => { setKeywords(firstInput) }} style={{ color: '#fff' }}>搜索一下</div>} |
|
|
<Input addonAfter={<div onClick={() => { setKeywords(firstInput) }} style={{ color: '#fff', cursor: 'pointer' }}>搜索一下</div>} |
|
|
style={{ width: '40%', marginLeft: 10, marginBottom: 30 }} |
|
|
style={{ width: '40%', marginLeft: 10, marginBottom: 30 }} |
|
|
onChange={e => { setFirstInput(e.target.value) }} |
|
|
onChange={e => { setFirstInput(e.target.value) }} |
|
|
onPressEnter={e => { setKeywords(e.target.value) }} |
|
|
onPressEnter={e => { setKeywords(e.target.value) }} |
|
|