Sam Kirkland
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
3 deletions
-
components/auto-complete/demo/uncertain-category.md
|
@ -42,7 +42,7 @@ function renderOption(item) { |
|
|
<Option key={item.category} text={item.category}> |
|
|
<Option key={item.category} text={item.category}> |
|
|
<div className="global-search-item"> |
|
|
<div className="global-search-item"> |
|
|
<span className="global-search-item-desc"> |
|
|
<span className="global-search-item-desc"> |
|
|
{item.query} 在 |
|
|
Found {item.query} on |
|
|
<a |
|
|
<a |
|
|
href={`https://s.taobao.com/search?q=${item.query}`} |
|
|
href={`https://s.taobao.com/search?q=${item.query}`} |
|
|
target="_blank" |
|
|
target="_blank" |
|
@ -50,9 +50,8 @@ function renderOption(item) { |
|
|
> |
|
|
> |
|
|
{item.category} |
|
|
{item.category} |
|
|
</a> |
|
|
</a> |
|
|
区块中 |
|
|
|
|
|
</span> |
|
|
</span> |
|
|
<span className="global-search-item-count">约 {item.count} 个结果</span> |
|
|
<span className="global-search-item-count">{item.count} results</span> |
|
|
</div> |
|
|
</div> |
|
|
</Option> |
|
|
</Option> |
|
|
); |
|
|
); |
|
|