liting2017 6 years ago
parent
commit
d772da4625
4 changed files with 83 additions and 27 deletions
  1. 13 5
      src/css/newMenu/special.css
  2. 25 8
      src/js/newMenu/special.js
  3. 44 13
      src/js/newMenu/specialDetail.js
  4. 1 1
      src/js/search.js

+ 13 - 5
src/css/newMenu/special.css

@@ -89,11 +89,15 @@
     clear: both;
     width: 100%
 }
+.spList ul li:last-child{
+    margin-bottom:25px;
+}
 .spList ul li .title{
     overflow: hidden;
     
 }
 .spList ul li .title h3{
+    width: 100%;
     font-size: 16px;
     color: #1797e9;
     float: left;
@@ -104,17 +108,18 @@
     font-size: 14px;
     color: #666666;
 }
+.ql-editor{
+    white-space: inherit;
+}
 .spList ul li p{
     clear: both;
     font-size: 14px;
     color: #666666;
     margin-top: 24px;
     overflow: hidden;
-    display: -webkit-box;              
-    text-overflow: ellipsis;            
-    -webkit-box-orient: vertical;       
-    -webkit-line-clamp:3;
-    text-align: justify
+    white-space:nowrap; 
+    text-overflow:ellipsis; 
+    -o-text-overflow:ellipsis;
 }
 .spList .guide{
     text-align: right;
@@ -181,6 +186,8 @@
     color: #1797e9;
 }
 .spList li .title time{
+    font-size: 14px;
+    float: right;
     display: inline-block;
     margin-left: 45px;
     color: #999999;
@@ -459,6 +466,7 @@
     height: 34px;
     line-height: 34px;
     margin: 20px 0;
+    margin-right: 15px;
     display: inline-block;
 }
 .pagination_box .inp button{

+ 25 - 8
src/js/newMenu/special.js

@@ -7,7 +7,7 @@ $(function(){
     var thePageNo = 1,
         thePageLength = 1,
         dataList = {},
-        pageSize = 7;
+        pageSize = 6;
    init();
    function init(){
         //写答案、写想法
@@ -110,8 +110,8 @@ $(function(){
                 pageSize: pageSize,
                 title: dataList.name,
                 status:1,
-                recommend:dataList.hot?'0':'1',
-                top:dataList.hot?'1':'0',
+                recommend:dataList.hot?'':'1',
+                top:dataList.hot?'1':'',
                 category:dataList.types!='0'?dataList.types:''
             },
             success: function (data) {
@@ -126,6 +126,7 @@ $(function(){
                         /* 关键字 */
                         let keyword =(thisdata.keyword).split(',')||[],
                             theKeyWord = '';
+                            keyword.length=3;
                             keyword.map(item=>{
                                 theKeyWord+=`<span>#${item}#</span>`
                             });
@@ -300,12 +301,20 @@ $(function(){
             if (this.className === 'pagePre') {
                 if (thePageNo > 1) {
                     thePageNo = 1;
-                    loadDate(thePageNo);
+                    if(dataList.hot=='2'){
+                        loadDate(thePageNo);
+                        return ;
+                    }
+                    proDate(thePageNo)
                 }
             } else if (this.className === 'pageNext') {
                 if (thePageNo < thePageLength) {
                     thePageNo = thePageLength;
-                    loadDate(thePageNo);
+                    if(dataList.hot=='2'){
+                        loadDate(thePageNo);
+                        return ;
+                    }
+                    proDate(thePageNo)
                 }
             } else {
                 var nextPageNo = $(this).children()[0].text;
@@ -313,7 +322,11 @@ $(function(){
                     $(this).siblings("li").removeClass("active");
                     $(this).addClass("active");
                     thePageNo = nextPageNo;
-                    loadDate(thePageNo);
+                    if(dataList.hot=='2'){
+                        loadDate(thePageNo);
+                        return ;
+                    }
+                    proDate(thePageNo)
                 };
             };
         });
@@ -325,7 +338,11 @@ $(function(){
             let val = $(this).siblings().val();
             if (!isNaN(val) && val <= thePageLength && val > 0&&val%1=='0') {
                 thePageNo = val;
-                loadDate(parseInt(thePageNo));
+                if(dataList.hot=='2'){
+                    loadDate(thePageNo);
+                    return ;
+                }
+                proDate(thePageNo)
             } else {
                 msg('请输入正确页码')
             }
@@ -334,7 +351,7 @@ $(function(){
     //搜索
     search();
     function search() {
-        $('.specialLeft .btn').click(function () {
+        $('.specialLeft .input-append .btn').click(function () {
             let val = $('.search').val();
             dataList.name = val;
             if($('.spType li').eq(2).hasClass('active')){

+ 44 - 13
src/js/newMenu/specialDetail.js

@@ -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);
             })
         })

+ 1 - 1
src/js/search.js

@@ -158,7 +158,7 @@ $(function(){
                 case "expert":window.open(globalConfig.context + `/portal/subscriberDetail?uid=${dataId}&type=1`);break;//专家
                 case "adviser":window.open(globalConfig.context + `/portal/adviser/adviserDetail?id=${dataId}`);break;//顾问
                 case "legal_adviser":window.open(globalConfig.context + `/portal/service/safeguardingDetail?id=${dataId}`);break;//顾问
-                case "knowledge_base":window.open(globalConfig.context + `/portal/news/newsDetail?id=${dataId}`);break;//顾问
+                case "knowledge_base":window.open(globalConfig.context + `/portal/special/specialDetail?id=${dataId}`);break;//顾问
                 default :break;
             }
         })