diff --git a/client/components/Header/Search/Search.js b/client/components/Header/Search/Search.js index 6b97bc75..935499df 100755 --- a/client/components/Header/Search/Search.js +++ b/client/components/Header/Search/Search.js @@ -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 + // } > } diff --git a/server/models/interface.js b/server/models/interface.js index 86f2f1be..69fc4a40 100755 --- a/server/models/interface.js +++ b/server/models/interface.js @@ -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); }