// import { Input } from 'antd'; import AppealModal from './AppealModal'; import { qualify_applyAppeal, qualify_trainQualifyApplyCancel, qualify_appealApplyOnDutyCheck } from '../../../../services/bkt/qualify'; import $nModal from '../../../../utils/modal/nModal'; import $modal from '../../../../utils/modal'; const warnColor = '#F59A23'; const okColor = '#4B7902'; const errColor = '#D9001B'; export default function () { return [ { title: '姓名', dataIndex: 'fullName', key: 'fullName', width: 100, fixed: 'left', render: value => value || '-', }, { title: '手机号码', dataIndex: 'mobile', key: 'mobile', }, { title: '身份证号', dataIndex: 'identityNumber', key: 'identityNumber', }, { title: '部门', dataIndex: 'departName', key: 'departName', render: value => value || '-' }, { title: '报名时间', dataIndex: 'applyDate', key: 'applyDate', render: value => value || '-' }, { title: '申报状态', dataIndex: 'applyStatus', key: 'applyStatus', render: (value) => { let text = '-'; let color = ''; switch (true) { case value == '0': text = '申报中'; color = warnColor; break; case value == '1': text = '申报通过'; color = okColor; break; case value == '2': text = '申报不通过'; color = errColor; break; case value == '3': text = '已撤销'; color = errColor; } return ( {text} ); } }, { title: '背景筛查状态', dataIndex: 'backgroundStatus', key: 'backgroundStatus', render: (value) => { let text = '-'; let color = ''; switch (true) { case value == '0': text = '审核中'; color = warnColor; break; case value == '1': text = '正常'; color = okColor; break; case value == '2': color = errColor; text = '关注'; break; case value == '3': color = okColor; text = '申诉通过'; break; case value == '4': color = errColor; text = '申诉不通过'; break; case value == '5': color = warnColor; text = '申诉中'; } return ( {text} ); } }, { title: '缴费状态', dataIndex: 'orderStatus', key: 'orderStatus', render: (value) => { let text = '未缴费'; let color = ''; switch (true) { case value == '0': color = errColor; text = '未缴费'; break; case value == '1': color = okColor; text = '已缴费'; } return ( {text} ); } }, { title: '材料核对状态', dataIndex: 'materialApproveStatus', key: 'materialApproveStatus', render: (value) => { let text = '-'; let color = ''; switch (true) { case value == '0': text = '未核对'; color = warnColor; break; case value == '1': text = '核对通过'; color = okColor; break; case value == '2': text = '核对不通过'; color = errColor; } return ( {text} ); } }, { title: '理论学习进度', dataIndex: 'progress', key: 'progress', render: value => value ? value + '%' : '-' }, { title: '考试安排', dataIndex: 'examStatus', key: 'examStatus', render: (value) => { let text = '未安排考试'; let color = ''; switch (true) { case value == '0': color = warnColor; text = '未安排考试'; break; case value == '1': color = okColor; text = '已安排考试'; } return ( {text} ); } }, { title: '考试时间', dataIndex: 'examDate', key: 'examDate', render: value => value || '-' }, { title: '考试结果', // dataIndex: 'testStateName', dataIndex: 'testState', key: 'testState', render: (value) => { let text = '未考试'; let color = ''; switch (true) { case value == '0': color = warnColor; text = '不合格'; break; case value == '1': color = okColor; text = '合格'; } return ( {text} ); } }, { title: '理论成绩', dataIndex: 'writtenScore', key: 'writtenScore', render: value => value || '-' }, { title: '实操成绩', dataIndex: 'operateScore', key: 'operateScore', render: value => value || '-' }, { title: '保安员证', dataIndex: 'cerNo', key: 'cerNo', render: value => value || '-' }, { title: '课程名称', dataIndex: 'trackName', key: 'trackName', render: value => value || '-' }, { title: '确认成绩时间', dataIndex: 'confirmDate', key: 'confirmDate', render: value => value || '-' }, { title: '操作', dataIndex: 'operation', key: 'operation', width: 150, fixed: 'right', render: (text, record) => { const { personApplyId, applyStatus, backgroundStatus, fullName, examStatus, applyDate } = record; return (
{ this.setState({ personApplyId }); }} > 查看 { // 1、申报状态为申报不通过 // 2、背景筛查状态为 关注 backgroundStatus == '2' && { qualify_appealApplyOnDutyCheck({ data: { personApplyId } }).then(() => { let appealForm = null; $nModal({ width: 800, title: `${fullName}-背景筛查申诉`, content: { appealForm = form; }} />, okText: '确定', cancelText: '取消', onOk: close => { appealForm.validateFields((err, values) => { if (err) return; const { appealContext, appealInfoArr } = values; const appealInfo = appealInfoArr[appealInfoArr.length - 1]; const infos = appealInfo ? appealInfo.split(' ') : []; // 没有选完整 if (infos[infos.length - 1] == 'false') { return $modal( '请选择具体的申诉机构', '' ); } const appealOrgId = infos[0]; const appealOrgName = infos[1]; const appealOrgAreaCode = infos[2]; qualify_applyAppeal({ data: { personApplyId, appealContext, appealOrgId, appealOrgName, appealOrgAreaCode } }).then(res => { this.props.updateTable(); close(); $modal('提交成功!', '请等待公安人员进行审核,审核状态可刷新页面查看。', null, 'success'); }); }); } }); }); }} > 申诉 } { /* 背景筛查中、 申诉中、 已安排、 已撤销、 申报不通过、 申报通过 // 报名时间小于某个时间点 ->不能撤销 */ (() => { // const timeStp = moment('2020/06/12 16:40:00').valueOf(); // const applyDateStp = moment((applyDate + '').replace(/-/g, '/')).valueOf(); if ( backgroundStatus == '0' || backgroundStatus == '5' || examStatus == '1' || applyStatus == '1' || applyStatus == '2' || applyStatus == '3' // || timeStp > applyDateStp ) { return ''; } else { return ( { $nModal({ title: `即将撤销${fullName}的报名记录,是否继续?`, content: 撤销后,该人员将无法继续学习课程。所学的课程学时不会删除,重新报名后,数据会自动关联。, onOk: close => { qualify_trainQualifyApplyCancel({ data: { personApplyId } }).then(res => { log(res); this.props.updateTable(); close(); if (res.msg) { $modal(res.msg, '', null, 'success'); } else { $modal('撤销成功', '', null, 'success'); } }).catch(err => { if (err.retType == '-1') { console.log(err) close(); $modal(err.msg, '', null, 'error'); } }); } }); }} > 撤销 ); } })() }
); } } ]; }