FocusPersonnel.data.ts 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. import { BasicColumn } from '/@/components/Table';
  2. // 列表数据
  3. export const columns: BasicColumn[] = [
  4. {
  5. title: '序号',
  6. align: 'center',
  7. dataIndex: 'index',
  8. key: 'rowIndex',
  9. width: 60,
  10. customRender: ({ index }) => index + 1,
  11. },
  12. {
  13. title: '姓名',
  14. align: 'center',
  15. dataIndex: 'fullName',
  16. },
  17. {
  18. title: '性别',
  19. align: 'center',
  20. dataIndex: 'gender',
  21. },
  22. {
  23. title: '年龄',
  24. align: 'center',
  25. dataIndex: 'age',
  26. },
  27. {
  28. title: '学历',
  29. align: 'center',
  30. dataIndex: 'education',
  31. },
  32. {
  33. title: '户口所在地',
  34. align: 'center',
  35. dataIndex: 'householdLocation',
  36. },
  37. {
  38. title: '现居住地',
  39. align: 'center',
  40. dataIndex: 'currentResidence',
  41. },
  42. {
  43. title: '求职人员类别',
  44. align: 'center',
  45. dataIndex: 'jobSeekerCategory',
  46. },
  47. {
  48. title: '联系电话',
  49. align: 'center',
  50. dataIndex: 'contactPhone',
  51. },
  52. {
  53. title: '求职状态',
  54. align: 'center',
  55. dataIndex: 'jobSearchStatus',
  56. },
  57. {
  58. title: '人员大类标签',
  59. align: 'center',
  60. dataIndex: 'majorTag_dictText',
  61. },
  62. {
  63. title: '人员小类标签',
  64. align: 'center',
  65. dataIndex: 'minorTag_dictText',
  66. },
  67. {
  68. title: '自定义标签',
  69. align: 'center',
  70. dataIndex: 'customTag_dictText',
  71. },
  72. ];
  73. // 高级查询数据(暂未启用,需求要求不显示高级查询)
  74. export const superQuerySchema = {};