Authored by 姜敏

Merge branch 'release/1.6' of http://git.dev.yoho.cn/platform/yohobuy-portal-fe into release/1.6

... ... @@ -187,10 +187,10 @@ edit.prototype = {
if (ext == "mp4") {
_w.prepend('<video width="76" height="80" src="' + response.data + '"></video>');
} else {
if(src.indexOf("?imageView")){
src=util.__template(src,{width:"76",height:"80",mode:"2"});
if(response.data.indexOf("?imageView")){
response.data=util.__template(response.data,{width:"76",height:"80",mode:"2"});
}else{
src+="?imageView2/2/w/76/h/80";
response.data+="?imageView2/2/w/76/h/80";
}
_w.prepend('<img width="76" height="80" src="' + response.data + '">');
}
... ...