liting2017 6 years ago
parent
commit
186e831650

+ 3 - 3
src/css/newMenu/achievementList.css

@@ -55,12 +55,11 @@
     width: 1082px;
     float: left;
     overflow: hidden;
-    height: 82px;
-    padding: 18px 0px 22px 0px;
 }
 
 .industry .industryList ul{
     overflow: hidden;
+    padding: 10px 0;
 }
 
 .industry .industryList ul li {
@@ -69,7 +68,8 @@
     cursor: pointer;
     float: left;
     color: #7a7878;
-    margin-bottom: 8px;
+    line-height:30px;
+    height: 30px;
     font-size: 14px;
 }
 

+ 5 - 2
src/js/newMenu/achievementList.js

@@ -109,7 +109,7 @@ $(function () {
                         children: [{
                             id: '',
                             name: '不限'
-                        }]
+                        },]
                     })
                     thisdata.map((item, index) => {
                         if (index || hash) {
@@ -154,8 +154,11 @@ $(function () {
             }
         })
     }
+    
     function heightFun(){
-        let proH = $('.productionType ol').height();
+        let proH = $('.productionType ol').height(),industryH =$('.industryList ul').innerHeight();
+        $('.industryList ul').css({height:industryH+'px'})
+        $('.industry p').css({height:industryH+'px',lineHeight:industryH+'px'});
         $('.productionType p').css({height:proH+'px',lineHeight:proH+'px'})
         $('.productionType').css({height:proH+'px',lineHeight:proH+'px'})
     }

+ 3 - 1
src/js/newMenu/demandList.js

@@ -154,7 +154,9 @@ $(function () {
         })
     }
     function heightFun(){
-        let proH = $('.productionType ol').height();
+        let proH = $('.productionType ol').height(),industryH =$('.industryList ul').innerHeight();
+        $('.industryList ul').css({height:industryH+'px'})
+        $('.industry p').css({height:industryH+'px',lineHeight:industryH+'px'});
         $('.productionType p').css({height:proH+'px',lineHeight:proH+'px'})
         $('.productionType').css({height:proH+'px',lineHeight:proH+'px'})
     }