Authored by liangyi.chen@yoho.cn

Merge branch 'hotfix-imageUrl-0605' into test6.9.6

... ... @@ -203,7 +203,7 @@
var imgList = rowData.imgList;
str =str + '<p>';
if(imgList !=null){//可能没有图片
str = str + ' <img style="width:60px; height: 60px;margin-left: 3px" src="'+ imgList[0]+'" >' ;
str = str + ' <img style="width:60px; height: 60px;margin-left: 3px" src="'+ imgList[0]+'?imageView/2/w/60/h/60" >' ;
/*for (var i=0; i<imgList.length; i++) {
if(i > 0 && i % 4 == 0){
str = str + "</br>";//每四张换行
... ...
... ... @@ -218,7 +218,7 @@
var imgList = rowData.imgList;
str =str + '<p>';
if(imgList !=null){//可能没有图片
str = str + ' <img style="width:60px; height: 60px;margin-left: 3px" src="'+ imgList[0]+'" >' ;
str = str + ' <img style="width:60px; height: 60px;margin-left: 3px" src="'+ imgList[0]+'?imageView/2/w/60/h/60" >' ;
}
str = str + "<a role='showDetail' dataId='"+rowData.articleId+ "' index='"+ rowIndex + "' status='1' style='margin-left:10px'>查看详情</a>";
... ...
... ... @@ -290,7 +290,7 @@
var imgList = rowData.imgList;
str =str + '<p>';
if(imgList !=null){//可能没有图片
str = str + ' <img style="width:60px; height: 60px;margin-left: 3px" src="'+ imgList[0]+'" >' ;
str = str + ' <img style="width:60px; height: 60px;margin-left: 3px" src="'+ imgList[0]+'?imageView/2/w/60/h/60" >' ;
}
... ...
... ... @@ -204,7 +204,7 @@
var sourceUrl = rowData.sourceUrl;
str =str + '<p>';
if(imgList !=null && imgList.length != 0){//可能没有图片
str = str + ' <img style="width:60px; height: 60px;margin-left: 3px" src="'+ imgList[0]+'" >' ;
str = str + ' <img style="width:60px; height: 60px;margin-left: 3px" src="'+ imgList[0]+'?imageView/2/w/60/h/60" >' ;
}
str = str + "<a role='linkDetail' target='_blank' style='margin-left:10px' href="+sourceUrl+">查看原文</a>"
... ...
... ... @@ -195,7 +195,7 @@
if(value == null || value == ""){
return "";
}else{//由标签同步过来的话题 没有图
return '<a target="_blank" href="' + value + '"><img src="' + value + '" style="width: 120px;height: 120px;" /></a>';
return '<a target="_blank" href="' + value + '"><img src="' + value + '?imageView/2/w/60/h/60" style="width: 60px;height: 60px;" /></a>';
}
}
... ...
... ... @@ -140,7 +140,7 @@
if(value == null || value==""){
return "";
}
return '<div><img style="width: 100px;height: 100px" src="'+value+'"/></div>';
return '<div><img style="width: 60px;height: 60px" src="'+value+ '?imageView/2/w/60/h/60"/></div>';
}
}, {
title: "数据统计",
... ...
... ... @@ -207,7 +207,7 @@
if(value == null || value==""){
return "";
}
return '<div><img style="width: 100px;height: 100px" src="'+value+'"/></div>';
return '<div><img style="width: 60px;height: 60px" src="'+value+'?imageView/2/w/60/h/60"/></div>';
}
}, {
title: "简介",
... ...