瀏覽代碼

项目评论

liting2017 6 年之前
父節點
當前提交
26a99f2476

+ 48 - 2
src/css/newMenu/serviceDetails.css

@@ -394,7 +394,7 @@
     clear: both;
 }
 .evaluateList>ul>li {
-    border-bottom: 1px dotted #efefef;
+    border-bottom: 1px dotted #c6c2c2;
     padding-left: 26px;
     overflow: hidden;
 } 
@@ -406,7 +406,7 @@
 .evaluateList>ul>li>div.stasf{
     width: 370px;
     overflow: hidden;
-    padding: 45px 0 34px;;
+    padding: 25px 0 10px;;
 }
 .evaluateList>ul>li>div.stasf>p{
     margin-right: 50px;
@@ -431,6 +431,7 @@
 .satisfiedContent {
     clear: both;
     overflow: hidden;
+    margin-top: 8px;
     padding-bottom: 27px;
 }
 .satisfiedContent p{
@@ -461,3 +462,48 @@ margin-bottom: 100px;
     margin-left: 10px;
 }
 
+#commentArea{
+    width: 1000px;
+    height: 80px;
+    outline: none;
+    margin-left: 26px;
+    resize: none;
+    margin-top: 10px;
+    text-indent:1em;
+    line-height: 20px;
+    padding-top: 5px;
+}
+#commentArea:focus{
+    border-color:transparent; 
+    box-shadow: 0 0 10px #1697ea ;
+}
+.CommentSend button{
+    width: 150px;
+    height: 34px;
+    margin-left: 26px;
+    margin-top: 6px;
+}
+.commentStar{
+    overflow: hidden;
+    margin-left: 26px;
+    margin-top: 10px;
+    line-height: 20px;
+}
+.commentStar>span{
+    display: inline-block;
+    float: left;
+    color: #ff570c
+}
+.commentStar .ulStar{
+    float: left;
+    margin-left: 6px;
+}
+.commentStar .ulStar span{
+    display: inline-block;
+    cursor: pointer;
+    margin-right: 4px;
+    font-size: 20px;
+    float: left;
+    color: #ff570c
+}
+

+ 52 - 7
src/js/newMenu/serviceDetails.js

@@ -128,7 +128,7 @@ $(function () {
                         theArrs.push(`
                         <li>
                         <div class="stasf">
-                            <p>用户 :<span class="uName">${thisdata.commenter}</span></p>
+                            <p>用户 :<span class="uName">${thisdata.commenter?thisdata.commenter:'匿名'}</span></p>
                             <div class="satisfied">
                                 <span>满意度:</span>
                                 <ol>
@@ -140,17 +140,16 @@ $(function () {
                                 </ol>
                             </div>
                         </div>
+                        <div><time>${times}</time></div>
                         <div class="satisfiedContent">
                             <p>${thisdata.content}</p> 
-                            <time>${times}</time>
                         </div>
                     </li>`);
                     };
-                    console.log(data.data)
                     if(data.data.totalCommentCount>0){
-                        let good = ((data.data.positiveCommentCount)/(data.data.totalCommentCount)).toFixed(2)*100,
-                        middle = ((data.data.ordinaryCommentCount)/(data.data.totalCommentCount)).toFixed(2)*100,
-                        bad = ((data.data.negativeCommentCount)/(data.data.totalCommentCount)).toFixed(2)*100;
+                        let good = (((data.data.positiveCommentCount)/(data.data.totalCommentCount))*100).toFixed(1),
+                        middle = (((data.data.ordinaryCommentCount)/(data.data.totalCommentCount))*100).toFixed(1),
+                        bad = (100-good-middle).toFixed(1);
                         $('.commentDetails').html(`
                             评价 :<span>好评(${good+'%'})</span><span>中评(${middle+'%'})</span><span>差评(${bad+'%'})</span>
                             `)
@@ -187,7 +186,6 @@ $(function () {
                         );
                     }
                 };
-                
                 $('.pageNumber').remove();
                 $('.pagePre').after(pageArr.join(''));
             }
@@ -231,4 +229,51 @@ $(function () {
             $('#msg').val('');
         }, 2000)
     }
