|
@@ -1,5 +1,4 @@
|
|
|
import React from 'react'
|
|
|
-import { Link } from 'react-router-dom'
|
|
|
|
|
|
import { EyeOutlined } from '@ant-design/icons'
|
|
|
|
|
@@ -23,83 +22,84 @@ const ArticleCard: React.FC<IArticleCard> = props => {
|
|
|
const formatLabel = (str: string): string => {
|
|
|
return str ? `<img src=${item.LabelKeywordImgLink} alt="标签" class="mfyx-label-img" />` : ''
|
|
|
}
|
|
|
+ const handleToDetail = () => {
|
|
|
+ window.open(`/material/info/${(item as IBillBoardItem)?.ArticleId || (item as INewestItem).SourceId}`)
|
|
|
+ }
|
|
|
+
|
|
|
if (!item) return null
|
|
|
return (
|
|
|
- <Link
|
|
|
- to={`/material/info/${(item as IBillBoardItem)?.ArticleId || (item as INewestItem).SourceId}`}
|
|
|
- target={'_blank'}
|
|
|
- >
|
|
|
- <div className={styles['item-article']}>
|
|
|
+ <div className={styles['item-article']} onClick={handleToDetail}>
|
|
|
+ <div className="item-article-title">
|
|
|
<div
|
|
|
- className="item-article-title"
|
|
|
+ className="item-article-title-content"
|
|
|
dangerouslySetInnerHTML={{
|
|
|
__html: item?.IsResearch
|
|
|
? `${formatLabel(item.LabelKeywordImgLink)}<span>${title || item?.Title}</span>`
|
|
|
: title || item?.Title
|
|
|
}}
|
|
|
/>
|
|
|
- {(item as IBillBoardItem)?.BodyHighlight?.length > 0 ? (
|
|
|
- <>
|
|
|
- <div className="item-article-annotation line-eight">
|
|
|
- <div
|
|
|
- dangerouslySetInnerHTML={{
|
|
|
- __html: (item as IBillBoardItem)?.BodyHighlight.join('')
|
|
|
- }}
|
|
|
- />
|
|
|
+ </div>
|
|
|
+ {(item as IBillBoardItem)?.BodyHighlight?.length > 0 ? (
|
|
|
+ <>
|
|
|
+ <div className="item-article-annotation line-eight">
|
|
|
+ <div
|
|
|
+ dangerouslySetInnerHTML={{
|
|
|
+ __html: (item as IBillBoardItem)?.BodyHighlight.join('')
|
|
|
+ }}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div className="item-time-right item-article-flex">
|
|
|
+ <div className="item-article-pv">
|
|
|
+ <EyeOutlined size={14} className="pv-icon" />
|
|
|
+ <span>{item.Pv || 0}</span>
|
|
|
</div>
|
|
|
- <div className="item-time-right item-article-flex">
|
|
|
- <div className="item-article-pv">
|
|
|
- <EyeOutlined size={14} className="pv-icon" />
|
|
|
- <span>{item.Pv || 0}</span>
|
|
|
- </div>
|
|
|
- <div className="item-article-publistdate">{item?.PublishDate}</div>
|
|
|
+ <div className="item-article-publistdate">{item?.PublishDate}</div>
|
|
|
+ </div>
|
|
|
+ </>
|
|
|
+ ) : (
|
|
|
+ <>
|
|
|
+ {(item as IBillBoardItem)?.Cover ? (
|
|
|
+ <div
|
|
|
+ className={`item-article-img-wrapper ${item?.Abstract?.length > 20 ? 'max-two-line' : 'max-one-line'}`}
|
|
|
+ >
|
|
|
+ <img src={(item as IBillBoardItem)?.Cover} alt="图像" className="item-article-cover" />
|
|
|
</div>
|
|
|
- </>
|
|
|
- ) : (
|
|
|
- <>
|
|
|
- {(item as IBillBoardItem)?.Cover ? (
|
|
|
- <div
|
|
|
- className={`item-article-img-wrapper ${item?.Abstract?.length > 20 ? 'max-two-line' : 'max-one-line'}`}
|
|
|
- >
|
|
|
- <img src={(item as IBillBoardItem)?.Cover} alt="图像" className="item-article-cover" />
|
|
|
- </div>
|
|
|
- ) : (
|
|
|
- <>
|
|
|
- {item?.Annotation ? (
|
|
|
- <div className={`item-article-annotation ${item?.Abstract?.length > 20 ? 'line-five' : 'line-six'}`}>
|
|
|
- <div>核心观点:</div>
|
|
|
- <div dangerouslySetInnerHTML={{ __html: item?.Annotation }} />
|
|
|
- </div>
|
|
|
- ) : (
|
|
|
- <div
|
|
|
- className={`item-article-img-wrapper ${
|
|
|
- item?.Abstract?.length > 20 ? 'max-two-line' : 'max-one-line'
|
|
|
- }`}
|
|
|
- >
|
|
|
- <img src={item?.BodyImg} alt="图像" className="item-article-cover" />
|
|
|
- </div>
|
|
|
- )}
|
|
|
- </>
|
|
|
- )}
|
|
|
- {item?.Abstract && (
|
|
|
- <div
|
|
|
- className="item-article-abstract"
|
|
|
- dangerouslySetInnerHTML={{
|
|
|
- __html: '<span>摘要:</span>' + formatAbstractHtml(item?.Abstract)
|
|
|
- }}
|
|
|
- />
|
|
|
- )}
|
|
|
- <div className="item-article-flex">
|
|
|
- <div className="item-article-pv">
|
|
|
- <EyeOutlined size={14} className="pv-icon" />
|
|
|
- <span>{item.Pv || 0}</span>
|
|
|
- </div>
|
|
|
- <div className="item-article-publistdate">{item?.PublishDate}</div>
|
|
|
+ ) : (
|
|
|
+ <>
|
|
|
+ {item?.Annotation ? (
|
|
|
+ <div className={`item-article-annotation ${item?.Abstract?.length > 20 ? 'line-five' : 'line-six'}`}>
|
|
|
+ <div>核心观点:</div>
|
|
|
+ <div dangerouslySetInnerHTML={{ __html: item?.Annotation }} />
|
|
|
+ </div>
|
|
|
+ ) : (
|
|
|
+ <div
|
|
|
+ className={`item-article-img-wrapper ${
|
|
|
+ item?.Abstract?.length > 20 ? 'max-two-line' : 'max-one-line'
|
|
|
+ }`}
|
|
|
+ >
|
|
|
+ <img src={item?.BodyImg} alt="图像" className="item-article-cover" />
|
|
|
+ </div>
|
|
|
+ )}
|
|
|
+ </>
|
|
|
+ )}
|
|
|
+ {item?.Abstract && (
|
|
|
+ <div
|
|
|
+ className="item-article-abstract"
|
|
|
+ dangerouslySetInnerHTML={{
|
|
|
+ __html: '<span>摘要:</span>' + formatAbstractHtml(item?.Abstract)
|
|
|
+ }}
|
|
|
+ />
|
|
|
+ )}
|
|
|
+ <div className="item-article-flex">
|
|
|
+ <div className="item-article-pv">
|
|
|
+ <EyeOutlined size={14} className="pv-icon" />
|
|
|
+ <span>{item.Pv || 0}</span>
|
|
|
</div>
|
|
|
- </>
|
|
|
- )}
|
|
|
- </div>
|
|
|
- </Link>
|
|
|
+ <div className="item-article-publistdate">{item?.PublishDate}</div>
|
|
|
+ </div>
|
|
|
+ </>
|
|
|
+ )}
|
|
|
+ </div>
|
|
|
)
|
|
|
}
|
|
|
|