|
@@ -5,6 +5,7 @@ import '../css/newMenu/header.css';
|
|
|
import '../css/search.css';
|
|
|
import './public.js';
|
|
|
import './jquery-2.1.0.js';
|
|
|
+import {getSearchType} from 'js/tools.js';
|
|
|
|
|
|
$(function(){
|
|
|
//从地址栏中获取参数
|
|
@@ -15,10 +16,10 @@ $(function(){
|
|
|
}
|
|
|
var name=sessionStorage.getItem("name");
|
|
|
sessionStorage.removeItem("name");
|
|
|
- var pageSize = 10,
|
|
|
- thePageNo = 1,
|
|
|
+ var pageSize = 5,
|
|
|
+ thePageNo = 1,
|
|
|
thePageLength = 1,
|
|
|
- noLength=`<div class="noLength">没有找到您搜索的内容...</div>`;
|
|
|
+ noLength=`<div class="noLength"></div>`;
|
|
|
init();
|
|
|
function init() {
|
|
|
pages();
|
|
@@ -26,6 +27,16 @@ $(function(){
|
|
|
loadDate();
|
|
|
$('.onSelect .preFirst').css('display', 'none')
|
|
|
$('.onSelect .next').css('display', 'none')
|
|
|
+ search();
|
|
|
+ };
|
|
|
+ //当前页面搜
|
|
|
+ function search(){
|
|
|
+ $('.searchBtn').click(function(){
|
|
|
+ let val = $('.demandSearch').val();
|
|
|
+ name=val;
|
|
|
+ thePageNo=1;
|
|
|
+ loadDate();
|
|
|
+ })
|
|
|
};
|
|
|
function loadDate(pageNo) {
|
|
|
$.ajax({
|
|
@@ -34,7 +45,7 @@ $(function(){
|
|
|
url: globalConfig.context + "/portal/globalSearch",
|
|
|
data: {
|
|
|
pageNo: pageNo || 1,
|
|
|
- pageSize: 10,
|
|
|
+ pageSize: 5,
|
|
|
name:name
|
|
|
},
|
|
|
success: function (data) {
|
|
@@ -42,6 +53,7 @@ $(function(){
|
|
|
msg(data.error[0].message);
|
|
|
}else if(data.error==""){
|
|
|
var contHtml="";
|
|
|
+ contHtml+='<ul>'
|
|
|
var dataList=data.data.list;
|
|
|
if(dataList.length){
|
|
|
for(var a=0;a<dataList.length;a++){
|
|
@@ -75,17 +87,19 @@ $(function(){
|
|
|
keyHtml=`${keyData[0]}`;
|
|
|
}
|
|
|
}
|
|
|
- contHtml+=`<div class="contone">
|
|
|
- <h4 class="line1">${titleHtml}</h4>
|
|
|
- <p class="line1">
|
|
|
- <span>关键字:</span>
|
|
|
- <span class="key">${keyHtml}</span>
|
|
|
- </p>
|
|
|
- <input type="hidden" dataType="${dataList[a].fromTable}" dataId="${dataList[a].rowId}"/>
|
|
|
- </div>`;
|
|
|
- }
|
|
|
- $(".cont").html(contHtml);
|
|
|
-
|
|
|
+ contHtml+=`<li>
|
|
|
+ <h4>${titleHtml}</h4>
|
|
|
+ <p>${dataList[a].summary?dataList[a].summary:'暂无'}</p>
|
|
|
+ <div>
|
|
|
+ <span>类型:${getSearchType(dataList[a].fromTable)}</span>
|
|
|
+ <span>关键字:${dataList[a].keyword?dataList[a].keyword:''}</span>
|
|
|
+ </div>
|
|
|
+ <input type="hidden" dataType="${dataList[a].fromTable}" dataId="${dataList[a].rowId}"/>
|
|
|
+ </li>`
|
|
|
+ }
|
|
|
+ contHtml+='</ul>';
|
|
|
+ $(".cont").html(contHtml);
|
|
|
+ $('footer').show();
|
|
|
}else{
|
|
|
$(".cont").html(noLength);
|
|
|
}
|
|
@@ -125,27 +139,28 @@ $(function(){
|
|
|
};
|
|
|
$('.pageNumber').remove();
|
|
|
$('.pagePre').after(pageArr.join(''));
|
|
|
+ jumpFun();
|
|
|
}
|
|
|
});
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- //标题点击事件
|
|
|
- $(".cont").on("click","h4",function(){
|
|
|
- var dataType=$(this).siblings("input").attr("dataType");
|
|
|
- var dataId=$(this).siblings("input").attr("dataId");
|
|
|
- switch(dataType){
|
|
|
- case "achievement":window.open(globalConfig.context + `/portal/technologyTrading/achievementDetail.html?id=${dataId}`);break;//成果
|
|
|
- case "demand":window.open(globalConfig.context + `/portal/technologyTrading/demandDetail.html?id=${dataId}`);break;//需求
|
|
|
- case "patent":window.open(globalConfig.context + `/portal/service/patentDetail?id=${dataId}`);break;//专利
|
|
|
- case "policy":window.open(globalConfig.context + `/portal/news/newsDetail?id=${dataId}&type=0`);break;//政策
|
|
|
- case "jt_business_project":window.open(globalConfig.context + `/portal/service/serviceDetail?id=${dataId}`);break;//项目
|
|
|
- case "news":window.open(globalConfig.context + `/portal/news/newsDetail?id=${dataId}`);break;//新闻
|
|
|
- case "expert":window.open(globalConfig.context + `/portal/subscriberDetail?uid=${dataId}&type=1`);break;//专家
|
|
|
- case "adviser":window.open(globalConfig.context + `/portal/adviser/adviserDetail?id=${dataId}`);break;//顾问
|
|
|
- default :break;
|
|
|
- }
|
|
|
- })
|
|
|
+ }
|
|
|
+ //标题点击事件
|
|
|
+ function jumpFun(){
|
|
|
+ $(".cont ul li").on("click",function(){
|
|
|
+ var dataType=$(this).children("input").attr("dataType");
|
|
|
+ var dataId=$(this).children("input").attr("dataId");
|
|
|
+ switch(dataType){
|
|
|
+ case "achievement":window.open(globalConfig.context + `/portal/technologyTrading/achievementDetail.html?id=${dataId}`);break;//成果
|
|
|
+ case "demand":window.open(globalConfig.context + `/portal/technologyTrading/demandDetail.html?id=${dataId}`);break;//需求
|
|
|
+ case "patent":window.open(globalConfig.context + `/portal/service/patentDetail?id=${dataId}`);break;//专利
|
|
|
+ case "policy":window.open(globalConfig.context + `/portal/news/newsDetail?id=${dataId}&type=0`);break;//政策
|
|
|
+ case "jt_business_project":window.open(globalConfig.context + `/portal/service/serviceDetail?id=${dataId}`);break;//项目
|
|
|
+ case "news":window.open(globalConfig.context + `/portal/news/newsDetail?id=${dataId}`);break;//新闻
|
|
|
+ case "expert":window.open(globalConfig.context + `/portal/subscriberDetail?uid=${dataId}&type=1`);break;//专家
|
|
|
+ case "adviser":window.open(globalConfig.context + `/portal/adviser/adviserDetail?id=${dataId}`);break;//顾问
|
|
|
+ default :break;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
//f分页
|
|
|
function pages() {
|
|
|
$('.pagination').on('click', 'li', function (e) {
|