import React, { Component } from "react"; import { message, Icon, Input, Form, Upload} from "antd"; import axios from 'axios' import ModalWrapper from "../../courses/common/ModalWrapper" import { City, getUploadActionUrl,getImageUrl } from 'educoder' import '../account/common.css' import authImg from '../../../images/account/auth.png' import jobImg from '../../../images/account/job.png' const { TextArea } = Input; const Dragger = Upload.Dragger; function getBase64(img, callback) { const reader = new FileReader(); reader.addEventListener('load', () => callback(reader.result)); reader.readAsDataURL(img); } function beforeUpload(file) { const isJPG = file.type === 'image/jpeg'; if (!isJPG) { message.error('You can only upload JPG file!'); } const isLt2M = file.size / 1024 / 1024 < 2; if (!isLt2M) { message.error('Image must smaller than 2MB!'); } return isJPG && isLt2M; } class RealNameCertificationModal extends Component{ constructor(props){ super(props); this.state={ } } componentDidMount() { } setVisible = (visible) => { this.refs.modalWrapper.setVisible(visible) } onSendOk = () => { this.props.form.validateFieldsAndScroll((err, values) => { console.log(values); if(!err){ let{imageUrl2}=this.state; let{current_user,basicInfo}=this.props; if(imageUrl2){ let { certification } = this.props; if(certification == 1){ // 实名认证 let url = `/users/accounts/${current_user && current_user.login}/authentication_apply.json` axios.post((url),{ name:basicInfo.name, id_number:values.credentials }).then((result)=>{ if(result){ this.props.showNotification("申请已提交,请等待审核!"); this.props.getBasicInfo(); this.setVisible(false); } }).catch((error)=>{ console.log(error); }) }else{ // 职业认证 let url = `/users/accounts/${current_user && current_user.login}/professional_auth_apply.json` axios.post((url),{ school_id:basicInfo && basicInfo.school_id, department_id:basicInfo && basicInfo.department_id, identity:basicInfo && basicInfo.identity, extra:basicInfo && basicInfo.identity == "student" ? basicInfo.student_id:basicInfo.technical_title }).then((result)=>{ if(result){ this.props.showNotification("申请已提交,请等待审核!"); this.props.getBasicInfo(); this.setVisible(false); } }).catch((error)=>{ console.log(error); }) } }else{ this.props.showNotification("请先上传照片!"); } } }) } onOk = () => { const { course_lists, checkBoxValues } = this.state this.onSendOk() } handleChange = (info) => { if (info.file.status === 'uploading') { this.setState({ loading: true }); return; } if (info.file.status === 'done') { // Get this url from response in real world. getBase64(info.file.originFileObj, imageUrl => this.setState({ imageUrl, loading: false, })); } } handleChange2 = (info) => { if (info.file.status === 'uploading') { this.setState({ loading: true }); return; } if (info.file.status === 'done') { // Get this url from response in real world. getBase64(info.file.originFileObj, imageUrl2 => this.setState({ imageUrl2, loading: false, })); } } render(){ const { course_lists, checkBoxValues, searchValue, loading, imageUrl, imageUrl2 } = this.state const { moduleName } = this.props const { getFieldDecorator } = this.props.form; const uploadProps = { name: 'file', multiple: true, showUploadList: false, action: getUploadActionUrl(), className: 'idPic-uploader first_uploader', onChange: this.handleChange, }; const uploadProps2 = { name: 'file', multiple: true, showUploadList: false, action: getUploadActionUrl(), className: 'idPic-uploader', onChange: this.handleChange2, }; let {certification}=this.props; return( 实名认证: 职业认证 } {...this.props } onOk={this.onOk} okText="保存" className="applyForModal certificationModal" bottomRender={ certification && certification == 1?

认证须知:

1.你需要准备有效的身份证正面(人像面)的证件照照片,请确保证件照片清晰可见,严禁PS;

2.我们将在你提交认证信息后的24小时(不包含节假日)内完成审核,审核结果将会以系统消息的形式发送给你;

3.实名认证审核完成后,无法删除,请谨慎填写;

4.实名认证审核完成后,系统将自动发放500个金币作为奖励;

5.我们会确保你所提供的信息均处于严格的保密状态,不会泄露;

6.如存在恶意乱填写姓名,证件号,及上传与实名认证证件无关图片者,一经发现将冻结EduCoder账号。

:

认证须知:

1.根据职业上传相应的证件照:教师(教师证),专业人士(员工证)、学生(学生证),请确保证件照内容完整并且清晰可见,严禁PS;

2.我们将在你提交职业证信息后的24小时(不包含节假日)内完成审核,审核结果将会以系统消息的形式发送给你;

3.职业认证审核完成后,无法删除,请谨慎填写;职业变更请选择重新认证;

4.职业认证审核完成后,系统将自动发放500个金币作为奖励;

5.我们会确保你所提供的信息均处于严格的保密状态,不会泄露;

6.如存在恶意乱填写姓名,学号,及上传与职业证件无关图片者,一经发现将冻结EduCoder账号。

} >
{ certification && certification ==1 && {getFieldDecorator('credentials', { rules: [{ // initialValue: this.state.cityDefaultValue, required: true, message: '请输入证件号', }], })( )} }
{ certification && certification == 1 ? "身份证(人像面)上传":"职业证照片上传" } (png/jpg/bmp格式,不超过2MB)
avatar {imageUrl2 ? avatar :

点击或拖拽上传图片

{/*

Support for a single or bulk upload. Strictly prohibit from uploading company data or other band files

*/}
}
示例图片 查看大图
) } } const WrappedRealNameCertificationModal = Form.create({ name: 'RealNameCertificationModal' })(RealNameCertificationModal); export default WrappedRealNameCertificationModal;