|
|
|
@ -237,10 +237,10 @@ $(function(){
|
|
|
|
|
stars_html += '<span class="glyphicon glyphicon-star"></span>';
|
|
|
|
|
}
|
|
|
|
|
$('#reviews_stars_'+data.html_id).html('星级:'+stars_html);
|
|
|
|
|
if($.parseJSON(data.pic).length > 0){
|
|
|
|
|
if(data.pic.length > 0){
|
|
|
|
|
var pic_html = '';
|
|
|
|
|
for(var j=0;j<$.parseJSON(data.pic).length;j++){
|
|
|
|
|
pic_html += '<p><a href="'+$.parseJSON(data.pic)[j]+'" target="_blank"><img src="'+$.parseJSON(data.pic)[j]+'"/></a></p>';
|
|
|
|
|
for(var j=0;j<data.pic.length;j++){
|
|
|
|
|
pic_html += '<p><a href="'+data.pic[j]+'" target="_blank"><img src="'+data.pic[j]+'"/></a></p>';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$('#excel_pic_'+data.html_id).html(pic_html);
|
|
|
|
|