mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
feat: 全局搜索模块支持搜索接口路径
This commit is contained in:
parent
87e949b604
commit
36b27e561a
@ -142,9 +142,9 @@ export default class Srch extends Component {
|
||||
defaultActiveFirstOption={false}
|
||||
onSelect={this.onSelect}
|
||||
onSearch={this.handleSearch}
|
||||
filterOption={(inputValue, option) =>
|
||||
option.props.children.toUpperCase().indexOf(inputValue.toUpperCase()) !== -1
|
||||
}
|
||||
// filterOption={(inputValue, option) =>
|
||||
// option.props.children.toUpperCase().indexOf(inputValue.toUpperCase()) !== -1
|
||||
// }
|
||||
>
|
||||
<Input
|
||||
prefix={<Icon type="search" className="srch-icon" />}
|
||||
|
@ -326,7 +326,10 @@ class interfaceModel extends baseModel {
|
||||
search(keyword) {
|
||||
return this.model
|
||||
.find({
|
||||
title: new RegExp(keyword, 'ig')
|
||||
$or: [
|
||||
{ 'title': new RegExp(keyword, 'ig') },
|
||||
{ 'path': new RegExp(keyword, 'ig') }
|
||||
]
|
||||
})
|
||||
.limit(10);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user