liting2017 6 years ago
parent
commit
631a9065c7

+ 1 - 1
src/css/newMenu/serviceDetails.css

@@ -42,7 +42,6 @@
     position: relative;
     overflow: hidden;
     padding: 18px;
-    margin-bottom: 40px;
     border: 1px solid #efefef;    
 }
 .serviceDetailsImg:hover img{
@@ -155,6 +154,7 @@
     详情
 */
 .serviceDetailsList{
+    padding-top: 40px;
     width: 100%;
     clear: both;
 }

+ 33 - 2
src/css/technologyTrading/achievementDetail.css

@@ -61,8 +61,39 @@ div.pointer>p{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;paddi
 .detail_centertext>div{width:94%;display: inline-block;padding-bottom: 20px;}
 .text_right>div{width:1100px;border-bottom:1px solid #F0F0F1;line-height: 40px;font-size: 16px;  }
 .text_right>p{width:1100px;padding: 10px 25px 0 0;line-height: 23px;text-align: justify;word-break: break-all; white-space: pre-wrap;word-wrap: break-word;}
-
-
+.big_img .collection {
+    float: right;
+    margin-right: 20px;
+    height: 30px;
+    line-height: 30px
+}
+.collection p span{
+    vertical-align: top;
+   color: #ff6a25
+   
+}
+.collection p img{
+    margin-right: 12px;
+}
+.collection .heart{
+    margin-right: 10px;
+    margin-top: 5px;
+    width: 19px;
+    height: 18px;
+    display: inline-block;
+    background: url(../../../img/newMenu/serviceDetal_03.jpg) no-repeat;
+    background-size:100% 100%;
+}
+.collection p{
+    cursor: pointer;
+    float: left;
+    height: 30px;
+    line-height: 30px;
+    font-size: 14px;
+}
+.collection .heart.active{
+    background: url(../../../img/newMenu/serviceDetal_Ok.jpg) no-repeat;
+}
 
 .detail_bottom{width:1200px;height:500px;margin: 0 auto;padding-top: 35px;}
 .line{width:1080px;height:20px;border: 1px solid #C8CACE;margin: 0 auto;border-bottom: none;

+ 33 - 1
src/css/technologyTrading/demandDetail.css

@@ -64,7 +64,39 @@ div.pointer>p{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;paddi
 .text_right>div{width:1100px;border-bottom:1px solid #F0F0F1;line-height: 40px;font-size: 16px;  }
 .text_right>p{padding: 10px 25px 20px 0;line-height:22px;word-break: break-all; white-space: pre-wrap;word-wrap: break-word; 
 text-align: justify;}
-
+.big_img .collection {
+    float: right;
+    margin-right: 20px;
+    height: 30px;
+    line-height: 30px
+}
+.collection p span{
+    vertical-align: top;
+   color: #ff6a25
+   
+}
+.collection p img{
+    margin-right: 12px;
+}
+.collection .heart{
+    margin-right: 10px;
+    margin-top: 5px;
+    width: 19px;
+    height: 18px;
+    display: inline-block;
+    background: url(../../../img/newMenu/serviceDetal_03.jpg) no-repeat;
+    background-size:100% 100%;
+}
+.collection p{
+    cursor: pointer;
+    float: left;
+    height: 30px;
+    line-height: 30px;
+    font-size: 14px;
+}
+.collection .heart.active{
+    background: url(../../../img/newMenu/serviceDetal_Ok.jpg) no-repeat;
+}
 
 
 .detail_bottom{width:1200px;height:500px;margin: 0 auto;padding-top: 35px;}

+ 32 - 1
src/css/thinkTank/thinkerDetail.css

@@ -76,7 +76,38 @@ text-overflow: ellipsis;overflow: hidden;white-space: nowrap;}
 .think_about>div>div:hover .about_p{
     color: #0a7dd4
 }
-
+.collection{
+    height: 50px;
+    line-height: 50px;
+    margin-left: 20px;
+}
+.collection p span{
+    vertical-align: top;
+   color: #ff6a25
+   
+}
+.collection p img{
+    margin-right: 12px;
+}
+.collection .heart{
+    margin-right: 10px;
+    margin-top: 15px;
+    width: 19px;
+    height: 18px;
+    display: inline-block;
+    background: url(../../../img/newMenu/serviceDetal_03.jpg) no-repeat;
+    background-size:100% 100%;
+}
+.collection p{
+    cursor: pointer;
+    float: left;
+    height: 50px;
+    line-height: 50px;
+    font-size: 14px;
+}
+.collection .heart.active{
+    background: url(../../../img/newMenu/serviceDetal_Ok.jpg) no-repeat;
+}
 
 
 

+ 8 - 8
src/js/newMenu/serviceDetails.js

@@ -24,19 +24,21 @@ $(function () {
             collectionApi(1) //收藏
         }
     })
-
+    let hash = window.location.search,
+        hashArr =hash.split('='),
+        ids =hashArr[1];
     function collectionApi(index) {
+        let url = index?'/api/user/portal/projectInterest':'/api/user/portal/projectCancelInterest'
         $.ajax({
-            method: "get",
+            method: "post",
             dataType: "json",
-            //url: globalConfig.context + "/portal/search/achievementList",
-            url: "https://www.apiopen.top/satinApi",
+            url: globalConfig.context + url,
             data: {
-                name:index
+                id:ids
             },
             success: function (data) {
                 if (data.error && data.error.length) {
-                    $('#msg').val(data.error);
+                    $('#msg').val(data.error[0].message);
 		            msg();
                 }else{
                     if(!index){
@@ -53,7 +55,6 @@ $(function () {
     //价值
     function heightF(){
         let het = $('.serviceDetailsList .value div').height();
-        console.log(het);
         $('.serviceDetailsList .value h4').css({
             height:(het+20)+'px',
             lineHeight:(het+20)+'px'
@@ -65,7 +66,6 @@ $(function () {
 			return ;
 		}
         $('.smg').addClass('active')
-        var lit = $('#msg').val();
         setTimeout(function () {
             $('.smg').removeClass('active')
             $('#msg').val('');

+ 49 - 0
src/js/technologyTrading/achievementDetail.js

@@ -32,6 +32,44 @@ import '../../css/technologyTrading/achievementDetail.css';
             $(".head_login").click();
         }
        });
+    //收藏
+    $('.collection p').eq(0).click(function () {
+        let heart = $('.heart');
+        if (heart.hasClass('active')) {
+            collectionApi(0) //取消收藏
+        } else {
+            collectionApi(1) //收藏
+        }
+    })
+    let hash = window.location.search,
+        hashArr =hash.split('&'),
+        idArr = hashArr[0].split('='),
+        ids =idArr[1];
+     function collectionApi(index) {
+        let url = index?'/api/user/portal/achievementInterest':'/api/user/portal/achievementCancelInterest'
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            url: globalConfig.context + url,
+            data: {
+                id:ids
+            },
+            success: function (data) {
+                if (data.error && data.error.length) {
+                    $('#msg').val(data.error[0].message);
+		            msg();
+                }else{
+                    if(!index){
+                        $('.heart').removeClass('active');
+                    }else{
+                        $('.heart').addClass('active');
+                    }
+                    $('#msg').val(index?'收藏成功,请至个人中心查看.':'撤销收藏');
+		            msg();
+                }
+            }
+        })
+    }
  	//点击感兴趣
     var t=0;
     $('.basic .loves').click(function(){
@@ -84,4 +122,15 @@ import '../../css/technologyTrading/achievementDetail.css';
             $(".head_login").click();
         }
     });
+     //提示框渐隐函数    
+	function msg() {
+        if($('.smg').hasClass('active')){
+			return ;
+		}
+        $('.smg').addClass('active')
+        setTimeout(function () {
+            $('.smg').removeClass('active')
+            $('#msg').val('');
+        }, 2000)
+    } 
 })();

+ 49 - 0
src/js/technologyTrading/demandDetail.js

@@ -25,6 +25,44 @@ import '../../css/technologyTrading/demandDetail.css';
         var thetype=$(this).children("div").children("p.demandTyp").html();
         window.open(globalConfig.context + '/portal/technologyTrading/demandDetail?id=' + theId+'&type='+thetype );
     })
+     //收藏
+     $('.collection p').eq(0).click(function () {
+        let heart = $('.heart');
+        if (heart.hasClass('active')) {
+            collectionApi(0) //取消收藏
+        } else {
+            collectionApi(1) //收藏
+        }
+    })
+    let hash = window.location.search,
+        hashArr =hash.split('&'),
+        idArr = hashArr[0].split('='),
+        ids =idArr[1];
+     function collectionApi(index) {
+        let url = index?'/api/user/portal/demandInterest':'/api/user/portal/demandCancelInterest'
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            url: globalConfig.context + url,
+            data: {
+                id:ids
+            },
+            success: function (data) {
+                if (data.error && data.error.length) {
+                    $('#msg').val(data.error[0].message);
+		            msg();
+                }else{
+                    if(!index){
+                        $('.heart').removeClass('active');
+                    }else{
+                        $('.heart').addClass('active');
+                    }
+                    $('#msg').val(index?'收藏成功,请至个人中心查看.':'撤销收藏');
+		            msg();
+                }
+            }
+        })
+    }
     //点击感兴趣
     var t=0;
     $('.basic .loves').click(function(){
@@ -77,4 +115,15 @@ import '../../css/technologyTrading/demandDetail.css';
             $(".head_login").click();
         }
     });
+     //提示框渐隐函数    
+	function msg() {
+        if($('.smg').hasClass('active')){
+			return ;
+		}
+        $('.smg').addClass('active')
+        setTimeout(function () {
+            $('.smg').removeClass('active')
+            $('#msg').val('');
+        }, 2000)
+    } 
 })();

+ 48 - 74
src/js/thinkTank/thinkerDetail.js

@@ -45,18 +45,44 @@ var consultClick = function () {
 };
 
 $(function () {
-    //$('#consultBtn').click(function () {
-    //    if (userData && userData.mobile) {
-    //        if (userData.lvl > 0) {
-    //            consultClick()
-    //        } else {
-    //            message('请先进行实名认证,通过以后才能申请高级会员!');
-    //            setTimeout("window.location.href = globalConfig.context + '/user/account/index.html#normal'", 3000);
-    //        }
-    //    } else {
-    //        $('.login').fadeIn(800)
-    //    }
-    //});
+     //收藏
+     $('.collection p').eq(0).click(function () {
+        let heart = $('.heart');
+        if (heart.hasClass('active')) {
+            collectionApi(0) //取消收藏
+        } else {
+            collectionApi(1) //收藏
+        }
+    })
+    let hash = window.location.search,
+        hashArr =hash.split('&'),
+        idArr = hashArr[0].split('='),
+        ids =idArr[1];
+     function collectionApi(index) {
+        let url = index?'/api/user/portal/expertInterest':'/api/user/portal/expertCancelInterest'
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            url: globalConfig.context + url,
+            data: {
+                id:ids
+            },
+            success: function (data) {
+                if (data.error && data.error.length) {
+                    $('#msg').val(data.error[0].message);
+		            msg();
+                }else{
+                    if(!index){
+                        $('.heart').removeClass('active');
+                    }else{
+                        $('.heart').addClass('active');
+                    }
+                    $('#msg').val(index?'收藏成功,请至个人中心查看.':'撤销收藏');
+		            msg();
+                }
+            }
+        })
+    }
     $('#submitOrder').click(function () {
         addConsultorder()
     });
@@ -95,67 +121,15 @@ $(function () {
 			$(this).removeClass("active").attr("val","").parent().animate({"height":45},500);
 		}
 	});
-	//点击收藏
-//	var isIntereste=$("#isInterester").attr("isInterester");
-//  if(isIntereste==0){
-//      $(".loves>span:nth-child(3)").removeClass("box_love").addClass("bj_love");
-//  }else if(isIntereste==1){
-//      $(".loves>span:nth-child(3)").removeClass("bj_love").addClass("box_love");
-//  }
-//  var t=0;
-//  $('.box_dianji').click(function(){
-//  	console.log(11);
-//      var theId=$("#demand_id").attr("val");
-//      var islogin=$("#isLogin").attr("islogin");
-//      if(islogin=="true"){
-//          $(".head_login").click();
-//      }
-//  	if($('.loves>span:nth-child(3)').hasClass('box_love')&&islogin=="false"){
-//  		console.log(12);
-//  		t=$('.dem_number').text();            		
-//  	    $('.dem_number').text(parseInt(t)+1);
-//  	    $('.loves>span:nth-child(3)').addClass('bj_love').removeClass('box_love');
-//          $.ajax({
-//              method: "post",
-//              dataType: "json",
-//              url: globalConfig.context + "/api/user/interest/interestUser",
-//              data: {
-//                  id:theId
-//              },
-//              success: function (data) {
-//
-//              }
-//          });
-//  	    return false;
-//  	}   	    	
-//  	if($('.loves>span:nth-child(3)').hasClass('bj_love')&&islogin=="false"){
-//  		console.log(13);
-//  		t=$('.dem_number').text();         		
-//  	    $('.dem_number').text(parseInt(t)-1)
-//  	    $('.loves>span:nth-child(3)').addClass('box_love').removeClass('bj_love')
-//          $.ajax({
-//              method: "post",
-//              dataType: "json",
-//              url: globalConfig.context + "/api/user/interest/cancelInterest",
-//              data: {
-//                  id:theId
-//              },
-//              success: function (data) {
-//
-//              }
-//          });
-//  	}    	   	
-//  })
-     //提示框渐隐函数    
-     function msg(txt) {
-        if($('.smg').hasClass('active')){
-			return ;
-		}
-        $('.smg').addClass('active');
-        var lit = $('#msg').val(txt);
-        setTimeout(function () {
-            $('.smg').removeClass('active')
-            $('#msg').val('');
-        }, 2000)
+  //提示框渐隐函数    
+  function msg() {
+    if($('.smg').hasClass('active')){
+        return ;
     }
+    $('.smg').addClass('active')
+    setTimeout(function () {
+        $('.smg').removeClass('active')
+        $('#msg').val('');
+    }, 2000)
+} 
 })