| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- import { BasicColumn } from '/@/components/Table';
- // 列表数据
- export const columns: BasicColumn[] = [
- {
- title: '序号',
- align: 'center',
- dataIndex: 'index',
- key: 'rowIndex',
- width: 60,
- customRender: ({ index }) => index + 1,
- },
- {
- title: '姓名',
- align: 'center',
- dataIndex: 'fullName',
- },
- {
- title: '性别',
- align: 'center',
- dataIndex: 'gender',
- },
- {
- title: '年龄',
- align: 'center',
- dataIndex: 'age',
- },
- {
- title: '学历',
- align: 'center',
- dataIndex: 'education',
- },
- {
- title: '户口所在地',
- align: 'center',
- dataIndex: 'householdLocation',
- },
- {
- title: '现居住地',
- align: 'center',
- dataIndex: 'currentResidence',
- },
- {
- title: '求职人员类别',
- align: 'center',
- dataIndex: 'jobSeekerCategory',
- },
- {
- title: '联系电话',
- align: 'center',
- dataIndex: 'contactPhone',
- },
- {
- title: '求职状态',
- align: 'center',
- dataIndex: 'jobSearchStatus',
- },
- {
- title: '人员大类标签',
- align: 'center',
- dataIndex: 'majorTag_dictText',
- },
- {
- title: '人员小类标签',
- align: 'center',
- dataIndex: 'minorTag_dictText',
- },
- {
- title: '自定义标签',
- align: 'center',
- dataIndex: 'customTag_dictText',
- },
- ];
- // 高级查询数据(暂未启用,需求要求不显示高级查询)
- export const superQuerySchema = {};
|