dev_forum
hjm 5 years ago
parent 03fb61cc6f
commit 53379b3487

@ -96,7 +96,7 @@ class CommentItemMDEditor extends Component {
} }
render() { render() {
const { match, history, item, user } = this.props const { match, history, item, user, buttonText } = this.props
if (!item) { if (!item) {
return <div></div> return <div></div>
} }
@ -111,7 +111,7 @@ class CommentItemMDEditor extends Component {
</a> </a>
</div> </div>
<div id={`reply_message_${item.id}`} className="reply_to_message commentItemMDEditor" <div id={`reply_message_${item.id}`} className="reply_to_message commentItemMDEditor"
style={{ paddingTop: '0px', paddingBottom: '20px', marginTop: '36px' }} style={{ paddingTop: '0px', paddingBottom: '0px', marginTop: '36px' }}
> >
<div id={`reply_message_editorMd_${item.id}`} className="editorMD" style={{ marginBottom: '0px'}}> <div id={`reply_message_editorMd_${item.id}`} className="editorMD" style={{ marginBottom: '0px'}}>
<textarea style={{'display': 'none'}}> <textarea style={{'display': 'none'}}>
@ -119,12 +119,15 @@ class CommentItemMDEditor extends Component {
</div> </div>
<div className="editor__resize" href="javascript:void(0);" style={{display: ''}}>调整高度</div> <div className="editor__resize" href="javascript:void(0);" style={{display: ''}}>调整高度</div>
<div class="clearfix">
<a id={`commitBtn_${item.id}`} href="javascript:void(0)" <a id={`commitBtn_${item.id}`} href="javascript:void(0)"
onClick={this.onCommit} style={{ marginRight: '44px' }} onClick={this.onCommit} style={{ marginRight: '44px' }}
className="commentsbtn task-btn task-btn-blue fr " style={{display: ''}}> className="commentsbtn task-btn task-btn-blue fr " style={{display: ''}}>
发送 { buttonText || '发送'}
</a> </a>
</div> </div>
</div>
</div> </div>
); );
} }

@ -408,6 +408,7 @@ class Comments extends Component {
currentReplyComment={currentReplyComment} currentReplyComment={currentReplyComment}
item={item} item={item}
user={user} user={user}
buttonText={this.props.buttonText}
> >
</CommentItemMDEditor> </CommentItemMDEditor>
} }

@ -175,7 +175,7 @@ class CCommentItem extends Component{
// src={getImageUrl(`images/${item.image_url}`)} // src={getImageUrl(`images/${item.image_url}`)}
return ( return (
<div className="comment_item_cont df clearfix" key={item.id}> <div className="comment_item_cont appraise df clearfix" key={item.id}>
<div className="J_Comment_Face fl"> <div className="J_Comment_Face fl">
{item.is_appeal_info == true ? {item.is_appeal_info == true ?
<a href={`javascript:void(0)`} target="_blank"> <a href={`javascript:void(0)`} target="_blank">

@ -38,8 +38,10 @@
margin-top: 8px; margin-top: 8px;
} }
.course-message .comment_item_cont:last-child { .course-message .comment_item_cont:last-child {
/* 作品评阅需要 */
border-bottom: none; border-bottom: none;
}
.course-message .appraise.comment_item_cont:last-child {
/* 作品评阅需要 */
padding-bottom: 0px; padding-bottom: 0px;
} }

@ -17,7 +17,7 @@ class Graduationtaskitem extends Component{
let { item }=this.props; let { item }=this.props;
const _content = item.content && this.parseCommentContent(item.content) const _content = item.content && this.parseCommentContent(item.content)
return( return(
<div className="comment_item_cont df clearfix" key={item.id}> <div className="comment_item_cont appraise df clearfix" key={item.id}>
<div className="J_Comment_Face fl"> <div className="J_Comment_Face fl">
<a href={`${_origin}/users/${item.user_login}`} target="_blank"> <a href={`${_origin}/users/${item.user_login}`} target="_blank">
<img alt="用户头像" height="50" src={getImageUrl(`images/${item.image_url}`)} width="50"/> <img alt="用户头像" height="50" src={getImageUrl(`images/${item.image_url}`)} width="50"/>

Loading…
Cancel
Save