|
|
@@ -7,6 +7,7 @@ import { |
|
|
|
import { Button, ConfigProvider, Image, message, Modal, Input, Row, Col, Space, Radio, Descriptions } from 'antd'; |
|
|
|
import { PostJobseekerList, PostJobseekerExport, PostJobapplicantUpdate } from '@/apis/api'; |
|
|
|
import { Imageprefix } from '@/constants'; |
|
|
|
import DragUpload from '@/components/Common/dragupload'; |
|
|
|
|
|
|
|
const selectfieldNames = { label: 'name', value: 'id' }; |
|
|
|
|
|
|
@@ -322,8 +323,8 @@ const PagesMainJobseekerListTable: React.FC = ({ dispatch, getId, dictModel, ope |
|
|
|
Modal.confirm({ |
|
|
|
title: '请选择对批量数据审核', |
|
|
|
content: (<> |
|
|
|
<Space direction='vertical' style={{ width: '100%', padding: 20 }}> |
|
|
|
<div>参数:id, customer_id, status, audit_memo</div> |
|
|
|
<Space direction='vertical' style={{ width: '100%', padding: 20 }}> |
|
|
|
<div>参数:id, customer_id, status, audit_memo</div> |
|
|
|
|
|
|
|
<Radio.Group size='small' onChange={async (e) => { |
|
|
|
actionRef.current?.reload(); |
|
|
@@ -361,7 +362,26 @@ const PagesMainJobseekerListTable: React.FC = ({ dispatch, getId, dictModel, ope |
|
|
|
}) |
|
|
|
}}> |
|
|
|
导出数据 |
|
|
|
</Button> |
|
|
|
</Button>, |
|
|
|
<Button type="primary" onClick={() => { |
|
|
|
Modal.confirm({ |
|
|
|
title: '导入文件', |
|
|
|
content: (<> |
|
|
|
<DragUpload form_name="doc_url" uploadTxt="导入文件"></DragUpload> |
|
|
|
</>), |
|
|
|
onOk() { |
|
|
|
|
|
|
|
}, |
|
|
|
onCancel() { |
|
|
|
console.log('Cancel'); |
|
|
|
}, |
|
|
|
okText: '确定', |
|
|
|
cancelText: '取消', |
|
|
|
centered: true |
|
|
|
}); |
|
|
|
}}> |
|
|
|
导入数据 |
|
|
|
</Button >, |
|
|
|
]} |
|
|
|
headerTitle="简历列表" |
|
|
|
/> |