|
@@ -78,41 +78,42 @@ $(function () {
|
|
|
}
|
|
|
|
|
|
function summary() {
|
|
|
- let hash = window.location.search;
|
|
|
$.ajax({
|
|
|
method: "get",
|
|
|
dataType: "json",
|
|
|
- url: globalConfig.context + "/portal/service/jtBusiness/getCategoryList",
|
|
|
- data: {
|
|
|
- module:0
|
|
|
- },
|
|
|
+ url: globalConfig.context + "/portal/service/jtBusiness/makeMoneyCategoryList",
|
|
|
+ data: {},
|
|
|
success: function (data) {
|
|
|
- var theArrs = [];
|
|
|
+ var theArrs = '',htmls='';
|
|
|
+ htmls+='<div class="objList">'
|
|
|
if (data.data && data.data.length) {
|
|
|
let thisdata = data.data;
|
|
|
thisdata.unshift({
|
|
|
- topLevelId: '',
|
|
|
- topLevel: '不限',
|
|
|
- children: [{
|
|
|
- id: '',
|
|
|
- name: '不限'
|
|
|
- }]
|
|
|
- })
|
|
|
- thisdata.map((item,index) => {
|
|
|
- if(index||hash){
|
|
|
- theArrs.push(`
|
|
|
- <li data-id=${item.topLevelId}>${item.topLevel}</li>
|
|
|
- `)
|
|
|
- }else{
|
|
|
- theArrs.push(`
|
|
|
- <li class="active" data-id=${item.topLevelId}>${item.topLevel}</li>
|
|
|
- `)
|
|
|
+ module: '',
|
|
|
+ name: '不限',
|
|
|
+ list:[{
|
|
|
+ topLevelId:'',
|
|
|
+ topLevel:'不限'
|
|
|
+ }]
|
|
|
+ })
|
|
|
+ thisdata.map((item,index)=>{
|
|
|
+ htmls+='<div>';
|
|
|
+ theArrs+='<li data-module='+item.module+'><span>'+item.name+'</span></li>';
|
|
|
+ if(item.list&&(item.list).length){
|
|
|
+ (item.list).map(atem=>{
|
|
|
+ htmls+='<span data-id='+atem.topLevelId+'>'+atem.topLevel+'</span>'
|
|
|
+ })
|
|
|
}
|
|
|
+ htmls+='</div>'
|
|
|
})
|
|
|
+ htmls+='</div>';
|
|
|
+ $('.industryList').append(htmls);
|
|
|
$('.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";
|
|
|
+ $('.industryList ul li').eq(0).addClass('active');
|
|
|
+ $('.objList div').eq(0).addClass('active');
|
|
|
+ $('.objList div').eq(0).find('span').addClass('active');
|
|
|
+ $('.productionType ol').html(`<li data-id='' class="active">不限</li>`);
|
|
|
+ $('.productionType ol li').eq(0).addClass = "active";
|
|
|
onSelect(thisdata);
|
|
|
};
|
|
|
}
|
|
@@ -133,7 +134,7 @@ $(function () {
|
|
|
secondId: dataList.secondId, //类型
|
|
|
privateProject:1,
|
|
|
auditStatus:2,
|
|
|
- module:0
|
|
|
+ module:dataList.module
|
|
|
},
|
|
|
success: function (data) {
|
|
|
var theArrs = [];
|
|
@@ -252,18 +253,39 @@ $(function () {
|
|
|
|
|
|
//已选类型
|
|
|
function onSelect(data) {
|
|
|
- $('.industryList ul li').on('click', function () {
|
|
|
+ $('.industryList ul li').click(function(){
|
|
|
+ let index = $(this).index();
|
|
|
+ $(this).addClass('active').siblings().removeClass('active');
|
|
|
+ $('.objList div span').removeClass('active');
|
|
|
+ $('.objList div').eq(index).addClass('active').siblings().removeClass('active');
|
|
|
+ if(!index){
|
|
|
+ $('.objList div').eq(index).find('span').addClass('active');
|
|
|
+ }
|
|
|
+ $('.productionType ol').html('<li class="active" data-id=" ">不限</li>')
|
|
|
+ dataList.name='';
|
|
|
+ dataList.topId='';
|
|
|
+ dataList.secondId='';
|
|
|
+ dataList.module=$(this).attr('data-module');
|
|
|
+ loadDate();
|
|
|
+ })
|
|
|
+ $('.objList div span').on('click', function () {
|
|
|
let secondTxt = [],
|
|
|
scondHtml = [];
|
|
|
- $('.hot ul li').removeClass('active')
|
|
|
+ $('.hot ul li').removeClass('active');
|
|
|
+ $(this).parent('div').addClass('active').siblings().removeClass('active')
|
|
|
+ $('.industryList ul li p').removeClass('active');
|
|
|
$(this).addClass('active').siblings().removeClass('active')
|
|
|
dataList.topId = $(this).attr('data-id');
|
|
|
dataList.name = '';
|
|
|
dataList.secondId = '';
|
|
|
$('.next').css('display', 'none')
|
|
|
data.map(item => {
|
|
|
- if (item.topLevelId == dataList.topId) {
|
|
|
- secondTxt = item.children
|
|
|
+ if(item.list&&(item.list).length){
|
|
|
+ (item.list).map(atem=>{
|
|
|
+ if (atem.topLevelId == dataList.topId) {
|
|
|
+ secondTxt = atem.children
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
})
|
|
|
secondTxt.map(item => {
|
|
@@ -279,6 +301,10 @@ $(function () {
|
|
|
scondHtml = ['<li>不限</li>'];
|
|
|
}
|
|
|
$('.productionType ol').html(scondHtml);
|
|
|
+ let proH = $('.productionType ol').height();
|
|
|
+ if(proH>50){
|
|
|
+ $('.productionType p').css({'height':proH,'line-height':proH+'px'})
|
|
|
+ }
|
|
|
let txt = $(this).text();
|
|
|
$('.onSelect .preFirst').css('display', 'block').html(`
|
|
|
<span>${txt}</span>
|
|
@@ -290,7 +316,6 @@ $(function () {
|
|
|
$(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>
|
|
@@ -308,18 +333,22 @@ $(function () {
|
|
|
$('.industryList ul li').removeClass('active');
|
|
|
$('.productionType ol li').removeClass('active')
|
|
|
$('.demandSearch').val(dataList.name);
|
|
|
+ $('.objList div span').removeClass('active');
|
|
|
dataList.topId = '';
|
|
|
dataList.secondId = '';
|
|
|
+ dataList.module='';
|
|
|
loadDate();
|
|
|
});
|
|
|
$('.searchBtn').click(function () {
|
|
|
let val = $('.demandSearch').val();
|
|
|
$('.productionType ol').html(`<li data-id=''>不限</li>`);
|
|
|
$('.industryList ul li').removeClass('active');
|
|
|
- $('.productionType ol li').removeClass('active')
|
|
|
+ $('.productionType ol li').removeClass('active');
|
|
|
+ $('.objList div span').removeClass('active');
|
|
|
dataList.name = val;
|
|
|
dataList.topId = '';
|
|
|
dataList.secondId = '';
|
|
|
+ dataList.module='';
|
|
|
loadDate();
|
|
|
})
|
|
|
}
|