wupengfei
2025-07-30 717f5388cf9c802ed76e87758c49fe78ad9ae5f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import { defineColumns } from '@bole-core/components';
 
export const FlexJobManageColumns = defineColumns([
  {
    id: '1',
    enCode: 'name',
    name: '姓名',
    width: 180,
  },
  {
    id: '2',
    enCode: 'idNumber',
    name: '身份证号',
    width: 180,
  },
  {
    id: '3',
    enCode: 'sex',
    name: '性别',
  },
  {
    id: '5',
    enCode: 'age',
    name: '年龄',
  },
  {
    id: '6',
    enCode: 'phoneNumber',
    name: '手机号',
    width: 140,
  },
  {
    id: '8',
    enCode: 'regiterStatus',
    name: '录用状态',
    width: 140,
  },
  {
    id: '9',
    enCode: 'realVerifyStatus',
    name: '实名状态',
    width: 140,
  },
  {
    id: '10',
    enCode: 'signStatus',
    name: '灵工签约状态',
    width: 140,
  },
  {
    id: '11',
    enCode: 'regiterTime',
    name: '录用时间',
    width: 160,
  },
  {
    id: '12',
    enCode: 'realVerifyTime',
    name: '实名时间',
    width: 160,
  },
  {
    id: '13',
    enCode: 'signTime',
    name: '签约时间',
    width: 160,
  },
  {
    id: '14',
    enCode: 'enterSignStatus',
    name: '企业签约状态',
    width: 160,
  },
  {
    id: '15',
    enCode: 'enterSignTime',
    name: '企业签约时间',
    width: 160,
  },
]);