Authored by 孙凯

修改 图片模糊的bug review by hongmo

... ... @@ -45,7 +45,7 @@ export default class DoubleImage extends React.Component {
return (
<View style={{flexDirection: 'row',width: width,height: backgroundHeight,backgroundColor:'#f0f0f0'}}>
{list.map((data, i) => {
let backgroundImage = YH_Image.getSlicedUrl(data.pic, width/2, height/2, 2);
let backgroundImage = data.pic?data.pic:''; //YH_Image.getSlicedUrl(data.pic, width/2, height/2, 2);
let linkType = data.linkType;
let showProductInfo = data.showProductInfo?data.showProductInfo:false;
let product = data.product;
... ...
... ... @@ -62,7 +62,7 @@ export default class SingleImage extends React.Component {
let linkReource = data.resource;
let moduleOrder = resource.get('module_order') + 1;
let moduleType = resource.get('module_type');
let backgroundImage = YH_Image.getSlicedUrl(data.pic, width/2, imageHeight/2, 2);
let backgroundImage = data.pic?data.pic:'';//YH_Image.getSlicedUrl(data.pic, width/2, imageHeight/2, 2);
let yh_exposureData = this.props.yh_exposureData?this.props.yh_exposureData:null;
let url = '';
... ...