|
@@ -7,34 +7,35 @@ $(function(){
|
|
|
var thePageNo = 1,
|
|
|
thePageLength = 1,
|
|
|
dataList = {},
|
|
|
- pageSize = 6;
|
|
|
+ pageSize = 7;
|
|
|
init();
|
|
|
function init(){
|
|
|
- //初始处理
|
|
|
- initState();
|
|
|
- //分享
|
|
|
- share();
|
|
|
//写答案、写想法
|
|
|
write();
|
|
|
//收藏关注跳转
|
|
|
jumpFollow();
|
|
|
- //关注顾问
|
|
|
+ //分页
|
|
|
pages();
|
|
|
//点击切换数据
|
|
|
tabData();
|
|
|
//点击小分类
|
|
|
allType();
|
|
|
- //点赞
|
|
|
- fabulous();
|
|
|
+ //初始调用
|
|
|
+ proDate();
|
|
|
};
|
|
|
+ //点赞
|
|
|
function fabulous(){
|
|
|
- $('.fabulous').click(function(){
|
|
|
- let nut = $(this).find('i').text();
|
|
|
- $(this).find('i').text(parseInt(nut)+1);
|
|
|
- let ids = $(this).parents('.guide').find('input').val();
|
|
|
+ $('.fabulous').on('click',function(e){
|
|
|
+ e.preventDefault();
|
|
|
+ e.stopPropagation();
|
|
|
+ if($(this).hasClass('active')) return ;
|
|
|
+ let nut = $(this).find('span').text(),
|
|
|
+ _this= $(this),
|
|
|
+ ids = $(this).parents('.guide').find('input').val();
|
|
|
+ $(this).addClass('active');
|
|
|
$.ajax({
|
|
|
method:'get',
|
|
|
- url:globalConfig.context+'xsxsx',
|
|
|
+ url:globalConfig.context+'/portal/special/addStar',
|
|
|
dataType:'json',
|
|
|
data:{
|
|
|
id:ids
|
|
@@ -44,34 +45,56 @@ $(function(){
|
|
|
msg(data.error[0].message);
|
|
|
return;
|
|
|
}
|
|
|
+ if(nut.indexOf('点赞')>-1){
|
|
|
+ _this.find('span').text('1');
|
|
|
+ _this.removeClass('active');
|
|
|
+ return;
|
|
|
+ };
|
|
|
+ _this.find('span').text(parseInt(nut)+1);
|
|
|
+ _this.removeClass('active');
|
|
|
}
|
|
|
})
|
|
|
});
|
|
|
};
|
|
|
+ //切换种类
|
|
|
function allType(){
|
|
|
$('.proType li').click(function(){
|
|
|
- let index = $(this).index();
|
|
|
- if(index){
|
|
|
- $(this).addClass('active').siblings().removeClass('active');
|
|
|
- dataList.types = index;
|
|
|
- proDate();
|
|
|
- }
|
|
|
+ let index = $(this).attr('value');
|
|
|
+ $(this).addClass('active').siblings().removeClass('active');
|
|
|
+ dataList.types = index;
|
|
|
+ proDate();
|
|
|
})
|
|
|
};
|
|
|
+ //切换全部分类
|
|
|
function tabData(){
|
|
|
$('.spType li').click(function(){
|
|
|
let index = $(this).index();
|
|
|
$(this).addClass('active').siblings().removeClass('active');
|
|
|
- dataList.type=index+1;
|
|
|
+ $('.proType li').eq(1).addClass('active').siblings().removeClass('active');
|
|
|
+ dataList.types=1;
|
|
|
+ dataList.name='';
|
|
|
+ $('.search').val('');
|
|
|
+ dataList.hot=index;
|
|
|
if(index=='2'){
|
|
|
$('.proType').hide();
|
|
|
- $('.spList ').empty();
|
|
|
+ $('.spList ').hide();
|
|
|
$('.adviserList').show();
|
|
|
loadDate();
|
|
|
+ $('.spType').css({
|
|
|
+ "border-bottom":'none'
|
|
|
+ });
|
|
|
+ $('.specialLeft hr').hide();
|
|
|
}else{
|
|
|
$('.proType').show();
|
|
|
+ $('.spList ').show();
|
|
|
$('.adviserList').hide();
|
|
|
+ dataList.types=0;
|
|
|
proDate();
|
|
|
+ $('.spType').css({
|
|
|
+ "border-bottom":'1px solid #eeeeee'
|
|
|
+ });
|
|
|
+ $('.specialLeft hr').show();
|
|
|
+
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -81,13 +104,15 @@ $(function(){
|
|
|
$.ajax({
|
|
|
method: "get",
|
|
|
dataType: "json",
|
|
|
- url: globalConfig.context + "/api/portal/identity/consultantList",
|
|
|
+ url: globalConfig.context + "/portal/special/specialList",
|
|
|
data: {
|
|
|
pageNo: pageNo || 1,
|
|
|
pageSize: pageSize,
|
|
|
- name: dataList.name,
|
|
|
- type:dataList.type||'0',
|
|
|
- types:dataList.types||'1',
|
|
|
+ title: dataList.name,
|
|
|
+ status:1,
|
|
|
+ recommend:dataList.hot?'0':'1',
|
|
|
+ top:dataList.hot?'1':'0',
|
|
|
+ category:dataList.types!='0'?dataList.types:''
|
|
|
},
|
|
|
success: function (data) {
|
|
|
var theArrs = [];
|
|
@@ -98,22 +123,36 @@ $(function(){
|
|
|
let nub = data.data.list.length;
|
|
|
for (let i = 0; i < nub; i++) {
|
|
|
let thisdata = data.data.list[i];
|
|
|
+ /* 关键字 */
|
|
|
+ let keyword =(thisdata.keyword).split(',')||[],
|
|
|
+ theKeyWord = '';
|
|
|
+ keyword.map(item=>{
|
|
|
+ theKeyWord+=`<span>#${item}#</span>`
|
|
|
+ });
|
|
|
theArrs.push(`
|
|
|
<li>
|
|
|
<div class="title">
|
|
|
- <h3><a href="${globalConfig.context}/portal/adviser/adviserDetail?id=${thisdata.id}">${thisdata.title}</a></h3><span>阅读(${thisdata.nub})</span>
|
|
|
+ <h3><a href="${globalConfig.context}/portal/special/specialDetail?id=${thisdata.id}">${thisdata.title}</a><time>${thisdata.releaseTime?((new Date(thisdata.releaseTime)).toLocaleString()).split(' ')[0]:''}</time></h3>
|
|
|
</div>
|
|
|
- <p>${thisdata.pro}</p>
|
|
|
+ <p>${thisdata.summary&&thisdata.summary.length>170?thisdata.summary.substr(0,170)+'...':thisdata.summary}</p>
|
|
|
<div class="guide">
|
|
|
- <span><img src="${globalConfig.portalHost}/img/newMenu/pj.png" alt="">${thisdata.ping?thisdata.ping:'评论'}</span>
|
|
|
- <span class="fabulous"><img src="${globalConfig.portalHost}/img/newMenu/dz.png" alt=""><i>${thisdata.zang?thisdata.zang:'点赞'}</i></span>
|
|
|
- <span class="fengX"><img src="${globalConfig.portalHost}/img/newMenu/fx.png" alt="">分享
|
|
|
- <div class="fxWrap">
|
|
|
- <span class="qqHy"><img src="${globalConfig.portalHost}/img/indedImg/qq_yes.png" alt=""></span>
|
|
|
- <span class="qqKj"><img src="${globalConfig.portalHost}/img/indedImg/kj_yes.png" alt=""></span>
|
|
|
- <span class="xlWb"><img src="${globalConfig.portalHost}/img/indedImg/xl_yes.png" alt=""></span>
|
|
|
- </div>
|
|
|
- </span>
|
|
|
+ <div class="guideLeft">
|
|
|
+ <span>阅读(<span>${thisdata.readNumber}</span>)</span>
|
|
|
+ <div class="keyword">
|
|
|
+ ${theKeyWord}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="guideRight">
|
|
|
+ <span><img src="${globalConfig.portalHost}/img/newMenu/pj.png" alt="">${thisdata.commentNumber?thisdata.commentNumber:'评论'}</span>
|
|
|
+ <span class="fabulous"><img src="${globalConfig.portalHost}/img/newMenu/dz.png" alt=""><span>${thisdata.starNumber?thisdata.starNumber:'点赞'}</span></span>
|
|
|
+ <span class="fengX"><img src="${globalConfig.portalHost}/img/newMenu/fx.png" alt="">分享
|
|
|
+ <div class="fxWrap">
|
|
|
+ <span class="qqHy"><img src="${globalConfig.portalHost}/img/indedImg/qq_yes.png" alt=""></span>
|
|
|
+ <span class="qqKj"><img src="${globalConfig.portalHost}/img/indedImg/kj_yes.png" alt=""></span>
|
|
|
+ <span class="xlWb"><img src="${globalConfig.portalHost}/img/indedImg/xl_yes.png" alt=""></span>
|
|
|
+ </div>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
<input type="hidden" value="${thisdata.id}">
|
|
|
</div>
|
|
|
</li>
|
|
@@ -152,12 +191,19 @@ $(function(){
|
|
|
};
|
|
|
$('.pageNumber').remove();
|
|
|
$('.pagePre').after(pageArr.join(''));
|
|
|
+ //点赞
|
|
|
+ fabulous();
|
|
|
+ //分享
|
|
|
+ share();
|
|
|
+ //初始处理
|
|
|
+ initState();
|
|
|
}
|
|
|
});
|
|
|
};
|
|
|
//顾问数据
|
|
|
function loadDate(pageNo) {
|
|
|
$('.loading').show();
|
|
|
+ pageSize=6;
|
|
|
$.ajax({
|
|
|
method: "get",
|
|
|
dataType: "json",
|
|
@@ -203,6 +249,7 @@ $(function(){
|
|
|
<p><span>好评率 ( ${thisdata.favorableRate} )</span><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>
|
|
|
+ <input type="hidden" value= ${thisdata.uid}/>
|
|
|
</div>
|
|
|
</a>
|
|
|
</div>
|
|
@@ -242,6 +289,7 @@ $(function(){
|
|
|
};
|
|
|
$('.pageNumber').remove();
|
|
|
$('.pagePre').after(pageArr.join(''));
|
|
|
+ colFun();
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -275,7 +323,7 @@ $(function(){
|
|
|
function inpFun() {
|
|
|
$('.inp button').on('click', function () {
|
|
|
let val = $(this).siblings().val();
|
|
|
- if (!isNaN(val) && val <= thePageLength && val > 0) {
|
|
|
+ if (!isNaN(val) && val <= thePageLength && val > 0&&val%1=='0') {
|
|
|
thePageNo = val;
|
|
|
loadDate(parseInt(thePageNo));
|
|
|
} else {
|
|
@@ -298,9 +346,11 @@ $(function(){
|
|
|
}
|
|
|
|
|
|
//关注
|
|
|
- colFun();
|
|
|
+
|
|
|
function colFun(){
|
|
|
$('.txt .heart').click(function (e) {
|
|
|
+ e.preventDefault();
|
|
|
+ e.stopPropagation();
|
|
|
let loginTxt=$('.head_login')[0];
|
|
|
if(loginTxt&&($(loginTxt).text())=='登录'){
|
|
|
window.location.hash='jump'
|
|
@@ -312,8 +362,6 @@ $(function(){
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
|
- e.preventDefault();
|
|
|
- e.stopPropagation();
|
|
|
let nub=parseInt($(this).siblings('.nubCollect').text()),
|
|
|
heart = $(this),
|
|
|
id=$(this).parents('.txt').attr('data-id');
|
|
@@ -395,23 +443,30 @@ $(function(){
|
|
|
};
|
|
|
function share(){
|
|
|
//好友
|
|
|
- document.querySelector('.qqHy').onclick=function(){
|
|
|
- let title = $(this).parents('li').find('h3').text(),
|
|
|
- img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
|
|
|
- shareQQ_friend(title, window.location.href, img)
|
|
|
- };
|
|
|
+ $('.qqHy').click(function(){
|
|
|
+ let title = $(this).parents('li').find('h3 a').text(),
|
|
|
+ id=$(this).parents('li').find('input').val(),
|
|
|
+ img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png",
|
|
|
+ url = window.location.origin+'/portal/special/specialDetail?id'+id;
|
|
|
+ shareQQ_friend(title, url, img)
|
|
|
+ })
|
|
|
//qq
|
|
|
- document.querySelector('.qqKj').onclick=function(){
|
|
|
- let title = $(this).parents('li').find('h3').text(),
|
|
|
- img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
|
|
|
- shareToQq(title, window.location.href, img)
|
|
|
- };
|
|
|
+ $('.qqKj').click(function(){
|
|
|
+ let title = $(this).parents('li').find('h3 a').text(),
|
|
|
+ id=$(this).parents('li').find('input').val(),
|
|
|
+ url = window.location.origin+'/portal/special/specialDetail?id'+id,
|
|
|
+ img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
|
|
|
+ shareToQq(title, url, img)
|
|
|
+ });
|
|
|
//微博
|
|
|
- document.querySelector('.xlWb').onclick=function(){
|
|
|
- let title = $(this).parents('li').find('h3').text(),
|
|
|
+ $('.xlWb').click(function(){
|
|
|
+ let title = $(this).parents('li').find('h3 a').text(),
|
|
|
+ id=$(this).parents('li').find('input').val(),
|
|
|
+ url = window.location.origin+'/portal/special/specialDetail?id'+id,
|
|
|
img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
|
|
|
- shareToXl(title,window.location.href,img)
|
|
|
- };
|
|
|
+
|
|
|
+ shareToXl(title,url,img)
|
|
|
+ });
|
|
|
};
|
|
|
//分享
|
|
|
function shareToQq(title, url, picurl) {
|