diff --git a/public/react/src/modules/tpm/NewHeader.js b/public/react/src/modules/tpm/NewHeader.js index 15360f6ec..3ea3c493c 100644 --- a/public/react/src/modules/tpm/NewHeader.js +++ b/public/react/src/modules/tpm/NewHeader.js @@ -118,22 +118,23 @@ function loadHeader(){ function header_search(reactHeaderComponnet){ console.log(old_url) var keyword = $("input[name='search_keyword']").val(); // 搜索关键字 - if (!reactHeaderComponnet) { - reactHeaderComponnet = window._header_componentHandler - } - if (!reactHeaderComponnet) { - var index = $("#search_type").val(); // 搜索课程/项目 - keyword = encodeURIComponent(keyword); - // $.get('/users/search_shixuns_or_course', - // { search: keyword, - // index: index}); - window.location.href = old_url+"/users/search_shixuns_or_courses" + "?search=" + keyword + "&index=" + index; + window.location.href ="/search"+"?value="+keyword; + // if (!reactHeaderComponnet) { + // reactHeaderComponnet = window._header_componentHandler + // } + // if (!reactHeaderComponnet) { + // var index = $("#search_type").val(); // 搜索课程/项目 + // keyword = encodeURIComponent(keyword); + // // $.get('/users/search_shixuns_or_course', + // // { search: keyword, + // // index: index}); + // window.location.href = old_url+"/users/search_shixuns_or_courses" + "?search=" + keyword + "&index=" + index; //e.stopPropagation();//阻止冒泡 - } else { - window.__headSearchKeyword = keyword - reactHeaderComponnet.props.history.push(`/shixuns`) - trigger('searchKeywordChange', keyword) - } + // } else { + // window.__headSearchKeyword = keyword + // reactHeaderComponnet.props.history.push(`/shixuns`) + // trigger('searchKeywordChange', keyword) + // } } //头部导航条的隐藏 function closeSearch(){ @@ -382,12 +383,14 @@ class NewHeader extends Component { header_search(this) } onKeywordSearchKeyDown = (e) => { - let code = e.keyCode; + + window.location.href ="/search"+"?value="+e.target.value; + // let code = e.keyCode; - if(code == 13) { - header_search(this); - return false; - } + // if(code == 13) { + // header_search(this); + // return false; + // } } hideAddcoursestypes=()=>{ diff --git a/public/react/src/search/SearchPage.js b/public/react/src/search/SearchPage.js index 14966b670..65130ba9b 100644 --- a/public/react/src/search/SearchPage.js +++ b/public/react/src/search/SearchPage.js @@ -13,7 +13,7 @@ class SearchPage extends Component{ this.state={ tab:"0", count:0, - keywords:"python", + keywords:"", type:"", page:1, perpages:20, @@ -22,11 +22,29 @@ class SearchPage extends Component{ } //切换tab changeTab=(e)=>{ - this.setState({ - tab:e.key - }) + console.log(e.key); + + let types =""; + if(parseInt(e.key)===0){ + types="course"; + } + if(parseInt(e.key)===1){ + types="shixun"; + } + if(parseInt(e.key)===2){ + types="subject"; + + } + if(parseInt(e.key)===3){ + types="memo"; + } + this.setState({ + tab:e.key, + type:types + }) + this.getdata(1,types,this.state.keywords); } componentDidMount(){ @@ -39,25 +57,31 @@ class SearchPage extends Component{ // this.setState({ // tab:sum, // }) - this.getdata(this.state.page); + let courstype=this.props.match.url; + courstype = courstype.split('?value='); + console.log(courstype); + this.getdata(this.state.page,this.state.type,this.state.keywords); } setdatafuns =(value)=>{ - + this.setState({ + keywords:value + }) + this.getdata(this.state.page,this.state.type,value); } paginationonChanges = (pageNumber) => { this.setState({ page: pageNumber, loadingstate: true, }) - this.getdata(pageNumber); + this.getdata(pageNumber,this.state.type,this.state.keywords); } //获取数据 - getdata=(pages)=>{ + getdata=(pages,type,keywords)=>{ let url = "/search.json"; axios.get(url,{params:{ - keyword:this.state.keywords, - type:this.state.types, + keyword:keywords, + type:type, page:pages, per_page:this.state.perpages, } @@ -106,7 +130,7 @@ class SearchPage extends Component{ JSON.stringify(data) === "[]" ?
-
+

没有数据可以显示!

diff --git a/public/react/src/search/searchc.css b/public/react/src/search/searchc.css index a3e9fafbd..e148505f3 100644 --- a/public/react/src/search/searchc.css +++ b/public/react/src/search/searchc.css @@ -114,4 +114,7 @@ } .tzbqx{ margin-left: 24px; +} +.bjyss{ + background: #F8F8F8; } \ No newline at end of file