| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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: 'name',
- width: 120,
- },
- {
- title: '证件号',
- align: 'center',
- dataIndex: 'idCard',
- width: 180,
- },
- {
- title: '性别',
- align: 'center',
- dataIndex: 'gender',
- width: 80,
- },
- {
- title: '年龄',
- align: 'center',
- dataIndex: 'age',
- width: 80,
- },
- {
- title: '学历',
- align: 'center',
- dataIndex: 'education',
- width: 100,
- },
- {
- title: '户口所在地',
- align: 'center',
- dataIndex: 'householdLocation',
- width: 150,
- },
- {
- title: '联系电话',
- align: 'center',
- dataIndex: 'contactPhone',
- width: 130,
- },
- {
- title: '申请原因',
- align: 'center',
- dataIndex: 'applicationReason',
- width: 200,
- },
- {
- title: '申请日期',
- align: 'center',
- dataIndex: 'applicationDate',
- width: 120,
- },
- {
- title: '是否已跟进',
- align: 'center',
- dataIndex: 'isFollowedUp',
- width: 100,
- },
- {
- title: '最后通知时间',
- align: 'center',
- dataIndex: 'lastNotifyTime',
- width: 150,
- },
- ];
|