...
|
...
|
@@ -18,11 +18,11 @@ const getDetailShareData = (article) => { |
|
|
let desc = '';
|
|
|
|
|
|
if (article.sort === 2) {
|
|
|
shareImage = article.coverImage;
|
|
|
desc = article.articleTitle;
|
|
|
shareImage = article.coverImage || '';
|
|
|
desc = article.articleTitle || '';
|
|
|
} else if (article.sort === 4) {
|
|
|
shareImage = article.coverUrl;
|
|
|
desc = article.content;
|
|
|
shareImage = article.coverUrl || '';
|
|
|
desc = article.content || '';
|
|
|
} else {
|
|
|
let blockList = get(article, 'blockList', []);
|
|
|
|
...
|
...
|
|