|
@@ -30,13 +30,31 @@ const columns = [
|
30
|
30
|
key: 'phone',
|
31
|
31
|
align: 'center',
|
32
|
32
|
},
|
|
33
|
+ {
|
|
34
|
+ title: '参与人数',
|
|
35
|
+ dataIndex: 'attendNum',
|
|
36
|
+ key: 'attendNum',
|
|
37
|
+ align: 'center',
|
|
38
|
+ },
|
33
|
39
|
{
|
34
|
40
|
title: '报名时间',
|
35
|
41
|
dataIndex: 'createDate',
|
36
|
42
|
key: 'createDate',
|
37
|
43
|
align: 'center',
|
38
|
44
|
render: (x, row) => <><span>{`${moment(row.createDate).format('YYYY-MM-DD')}`}</span></>
|
39
|
|
- }
|
|
45
|
+ },
|
|
46
|
+ {
|
|
47
|
+ title: '推广人',
|
|
48
|
+ dataIndex: 'sharePersonName',
|
|
49
|
+ key: 'sharePersonName',
|
|
50
|
+ align: 'center',
|
|
51
|
+ },
|
|
52
|
+ {
|
|
53
|
+ title: '公司',
|
|
54
|
+ dataIndex: 'orgName',
|
|
55
|
+ key: 'orgName',
|
|
56
|
+ align: 'center',
|
|
57
|
+ },
|
40
|
58
|
];
|
41
|
59
|
|
42
|
60
|
|