You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import React , { Component } from 'react' ;
import { getImageUrl } from 'educoder' ;
import { Modal } from 'antd' ;
import axios from 'axios' ;
import '../modules/user/account/common.css' ;
import './gotoqqgroup.css'
class GotoQQgroup extends Component {
constructor ( props ) {
super ( props ) ;
this . state = {
}
}
modalCancel = ( ) => {
try {
this . props . setgoshowqqgtounp ( false ) ;
} catch ( e ) {
}
}
setDownload = ( ) => {
//立即联系
try {
this . props . setgoshowqqgtounp ( false ) ;
} catch ( e ) {
}
}
render ( ) {
return (
< Modal
keyboard = { false }
closable = { false }
footer = { null }
destroyOnClose = { true }
title = "提示"
centered = { true }
visible = { this . props . goshowqqgtounp === undefined ? false : this . props . goshowqqgtounp }
width = "530px"
>
< div className = "educouddiv intermediatecenter verticallayout" >
< div className = "tabeltext-alignleft mt10" > < p > 您可以在QQ服务群向管理员申请 , 获得继续操作的权限 < / p > < / d i v >
< img className = "mt10" src = { getImageUrl ( "images/educoder/qqqun20191230.png" ) } / >
< div className = "tabeltext-alignleft mt10" > < p > 群号 : 612934990 < / p > < / d i v >
< div className = "clearfix mt30 edu-txt-center" >
< a className = "task-btn mr30" onClick = { ( ) => this . modalCancel ( ) } > 取消 < / a >
< a className = "task-btn task-btn-orange" onClick = { ( ) => this . setDownload ( ) } > 立即联系 < / a >
< / d i v >
< / d i v >
< / M o d a l >
)
}
}
export default GotoQQgroup ;