liting2017 лет назад: 6
Родитель
Сommit
8f6a0d1d6d

+ 12 - 4
src/css/newMenu/adviser.css

@@ -109,7 +109,6 @@ footer{
 /* 首页 */
 .adviserIndexList{
     margin-top: 80px;
-    overflow:hidden;
     text-align: center;
 }
 .listHead{
@@ -127,7 +126,15 @@ footer{
     z-index: 10;
     border-radius: 15px;
     overflow: hidden;
-    border: 1px solid #ccc;
+    transition: all .2 ease-in-out;
+}
+.listHead ul li:hover {
+    box-shadow: 0 0 20px #ccc;
+    transition: all .2 ease-in;
+}
+.listHead ul li:hover .bjImg img{
+    transform: scale(1.1);
+    transition: all .2 ease-in;
 }
 .listHead ul li .bjImg{
     width: 100%;
@@ -136,13 +143,14 @@ footer{
     z-index: 11;
     top: 0;
     left: 0;
-     border-radius: 15px;
+    border-radius: 15px;
 }
 .listHead ul li .bjImg img{
     width: 100%;
     display: inline-block;
     height: 100%;
-    
+    overflow: hidden;
+    transition: all .2 ease-in-out;
 }
 .listHead ul li .collectionNumber{
     position: absolute;

+ 3 - 0
src/css/newMenu/adviserDetail.css

@@ -190,6 +190,9 @@
 .pagination{
     float: right;
 }
+.pagination a span,.pagination li a{
+    color: #7a7878;
+}
 .totalCount {
     float: right;
     margin-top: 28px;

+ 1 - 0
src/css/newMenu/adviserList.css

@@ -152,6 +152,7 @@ footer{
     border-radius: 50%;
     float: left;
     margin-left: 23px;
+    border-radius: 50%;
 }
 .adviserList ul li div .txt{
     width: 1000px;

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

@@ -559,7 +559,7 @@ a:active{text-decoration:none;}/* 指正在点的链接*/
 
 
 /*弹出消息提示*/
-.smg{width: 260px;height: 40px;text-align: center;transform: scale(0);
+.smg{height: 40px;text-align: center;transform: scale(0);padding: 0 20px;
     line-height:40px;background:#17a2b8;border-radius: 10px;
     position: fixed;top: -200px; left: 50%;margin-left: -130px;color:#ffffff;
     transition: all .3s ease-in-out;z-index: 9999999;

+ 77 - 3
src/js/newMenu/adviserList.js

@@ -52,8 +52,9 @@ $(function () {
             url: globalConfig.context + "/api/portal/identity/consultantList",
             data: {
                 pageNo: pageNo || 1,
-                pageSize: 15,
+                pageSize: 6,
                 name: dataList.name,
+                sortType:dataList.sortType
             },
             success: function (data) {
                 var theArrs = [];
@@ -85,10 +86,10 @@ $(function () {
                             <div>
                                 <a href="${globalConfig.context}/portal/adviser/adviserDetail?id=${thisdata.uid}">
                                     ${thisdata.personPortraitUrl&&thisdata.personPortraitUrl!=null?'<img src="'+globalConfig.avatarHost+'/upload'+thisdata.personPortraitUrl+'"/>':''}
-                                    <div class="txt">
+                                    <div class="txt" data-id=${thisdata.uid}>
                                         <div>
                                             <h4>${thisdata.username}<span>${txtCont}</span></h4>
-                                            <p>58<span class="heart"></span></p>
+                                            <p><span class="nubCollect">${thisdata.countInterest}</span>${thisdata.interested?'<span class="heart active"></span>':'<span class="heart"></span>'}</p>
                                         </div> 
                                         <p>${thisdata.introduction?thisdata.introduction:'暂无描述'}</p>
                                     </div>
@@ -133,6 +134,7 @@ $(function () {
                 $('.pageNumber').remove();
                 $('.pagePre').after(pageArr.join(''));
                 $('footer').show();
+                colFun();
             }
         });
     }
@@ -194,4 +196,76 @@ $(function () {
             $('#msg').val('');
         }, 2000)
     }
+    //收藏
+    function colFun(){
+        $('.txt .heart').click(function (e) {
+            e.preventDefault();
+             e.stopPropagation();
+             let heart = $(this);
+             let id=$(this).parents('.txt').attr('data-id')
+             if (heart.hasClass('active')) {
+                 collectionApi(0,id) //取消关注
+             } else {
+                 collectionApi(1,id) //关注
+             }
+         })
+    }
+    function collectionApi(index,ids) {
+        let nub=parseInt($('.nubCollect').text());
+        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(data.error[0].message);
+                }else{
+                    if(!index){
+                        $('.heart').removeClass('active');
+                        $('.collectionN').removeClass('active');
+                        $('.nubCollect').text((nub-1))
+                        $('#msg').val('取消关注')
+                    }else{
+                        $('.heart').addClass('active');
+                        $('.collectionN').addClass('active');
+                        $('.nubCollect').text((nub+1));
+                        $('#msg').val('关注成功,请至个人中心-我的关注查看.');
+                    }
+		            msg(index?'关注成功,请至个人中心-我的关注查看.':'取消关注');
+                }
+            }
+        })
+    }
+    //排序调用接口
+    sortFun();
+    function sortFun(){
+        $('.sort .relTime').click(function(){
+            if($(this).hasClass('active')){
+                $(this).removeClass('active');
+                dataList.sortType='';
+                loadDate();
+            }else{
+                $('.colNumber').removeClass('active')
+                $(this).addClass('active');
+                dataList.sortType=0;
+                loadDate();
+            }
+        })
+        $('.sort .colNumber').click(function(){
+            if($(this).hasClass('active')){
+                $(this).removeClass('active');
+                dataList.sortType='';
+                loadDate()
+            }else{
+                $('.relTime').removeClass('active')
+                $(this).addClass('active');
+                dataList.sortType=1;
+                loadDate()
+            }
+        })
+    }
 })

+ 1 - 1
template/newMenu/adviserList.html

@@ -137,7 +137,7 @@
             </div>
         </div>
         <div class="sort">
-            <a class="relTime active">发布时间</a><a class="colNumber">收藏量</a>
+            <a class="relTime active">发布时间</a><a class="colNumber">关注量</a>
         </div>
         <div class="adviserList">
             <ul>