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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
| const operation1 = [
| {
| key: 'op1',
| type: '订购关系生效',
| name: '曲丽丽',
| status: 'agree',
| updatedAt: '2017-10-03 19:23:12',
| memo: '-'
| },
| {
| key: 'op2',
| type: '财务复审',
| name: '付小小',
| status: 'reject',
| updatedAt: '2017-10-03 19:23:12',
| memo: '不通过原因'
| },
| {
| key: 'op3',
| type: '部门初审',
| name: '周毛毛',
| status: 'agree',
| updatedAt: '2017-10-03 19:23:12',
| memo: '-'
| },
| {
| key: 'op4',
| type: '提交订单',
| name: '林东东',
| status: 'agree',
| updatedAt: '2017-10-03 19:23:12',
| memo: '很棒'
| },
| {
| key: 'op5',
| type: '创建订单',
| name: '汗牙牙',
| status: 'agree',
| updatedAt: '2017-10-03 19:23:12',
| memo: '-'
| }
| ]
|
| const operation2 = [
| {
| key: 'op2',
| type: '财务复审',
| name: '付小小',
| status: 'reject',
| updatedAt: '2017-10-03 19:23:12',
| memo: '不通过原因'
| },
| {
| key: 'op3',
| type: '部门初审',
| name: '周毛毛',
| status: 'agree',
| updatedAt: '2017-10-03 19:23:12',
| memo: '-'
| },
| {
| key: 'op4',
| type: '提交订单',
| name: '林东东',
| status: 'agree',
| updatedAt: '2017-10-03 19:23:12',
| memo: '很棒'
| }
| ]
|
| const operation3 = [
| {
| key: 'op2',
| type: '财务复审',
| name: '付小小',
| status: 'reject',
| updatedAt: '2017-10-03 19:23:12',
| memo: '不通过原因'
| },
| {
| key: 'op3',
| type: '部门初审',
| name: '周毛毛',
| status: 'agree',
| updatedAt: '2017-10-03 19:23:12',
| memo: '-'
| }
| ]
|
| const operationColumns = [
| {
| title: '操作类型',
| dataIndex: 'type',
| key: 'type'
| },
| {
| title: '操作人',
| dataIndex: 'name',
| key: 'name'
| },
| {
| title: '执行结果',
| dataIndex: 'status',
| key: 'status'
| },
| {
| title: '操作时间',
| dataIndex: 'updatedAt',
| key: 'updatedAt'
| },
| {
| title: '备注',
| dataIndex: 'memo',
| key: 'memo'
| }
| ]
|
| export {operation1, operation2, operation3, operationColumns}
|
|