This commit is contained in:
黄心宇 2024-01-17 11:00:13 +08:00
parent a0e1df21f8
commit a520421ce4
2 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ function IssueCommentList(props){
}
return(
<div className="commentListBox">
(isPhone() && journalsCount === 0) ? '' : <div className="commentListBox info_text mt30">
{/* 评论 */}
<div className={`${!login && journalsCount > 0 && 'pb15'}`}>
<div className='typeActionBox mb20'>

View File

@ -118,7 +118,7 @@ function NewsDetail(props){
</div>
{
//
detail.auditStatus === '1' && <div className="info_text mt30">
detail.auditStatus === '1' && <div>
<CommentList {...props} docId={ id } reload={commentReload} author={ detail.createBy } reloadComment={()=>{setCommentReload(Math.random())}}/>
</div>
}