import 'css/newMenu/public.css';
import 'css/newMenu/header.css'
import 'css/newMenu/special.css';
import 'css/newMenu/quill.bubble.css';
import 'js/public.js';
$(function(){
var thePageNo = 1,
thePageLength = 1,
pageSize = 4;
init();
function init(){
//初始处理
$('.totalCommit').empty();
initState();
//分享
share();
//写答案、写想法
write();
//收藏关注跳转
jumpFollow();
//点赞
fabulous();
//评论点
commentClick();
};
function commentClick(){
$('.commentDz').click(function(){
if($(this).hasClass('active')){
$(this).removeClass('active');
$('.commentBody').hide();
}else{
$(this).addClass('active');
$('.commentBody').show();
loadDate();
pLun();
}
})
};
//获取id
function getRequest() {
var url = window.location.search; //获取url中"?"符后的字串
var theRequest = new Object();
if (url.indexOf("?") != -1) {
var str = url.substr(1),
strs = str.split("&");
for (var i = 0; i < strs.length; i++) {
theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
}
}
return theRequest;
};
//评论数据获取
function loadDate(pageNo) {
$('.commentList').hide()
let ids = getRequest().id;
$.ajax({
method: "get",
dataType: "json",
url: globalConfig.context + "/open/unlanded/comment/list",
data: {
pageNo: pageNo || 1,
pageSize:4,
commodityId:ids
},
success: function (data) {
var theArrs = [];
if(data&&data.error.length){
msg(data.error[0].message)
};
if(data.data.totalCommentCount==0){
return;
};
if (data.data && data.data.comments.list.length) {
let nub = data.data.comments.list.length;
for (let i = 0; i < nub; i++) {
let thisdata = data.data.comments.list[i],
times =thisdata.createTime?new Date(thisdata.createTime).toLocaleString():'';
if(thisdata.uname.indexOf('游客')>-1){
name='匿名'
}else{
name=thisdata.uname
};
theArrs.push(`
用户名:${name}
${(thisdata.content).replace(/<.*?>/g, "")}
`);
};
};
$('.commentList').show();
$('.totalCommit').html(`${data.data.totalCommentCount}条评论`)
$('.commentList>ul').empty();
$('.commentList>ul').append(theArrs.join(''));
if (!(data.data.comments.list.length)) {
$('.commentList>ul').html("暂无评论
");
$('.pagination_box').css('display', 'none');
}else{
$('.pagination_box').css('display', 'block');
}
thePageLength = data.data.comments.totalCount ? Math.ceil(data.data.comments.totalCount / pageSize) : 1;
$('.totalCount').html(`共${data.data.comments.totalCount}条数据 ${thePageLength}页`)
var pageArr = [],
firstNo = 1,
endNo = 5;
if (thePageNo > 3) {
firstNo = thePageNo - 2;
endNo = Math.min((Number(thePageNo) + 2), thePageLength);
} else {
endNo = Math.min(thePageLength, 5);
};
for (let i = firstNo; i <= endNo; i++) {
if (i == thePageNo) {
pageArr.push(
'' + i + ''
);
} else {
pageArr.push(
'' + i + ''
);
}
};
$('.pageNumber').remove();
$('.pagePre').after(pageArr.join(''));
pages();
}
});
};
//点赞
function fabulous(){
$('.fabulous').click(function(){
if($(this).hasClass('active')) return;
let nut = $(this).find('span').text(),
_this=$(this);
$(this).addClass('active');
$.ajax({
method:'get',
url:globalConfig.context+'/portal/special/addStar',
dataType:'json',
data:{
id:getRequest().id
},
success:function(data){
if(data.error&&data.error.length){
msg(data.error[0].message);
return;
}
_this.find('span').text(parseInt(nut)+1);
_this.removeClass('active');
}
})
});
};
//f分页
function pages() {
$('.pagination').on('click', 'li', function (e) {
e.preventDefault();
if (this.className === 'pagePre') {
if (thePageNo > 1) {
thePageNo = 1;
loadDate(thePageNo);
}
} else if (this.className === 'pageNext') {
if (thePageNo < thePageLength) {
thePageNo = thePageLength;
loadDate(thePageNo);
}
} else {
var nextPageNo = $(this).children()[0].text;
if (thePageNo != nextPageNo) {
$(this).siblings("li").removeClass("active");
$(this).addClass("active");
thePageNo = nextPageNo;
loadDate(thePageNo);
};
};
});
}
//关注
colFun();
function colFun(){
$('.txt .heart').click(function (e) {
let loginTxt=$('.head_login')[0];
if(loginTxt&&($(loginTxt).text())=='登录'){
window.location.hash='jump'
msg('请先登录!')
return false;
}else{
if(window.adminData&&window.adminData.mobile){
msg('账号不正确,请退出重新登入。')
return;
}
}
e.preventDefault();
e.stopPropagation();
let nub=parseInt($(this).siblings('.nubCollect').text()),
heart = $(this),
id=$(this).parents('.txt').attr('data-id');
if (heart.hasClass('active')) {
$(this).removeClass('active')
$(this).siblings('.nubCollect').text(nub-1);
collectionApi(0,id,nub) //取消关注
} else {
$(this).addClass('active');
$(this).siblings('.nubCollect').text(nub+1);
collectionApi(1,id,nub) //关注
}
})
}
function collectionApi(index,ids,nub) {
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){
$('#msg').val('取消关注')
}else{
$('#msg').val('关注成功,请至个人中心-我的关注查看.');
}
msg(index?'关注成功,请至个人中心-我的关注查看.':'取消关注');
}
}
})
};
//评论数量
function comNumber(){
$.ajax({
method:'get',
url:globalConfig.context + '/portal/special/addComment',
data:{
id:getRequest().id
}
}).done(function(data){
if(data.error&&data.error.length){
msg(data.error[0].message);
return ;
}
})
};
function jumpFollow(){
$('.collection .myCollect').click(function(){
let loginTxt=$('.head_login')[0];
if(loginTxt&&($(loginTxt).text())=='登录'){
$('.head_login').click();
window.location.hash='jump';
return false;
}else{
if(window.adminData&&window.adminData.mobile){
msg('账号不正确,请退出重新登入。')
return;
}
window.location.href= globalConfig.context+'/user/account/index.html#/collection';
}
});
$('.collection .myFollow').click(function(){
let loginTxt=$('.head_login')[0];
if(loginTxt&&($(loginTxt).text())=='登录'){
$('.head_login').click();
window.location.hash='jump';
return false;
}else{
if(window.adminData&&window.adminData.mobile){
msg('账号不正确,请退出重新登入。')
return;
}
window.location.href= globalConfig.context+'/user/account/index.html#/follow';
}
})
};
//评论
function pLun(){
$('.commentBody .btn').click(function(e){
e.preventDefault();
let val = $('.commentBody .search').val(),
plNum = $('.commentDz span').text();;
if(!val.trim()){
$('#msg').val('请填写评论内容.')
msg('请填写评论内容.');
return ;
};
$.ajax({
method:'post',
dataType:'json',
url:globalConfig.context+'/open/addComment',
data:{
commodityId:getRequest().id,
content:val,
star:5,
commodityType:5
}
}).done(function(data){
if(data&&data.error.length){
msg(data.error[0].message)
return;
}
msg('感谢您的评论.');
$('.search').val('');
let tt = parseInt(plNum);
tt++;
$('.commentDz span').text(tt);
comNumber();
loadDate(1);
})
})
};
function write(){
$(' .writeXF div').click(function(){
msg('敬请期待!');
})
}
function initState(){
$('.fengX').hover(function(){
$(this).find('.fxWrap').show(10).addClass('active');
},function(){
$(this).find('.fxWrap').hide(200).removeClass('active');
});
};
function share(){
//好友
document.querySelector('.qqHy').onclick=function(){
let title = $('.detaiTitle h3').text(),
img= $('.detaiTitle img').attr('src');
shareQQ_friend(title, window.location.href, img)
};
//qq
document.querySelector('.qqKj').onclick=function(){
let title = $('.detaiTitle h3').text(),
img= $('.detaiTitle img').attr('src');
shareToQq(title, window.location.href, img)
};
//微博
document.querySelector('.xlWb').onclick=function(){
let title = $('.detaiTitle h3').text(),
img= $('.detaiTitle img').attr('src');
shareToXl(title,window.location.href,img);
};
};
//分享
function shareToQq(title, url, picurl) {
var shareqqzonestring = 'http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?summary=' + encodeURIComponent(title) + '&url=' +
encodeURIComponent(url) + '&pics=' + encodeURIComponent(picurl)+'&title='+title;
window.open(shareqqzonestring);
}
//微博
function shareToXl(title,url,picurl){
var sharesinastring='http://v.t.sina.com.cn/share/share.php?title='+title+'&url='+url+'&content=utf-8&sourceUrl='+url+'&pic='+picurl;
window.open(sharesinastring);
}
//qq好友
function shareQQ_friend(_title,_url,picurl){
var _shareUrl = 'http://connect.qq.com/widget/shareqq/iframe_index.html?';
_shareUrl += 'url=' + encodeURIComponent(_url); //分享的链接
_shareUrl += '&title=' + encodeURIComponent(_title); //分享的标题
_shareUrl+='&pics=' + encodeURIComponent(picurl)
window.open(_shareUrl,'_blank','height=520, width=720');
};
//提示框渐隐函数
function msg(txt) {
if($('.smg').hasClass('active')){
return ;
}
$('.smg').addClass('active');
var lit = $('#msg').val(txt);
setTimeout(function () {
$('.smg').removeClass('active');
$('#msg').val('');
}, 2000)
}
})