import React,{ Component } from "react"; import { getImageUrl, markdownToHTML, WordsBtn, getUrl } from 'educoder'; import { Tooltip } from 'antd' import TPMMDEditor from '../../../tpm/challengesnew/TPMMDEditor' import axios from 'axios' import moment from 'moment' const _origin = '' /** https://www.showdoc.cc/127895880302646?page_id=1962215317836957 comment_scores[:appeal_status] int 0:正常;1:申诉中,2:撤销申诉;3:申诉成功;4:申诉被拒绝;5:申诉失效 */ const ACCEPT = 3 const REFUSE = 4 class CCommentItem extends Component{ constructor(props){ super(props); this.state = { show_reply: false, show_appeal: false, } } cancelReply = () => { this.setState({ show_reply: false }) } showReply = () => { this.setState({ show_reply: true, show_appeal: false }) } showAppeal = () => { this.setState({ show_appeal: true, show_reply: false }) } cancelAppeal = () => { this.setState({ show_appeal: false }) } onCancel = () => { this.state.show_reply ? this.cancelReply() : this.cancelAppeal() } cancelMyAppeal = () => { this.props.confirm({ content:
{/* 第二排右侧按钮区域 */}
{/* ${this.state.show_reply ? '回复' : '申诉'} */}
{(show_reply || show_appeal) &&