comments.phtml 651 Bytes
{{> layout/header}}
<div class="goods-comments-page yoho-page">
        {{#comments}}
        <div class="goods-comments">
        	{{#list}}
        	     <div class="comment-item">
        	     	<span class="user-name">
        	     		{{userName}}
        	     	</span>
        	     	<span class="goods-spec">
        	     		{{desc}}
        	     	</span>
        	     	<p class="detail-content">
        	     		{{content}}
        	     	</p>
        	     	<span class="comment-time">
        	     		{{time}}
        	     	</span>
        	     </div>
        	{{/list}}
        </div>
        {{/comments}}

</div>

{{> layout/footer}}