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
81
82
83
| /* eslint-disable */
| export const tagList = [
| {
| name: '考勤榜单',
| columns: [
| {
| title: '名词',
| dataIndex: 'index',
| key: 'index'
| },
| {
| title: '姓名',
| dataIndex: 'name',
| key: 'name'
| },
| {
| title: '部门',
| dataIndex: 'part',
| key: 'part'
| },
| {
| title: '次数',
| dataIndex: 'count',
| key: 'count'
| },
| {
| title: '时长(分)',
| dataIndex: 'time',
| key: 'timer'
| }
| ]
| },
| {
| name: '绩效榜单',
| columns: [
| {
| title: '名词',
| dataIndex: 'index',
| key: 'index'
| },
| {
| title: '姓名',
| dataIndex: 'name',
| key: 'name'
| },
| {
| title: '部门',
| dataIndex: 'part',
| key: 'part'
| },
| {
| title: '绩效得分',
| dataIndex: 'score',
| key: 'score'
| }
| ]
| },
| {
| name: '缺陷榜单',
| columns: [
| {
| title: '名词',
| dataIndex: 'index',
| key: 'index'
| },
| {
| title: '姓名',
| dataIndex: 'name',
| key: 'name'
| },
| {
| title: '部门',
| dataIndex: 'part',
| key: 'part'
| },
| {
| title: '缺陷数',
| dataIndex: 'quexianshu',
| key: 'quexianshu'
| }
| ]
| }
| ];
|
|