Browse Source

zhuangqian

liting2017 6 years ago
parent
commit
9dda464199
3 changed files with 170 additions and 55 deletions
  1. 108 22
      src/css/newMenu/serviceList.css
  2. 61 32
      src/js/newMenu/serviceList.js
  3. 1 1
      webpack.config.js

+ 108 - 22
src/css/newMenu/serviceList.css

@@ -1,61 +1,70 @@
 /* 行业类别 */
 
 .industry {
-    overflow: hidden;
     border: 1px dashed #eeeeee;
     border-style: solid solid dashed solid;
     margin-top: 12px;
+    height:110px;
 }
 
 .industry>p {
     float: left;
-    height: 82px;
     width: 115px;
     background: #f9f9f9;
     text-align: center;
-    line-height: 82px;
     font-size: 14px;
+    height: 110px;
+    line-height: 110px;
+    border-bottom: 1px dotted #eeeeee;
 }
 
 .industry .industryList {
     width: 1082px;
     float: left;
-    overflow: hidden;
-    height: 82px;
-    padding: 18px 0px 22px 0px;
 }
 
 .industry .industryList ul li {
-    width: 110px;
+   /* height: 82px;
+   line-height: 82px; */
     text-align: center;
     cursor: pointer;
     float: left;
-    margin-bottom: 8px;
     font-size: 14px;
     color: #333;
     line-height: 48px;
 }
+.industry .industryList ul{
+    /* height: 82px; */
+}
+.industry .industryList ul li span{
+    display: inline-block;
+    /* height: 82px;line-height: 82px; */
+    padding: 0 20px;
+}
 .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group{
     width: 105px;
 }
-.industry .industryList ul li:hover{
-    color: #ff570c;
+.industryList ul li:hover div{
+    display: block;
+}
+.industry .industryList ul li:hover span{
+    color: #1797e9;
+    font-weight: 700
 }
-.industry .industryList ul li.active,.productionType ol li.active{
-    color: #ff570c
+.industry .industryList ul li.active span,.productionType ol li.active{
+    color: #1797e9;
+    font-weight: 700
 }
 .industry .industryList ul li span {
     color: #7a7878
 }
 
-.industry .industryList ul li:hover span {
-    color: #ff570c
-}
 
 /* 知产类型 */
 
 .productionType {
-    height: 50px;
+    clear: both;
+    overflow: hidden;
     border: 1px solid #eeeeee;
     border-top: none
 }
@@ -72,18 +81,19 @@
 
 .productionType ol {
     float: left;
+    width: 1082px;
 }
 
 .productionType ol li {
     float: left;
-    width: 110px;
+    padding: 0 20px;
     text-align: center;
     line-height: 50px;
     color: #7a7878
 }
 
 .productionType ol li:hover {
-    color: #ff570c;
+    color: #1797e9;
     cursor: pointer;
 }
 
@@ -94,7 +104,16 @@
     text-align: center;
     line-height: 60px;
 }
-
+.onSelect .next{
+    margin-left: 20px;
+}
+.onSelect .next::before{
+    content: '>';
+    display: inline-block;
+    margin-left: -30px;
+    margin-right: 16px;
+    font-weight: 700
+}
 .onSelect ol {
     float: left;
     margin-top: 16px;
@@ -105,7 +124,7 @@
     float: left;
     color: #7a7878;
     height: 28px;
-    line-height: 28px;
+    line-height: 26px;
     padding: 0px 10px;
     border: 1px solid #b8d3e4;
     background: #f3f9fc;
@@ -115,9 +134,10 @@
 .onSelect ol li span {
     font-size: 14px;
     color: #1f1f1f;
+    height: 28px;
+    line-height: 26px;
 }
 
-
 .onSelect ol li .typeClose {
     color: #6ea7c9;
     cursor: pointer;
@@ -363,7 +383,6 @@
     background: #fa2902;
     border-radius: 10px;
     margin-right: 18px;
-
 }
 .search .hot ul {
     float: left;
@@ -385,6 +404,73 @@
     background-size:100% 100%; 
 }
 
+.industryList ul li {
+    position: relative;
+    z-index: 10;
+}
+.industryList ul li div{
+    display: none;
+    position: absolute;
+    background: #1797e9;
+    color: #fff;
+    top: 60px;
+    z-index:999;
+    width: 100%;
+    text-align: center;
+    border-radius: 5px;
+    box-shadow: 0 0 10px #ccc;
+}
+.industryList ul li div::before{
+    content: '';
+    width: 10px;
+    height: 10px;
+    display: inline-block;
+    position: absolute;
+    top: -5px;
+    left: 50%;
+    margin-left: -5px;
+    background: #1797e9;
+    transform: rotate(45deg)
+}
+.industryList ul li div p{
+    height: 30px;
+    line-height: 30px;
+}
+
+.onSelect{
+    clear: both;
+    height: 60px;
+}
+.objList{
+    clear: both;
+    height: 50px;
+    line-height: 50px;
+    width: 90%;
+    border: 1px solid #ccc;
+    margin-left: 20px;
+    padding:0 20px
+}
+.objList div{
+    display: none;
+}
+.objList div span{
+    font-size: 12px;
+    padding: 0 20px;
+    color: #7a7878;
+    height: 30px;
+    display: inline-block;
+    line-height: 28px;
+    border: 1px solid #ccc;
+    cursor: pointer;
+}
+.objList div span.active{
+    font-weight: 700;
+    background: #1797e9;
+    color: #ffffff;
+}
+.objList div.active{
+    display: block;
+}
 
 
 

+ 61 - 32
src/js/newMenu/serviceList.js

@@ -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();
         })
     }

+ 1 - 1
webpack.config.js

@@ -394,7 +394,7 @@ module.exports = (function () {
             disableHostCheck: true,
             host: '192.168.1.166',
             port: 80,
-            allowedHosts: ['127.0.0.1','192.168.1.222','192.168.1.123'],
+            allowedHosts: ['127.0.0.1','192.168.1.222','192.168.1.213'],
             headers: {
                 "Access-Control-Allow-Origin": "*"
             }