|
@@ -1,6 +1,7 @@
|
|
|
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(){
|
|
@@ -74,13 +75,19 @@ $(function(){
|
|
|
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(`
|
|
|
<li>
|
|
|
- <div>用户名:${nub.name}<time>${nub.time}</time></div>
|
|
|
- <p>${nub.pro}</p>
|
|
|
+ <div>用户名:${name}<time>${times}</time></div>
|
|
|
+ <p>${(thisdata.content).replace(/<.*?>/g, "")}</p>
|
|
|
</li>`);
|
|
|
};
|
|
|
-
|
|
|
};
|
|
|
$('.commentList').show();
|
|
|
$('.totalCommit').html(`${data.data.totalCommentCount}条评论`)
|
|
@@ -126,15 +133,14 @@ $(function(){
|
|
|
$('.fabulous').click(function(){
|
|
|
if($(this).hasClass('active')) return;
|
|
|
let nut = $(this).find('span').text(),
|
|
|
- _this=$(this),
|
|
|
- ids = $(this).parents('.guide').find('input').val();
|
|
|
+ _this=$(this);
|
|
|
$(this).addClass('active');
|
|
|
$.ajax({
|
|
|
method:'get',
|
|
|
url:globalConfig.context+'/portal/special/addStar',
|
|
|
dataType:'json',
|
|
|
data:{
|
|
|
- id:ids
|
|
|
+ id:getRequest().id
|
|
|
},
|
|
|
success:function(data){
|
|
|
if(data.error&&data.error.length){
|
|
@@ -226,6 +232,21 @@ $(function(){
|
|
|
}
|
|
|
})
|
|
|
};
|
|
|
+ //评论数量
|
|
|
+ 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];
|
|
@@ -258,19 +279,24 @@ $(function(){
|
|
|
};
|
|
|
//评论
|
|
|
function pLun(){
|
|
|
- $('.commentBody .btn').click(function(){
|
|
|
- let val = $('.commentBody .search').val();
|
|
|
+ $('.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:'get',
|
|
|
+ method:'post',
|
|
|
dataType:'json',
|
|
|
- url:globalConfig.context+'/portal/special/addComment',
|
|
|
+ url:globalConfig.context+'/open/addComment',
|
|
|
data:{
|
|
|
- id:getRequest().id,
|
|
|
- value:val
|
|
|
+ commodityId:getRequest().id,
|
|
|
+ content:val,
|
|
|
+ star:5,
|
|
|
+ commodityType:5
|
|
|
}
|
|
|
}).done(function(data){
|
|
|
if(data&&data.error.length){
|
|
@@ -278,6 +304,11 @@ $(function(){
|
|
|
return;
|
|
|
}
|
|
|
msg('感谢您的评论.');
|
|
|
+ $('.search').val('');
|
|
|
+ let tt = parseInt(plNum);
|
|
|
+ tt++;
|
|
|
+ $('.commentDz span').text(tt);
|
|
|
+ comNumber();
|
|
|
loadDate(1);
|
|
|
})
|
|
|
})
|