...
|
...
|
@@ -249,8 +249,8 @@ const processArticleDetail = (articleContent, isApp, gender, isWeixin, isqq, isW |
|
|
noLazy: index <= 3,
|
|
|
tagList: tagList,
|
|
|
isGif: /\.gif/i.test(_.get(value, 'singleImage.data[0].src', '')),
|
|
|
width: _.get(value, 'singleImage.data[0].width', 0) / 2,
|
|
|
height: _.get(value, 'singleImage.data[0].height', 0) / 2,
|
|
|
width: 320,
|
|
|
height: _.get(value, 'singleImage.data[0].height', 0) / _.get(value, 'singleImage.data[0].width', 1) * 320 // eslint-disable-line
|
|
|
});
|
|
|
}
|
|
|
|
...
|
...
|
|