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