|
@@ -22,6 +22,7 @@ $(function () {
|
|
|
pages();
|
|
|
inpFun();
|
|
|
summary();
|
|
|
+ onSelect();
|
|
|
jump();
|
|
|
hotSearch();
|
|
|
$('.onSelect .preFirst').css('display', 'none')
|
|
@@ -31,45 +32,38 @@ $(function () {
|
|
|
function jump() {
|
|
|
let hash = window.location.search;
|
|
|
if (hash) {
|
|
|
- if (hash.indexOf('name') > -1 || hash.indexOf('topId') > -1 || hash.indexOf('secondId') > -1) {
|
|
|
+ if (hash.indexOf('name') > -1 || hash.indexOf('industryCategoryA') > -1 ) {
|
|
|
let newHash = hash.substr(1, hash.length)
|
|
|
if (newHash.indexOf('&') > -1) {
|
|
|
let hashArr = newHash.split('&');
|
|
|
- console.log(hashArr)
|
|
|
hashArr.map(item => {
|
|
|
if (item.indexOf('name') > -1) {
|
|
|
let names = item.split('=')
|
|
|
- dataList.name = names[1]
|
|
|
+ dataList.name = decodeURIComponent(names[1])
|
|
|
}
|
|
|
- if (item.indexOf('topId') > -1) {
|
|
|
- let topIds = item.split('=')
|
|
|
- dataList.topId = topIds[1]
|
|
|
- }
|
|
|
- if (item.indexOf('secondId') > -1) {
|
|
|
- let secondIds = item.split('=')
|
|
|
- dataList.secondId = secondIds[1]
|
|
|
+ if (item.indexOf('industryCategoryA') > -1) {
|
|
|
+ let topIds = item.split('=');
|
|
|
+ dataList.topId = decodeURIComponent(topIds[1])
|
|
|
}
|
|
|
})
|
|
|
} else {
|
|
|
if (newHash.indexOf('name') > -1) {
|
|
|
let names = newHash.split('=')
|
|
|
- dataList.name = names[1]
|
|
|
+ dataList.name = decodeURIComponent(names[1])
|
|
|
}
|
|
|
- if (newHash.indexOf('topId') > -1) {
|
|
|
+ if (newHash.indexOf('industryCategoryA') > -1) {
|
|
|
let topIds = newHash.split('=')
|
|
|
- dataList.topId = topIds[1]
|
|
|
- }
|
|
|
- if (newHash.indexOf('secondId') > -1) {
|
|
|
- let secondIds = newHash.split('=')
|
|
|
- dataList.secondId = secondIds[1]
|
|
|
+ dataList.topId = decodeURIComponent(topIds[1])
|
|
|
}
|
|
|
}
|
|
|
- loadDate()
|
|
|
+ summary(dataList);
|
|
|
+ loadDate();
|
|
|
}
|
|
|
} else {
|
|
|
dataList.name = "",
|
|
|
- dataList.topId = "", //行业
|
|
|
- dataList.secondId = "" //类型
|
|
|
+ dataList.topId = "", //行业
|
|
|
+ dataList.secondId = "" //类型
|
|
|
+ summary(dataList)
|
|
|
loadDate();
|
|
|
}
|
|
|
}
|
|
@@ -92,7 +86,7 @@ $(function () {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- function summary() {
|
|
|
+ function summary(dataList) {
|
|
|
let hash = window.location.search;
|
|
|
$.ajax({
|
|
|
method: "get",
|
|
@@ -102,7 +96,7 @@ $(function () {
|
|
|
|
|
|
},
|
|
|
success: function (data) {
|
|
|
- var theArrs = [];
|
|
|
+ var theArrs = [],proArr=[];
|
|
|
if (data.data && data.data.length) {
|
|
|
let thisdata = data.data;
|
|
|
thisdata.unshift({
|
|
@@ -115,9 +109,25 @@ $(function () {
|
|
|
})
|
|
|
thisdata.map((item, index) => {
|
|
|
if (index || hash) {
|
|
|
- theArrs.push(`
|
|
|
- <li data-id=${item.id}>${item.name}</li>
|
|
|
- `)
|
|
|
+ if(dataList&&dataList.topId&&dataList.topId>=0&&dataList.topId==item.id){
|
|
|
+ $('.onSelect .preFirst').css('display', 'block').html(`
|
|
|
+ <span>${item.name}</span>
|
|
|
+ `)
|
|
|
+ theArrs.push(`
|
|
|
+ <li class="active" data-id=${item.id}>${item.name}</li>
|
|
|
+ `);
|
|
|
+ let List = item.children
|
|
|
+ List.map(atem=>{
|
|
|
+ proArr.push(`
|
|
|
+ <li data-id=${atem.id}>${atem.name}</li>
|
|
|
+ `)
|
|
|
+ })
|
|
|
+ $('.productionType ol').html(proArr.join(''));
|
|
|
+ }else{
|
|
|
+ theArrs.push(`
|
|
|
+ <li data-id=${item.id}>${item.name}</li>
|
|
|
+ `)
|
|
|
+ }
|
|
|
} else {
|
|
|
theArrs.push(`
|
|
|
<li class="active" data-id=${item.id}>${item.name}</li>
|
|
@@ -126,10 +136,15 @@ $(function () {
|
|
|
})
|
|
|
$('.industryList ul').html(theArrs);
|
|
|
$('.industryList ul li').eq(0).className = "active";
|
|
|
- $('.productionType ol').html(`<li data-id=''>不限</li>`);
|
|
|
- $('.productionType ol li ').eq(0).addClass = "active";
|
|
|
- heightFun();
|
|
|
+ if(proArr.length){
|
|
|
+ $('.productionType ol').html(proArr.join(''));
|
|
|
+ }else{
|
|
|
+ $('.productionType ol').html(`<li data-id=''>不限</li>`);
|
|
|
+ $('.productionType ol li ').eq(0).addClass = "active";
|
|
|
+ }
|
|
|
onSelect(thisdata);
|
|
|
+ proFun();
|
|
|
+ heightFun();
|
|
|
};
|
|
|
}
|
|
|
})
|
|
@@ -157,7 +172,6 @@ $(function () {
|
|
|
let nub = data.data.list.length;
|
|
|
for (let i = 0; i < nub; i++) {
|
|
|
let thisdata = data.data.list[i];
|
|
|
- console.log(thisdata.fieldAS)
|
|
|
theArrs.push(`
|
|
|
<li>
|
|
|
<a href="${globalConfig.context}/portal/technologyTrading/demandDetail?id=${thisdata.id}&type=${thisdata.dataCategory}">
|
|
@@ -188,7 +202,6 @@ $(function () {
|
|
|
$('.inp').css('display', 'none');
|
|
|
};
|
|
|
thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
|
|
|
- console.log(thePageLength)
|
|
|
$('.totalCount').html(`共${data.data.totalCount}条数据 ${thePageLength}页`)
|
|
|
var pageArr = [],
|
|
|
firstNo = 1,
|
|
@@ -284,22 +297,25 @@ $(function () {
|
|
|
let txt = $(this).text();
|
|
|
$('.onSelect .preFirst').css('display', 'block').html(`
|
|
|
<span>${txt}</span>
|
|
|
- `)
|
|
|
+ `)
|
|
|
loadDate();
|
|
|
- $('.productionType ol li').on('click', function () {
|
|
|
- dataList.name = '';
|
|
|
- dataList.topId = $('.industryList ul li.active').attr('data-id');
|
|
|
- $(this).addClass('active').siblings().removeClass('active');
|
|
|
- dataList.secondId = $(this).attr('data-id');
|
|
|
- if (!dataList.secondId) return;
|
|
|
-
|
|
|
- let txt = $(this).text();
|
|
|
- $('.onSelect .next').css('display', 'block').html(`
|
|
|
- <span>${txt}</span>
|
|
|
- `)
|
|
|
- loadDate();
|
|
|
- })
|
|
|
+ proFun();
|
|
|
});
|
|
|
+
|
|
|
+ }
|
|
|
+ function proFun(){
|
|
|
+ $('.productionType ol li').on('click', function () {
|
|
|
+ dataList.name = '';
|
|
|
+ dataList.topId = $('.industryList ul li.active').attr('data-id');
|
|
|
+ $(this).addClass('active').siblings().removeClass('active');
|
|
|
+ dataList.secondId = $(this).attr('data-id');
|
|
|
+ if (!dataList.secondId) return;
|
|
|
+ let txt = $(this).text();
|
|
|
+ $('.onSelect .next').css('display', 'block').html(`
|
|
|
+ <span>${txt}</span>
|
|
|
+ `)
|
|
|
+ loadDate();
|
|
|
+ })
|
|
|
}
|
|
|
$('.searchBtn').click(function () {
|
|
|
let val = $('.demandSearch').val();
|