+    //评论星星
+    star();
+    function star(){
+        $('.commentStar .ulStar span').hover(function(){
+            $(this).addClass('glyphicon-star').removeClass('glyphicon-star-empty').prevAll().addClass('glyphicon-star').removeClass('glyphicon-star-empty');
+            $(this).nextAll().removeClass('glyphicon-star').addClass('glyphicon-star-empty').stop(true);
+        })
+    }
+    //新建评论
+    addComment();
+    function addComment(){
+        $('.CommentSend .btn').click(function(e){
+            e.preventDefault();
+            let starNum = $('.commentStar .ulStar span.glyphicon-star').length,
+                textVal = $('#commentArea').val();
+                console.log(starNum,textVal)
+            if(!starNum){
+                msg('请您选择星级!');
+                return;
+            }
+            if(!textVal){
+                msg('请您填写评论内容!');
+                return;
+            }
+            $.ajax({
+                method:'post',
+                url: globalConfig.context + "/open/addComment",
+                dataType:'json',
+                data:{
+                    commodityId:ids,
+					content:textVal,
+					star:starNum,
+                }
+            }).done(function(data){
+                if(data&&data.error.length){
+                    msg(data.error[0].message);
+                    return;
+                }  
+                msg('评论成功,感谢您的评论。');
+                $('#commentArea').val('');
+                $('.ulStar span').removeClass('glyphicon-star').addClass('glyphicon-star-empty');
+                loadDate();
+            }).error(error=>{
+                console.log(error)
+            })
+        })
+    }
 })

+ 57 - 0
src/js/newMenu/shopList.js

@@ -290,4 +290,61 @@ $(function(){
             $('#msg').val('');
         }, 2000)
     }
+    //登录
+     //登录
+     $('#form_login').submit(function(e){
+		e.preventDefault();
+		var Suser=$('#Lo_user').val();
+		var Spass=$('#Lo_pass').val();	
+		var type=$(".login_pass>#customerType").val();
+		var check_experts=$('#checks').prop('checked');		
+		if(Suser==''||Spass==''){	
+			msg('请填写用户名/密码.');
+			return false;
+		}else{	
+			$('.loading').show();		
+			let txt = "登录中,请稍后...",htmls=[],i=0,
+			txtArr = txt.split('');
+			txtArr.map(item=>{
+				htmls.push(`
+					<span>${item}</span>
+				`)
+			});
+			$('.loading div p').html(htmls);
+			$.ajax({
+              method: "POST",
+              dataType: "json",
+              url: globalConfig.context + "/signin",
+              data: {
+                      "mobile": Suser,
+					  "password": Spass,
+					  'type':type
+              },
+              success: function (rest) {
+				    $('.loading').hide();				
+					if (rest.error && rest.error.length) {					
+		                 msg(rest.error[0].message);	
+					} else {						
+						var  data = rest.data;
+                        if (data && data.requestURI) {
+                            var path = globalConfig.context + data.requestURI;
+                            if (data.queryString) {
+                                path += '?' + data.queryString;
+                            }
+                            if (window.location.hash) {
+                                path += window.location.hash;
+                            }
+                            window.location.href = path;
+                        } else {
+                            msg('登录成功');
+                            setTimeout(()=>{
+                                window.location.reload();
+                            },500)
+                        }                       
+					}
+			   }
+          })
+                
+		}			
+	})
 })

+ 1 - 1
src/js/public.js

@@ -61,7 +61,7 @@ $(function(){
 	$('#form_login').submit(function(e){
 		let hrefs=window.location.href,
 			urls = hrefs.split('/').pop();
-		if(urls=='evaluate'){
+		if(urls=='evaluate'||urls=='shopList'){
 			return;
 		}
 		e.preventDefault();

+ 17 - 1
template/newMenu/serviceDetails.html

@@ -157,7 +157,7 @@
         <ol class="tabEvaluate">
             <li class="active">商品描述</li>
             <li>用户评价(<span class="numberBars">0</span>)
-            </ol>
+        </ol>
         <div class="tabList ">
             <div class="serviceDetailsList">
                 <div class="introduction">
@@ -166,6 +166,22 @@
             </div>
             <div class="evaluateList">
                 <div class="commentDetails">评价 :<span>好评-100%</span><span>中评-100%</span><span>差评-100%</span></div>
+                <div>
+                    <div class="commentStar">
+                        <span>选择星级 : </span>
+                        <div class="ulStar">
+                            <span class="glyphicon glyphicon-star-empty"></span>
+                            <span class="glyphicon glyphicon-star-empty"></span>
+                            <span class="glyphicon glyphicon-star-empty"></span>
+                            <span class="glyphicon glyphicon-star-empty"></span>
+                            <span class="glyphicon glyphicon-star-empty"></span>
+                        </div>
+                    </div>
+                    <textarea id="commentArea" placeholder="来说几句吧。。"></textarea>
+                    <div class="CommentSend">
+                        <button class="btn btn-primary">评论</button>
+                    </div>
+                </div>
                 <ul>
                     <li>
                         <div class="stasf">