CareerGuidanceService.data.ts 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. import { BasicColumn } from '/@/components/Table';
  2. export const columns: BasicColumn[] = [
  3. {
  4. title: '序号',
  5. align: 'center',
  6. dataIndex: 'index',
  7. key: 'rowIndex',
  8. width: 60,
  9. customRender: ({ index }) => index + 1,
  10. },
  11. {
  12. title: '姓名',
  13. align: 'center',
  14. dataIndex: 'name',
  15. width: 120,
  16. },
  17. {
  18. title: '证件号',
  19. align: 'center',
  20. dataIndex: 'idCard',
  21. width: 180,
  22. },
  23. {
  24. title: '性别',
  25. align: 'center',
  26. dataIndex: 'gender',
  27. width: 80,
  28. },
  29. {
  30. title: '年龄',
  31. align: 'center',
  32. dataIndex: 'age',
  33. width: 80,
  34. },
  35. {
  36. title: '学历',
  37. align: 'center',
  38. dataIndex: 'education',
  39. width: 100,
  40. },
  41. {
  42. title: '户口所在地',
  43. align: 'center',
  44. dataIndex: 'householdLocation',
  45. width: 150,
  46. },
  47. {
  48. title: '联系电话',
  49. align: 'center',
  50. dataIndex: 'contactPhone',
  51. width: 130,
  52. },
  53. {
  54. title: '申请原因',
  55. align: 'center',
  56. dataIndex: 'applicationReason',
  57. width: 200,
  58. },
  59. {
  60. title: '申请日期',
  61. align: 'center',
  62. dataIndex: 'applicationDate',
  63. width: 120,
  64. },
  65. {
  66. title: '是否已跟进',
  67. align: 'center',
  68. dataIndex: 'isFollowedUp',
  69. width: 100,
  70. },
  71. {
  72. title: '最后通知时间',
  73. align: 'center',
  74. dataIndex: 'lastNotifyTime',
  75. width: 150,
  76. },
  77. ];