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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
/* eslint-disable prettier/prettier */
/* eslint-disable eqeqeq */
/* eslint-disable no-shadow */
/* eslint-disable no-unused-vars */
/* eslint-disable array-callback-return */
/* eslint-disable react-hooks/rules-of-hooks */
/* eslint-disable camelcase */
/* eslint-disable guard-for-in */
/* eslint-disable no-restricted-syntax */
import React, { useState, useEffect } from 'react';
import { useHistory } from 'react-router-dom';
import {
Form,
Card,
Space,
Table,
Popconfirm,
Spin,
Tooltip,
notification,
Tree,
Button,
} from 'antd';
import {
DoubleLeftOutlined,
DoubleRightOutlined,
PlusSquareFilled,
RightOutlined,
EditTwoTone,
DeleteOutlined,
OrderedListOutlined,
ApartmentOutlined,
DesktopOutlined,
} from '@ant-design/icons';
import {
GetCM_Event_LoadEventTable,
CM_Event_RemoveEventTable,
CM_Event_ReOrder,
GetCM_Event_LoadEventTypeTable,
} from '@/services/standingBook/api';
import classnames from 'classnames';
import styles from './incident.less';
import AddModal from './AddModal';
import ProcessModal from './ProcessModal';
import SortModal from './SortModal';
import ViewModal from './ViewModal';
const incident = () => {
const history = useHistory();
const [treeLoading, setTreeLoading] = useState(false);
const [treeVisible, setTreeVisible] = useState(true); // 左边列表是否可见
const [treeData, setTreeData] = useState([]); // 事件表数据
const [tableData, setTableData] = useState([]); // 事件表
const [addVisible, setAddvisible] = useState(false);
const [processVisible, setProcessVisible] = useState(false);
const [sortVisible, setSortVisible] = useState(false);
const [viewVisible, setViewVisible] = useState(false);
const [isType, setIsType] = useState(''); // 弹窗类型
const [formObj, setFormObj] = useState('');
const [flag, setFlag] = useState(0);
const [title1, setTitle1] = useState('');
const [title2, setTitle2] = useState('');
const [select, setSelect] = useState('');
const [sortData, setSortData] = useState([]);
const [rember, setRember] = useState(0);
const [rember1, setRember1] = useState();
const [maxLength, setMaxLength] = useState(0);
const [pickItem, setPickItem] = useState('');
const columns = [
{
title: '事件名称',
dataIndex: 'name',
key: 'name',
width: 150,
render: record => (
<Tooltip placement="topLeft" title={record}>
{record}
</Tooltip>
),
},
{
title: '事件主表',
dataIndex: 'tableName',
key: 'tableName',
width: 200,
render: record => (
<Tooltip placement="topLeft" title={record}>
{record}
</Tooltip>
),
},
{
title: '编码',
dataIndex: 'code',
key: 'code',
width: 80,
render: record => (
<Tooltip placement="topLeft" title={record}>
{record}
</Tooltip>
),
},
{
title: '摘要字段',
dataIndex: 'summaryFields',
key: 'summaryFields',
width: 100,
render: record => (
<Tooltip placement="topLeft" title={record}>
{record}
</Tooltip>
),
},
{
title: '权限',
dataIndex: 'roles',
key: 'roles',
width: 50,
render: record => (
<Tooltip placement="topLeft" title={record}>
{record}
</Tooltip>
),
},
{
title: '流程',
dataIndex: 'flowCount',
key: 'flowCount',
width: 50,
render: record => (
<Tooltip placement="topLeft" title={record}>
{record}
</Tooltip>
),
},
{
title: '上报',
dataIndex: 'reportable',
key: 'reportable',
width: 50,
},
{
title: '上报字段',
dataIndex: 'reportFields',
key: 'reportFields',
width: 80,
render: record => (
<Tooltip placement="topLeft" title={record}>
<span style={{ color: 'grey' }} key={record}>
{record}
</span>
</Tooltip>
),
},
{
title: '显示字段',
dataIndex: 'displayFields',
key: 'displayFields',
width: 80,
render: record => (
<Tooltip placement="topLeft" title={record}>
<span style={{ color: 'grey' }} key={record}>
{record}
</span>
</Tooltip>
),
},
{
title: '编辑',
dataIndex: 'editable',
key: 'editable',
width: 50,
render: item => (
<span style={{ color: 'grey' }} key={item}>
{item}
</span>
),
},
{
title: '编辑字段',
dataIndex: 'editableFields',
key: 'editableFields',
width: 80,
render: item => (
<div
ref={r => {
if (r) {
r.innerHTML = item;
}
}}
/>
),
},
{
title: '上报方式',
dataIndex: 'createMode',
key: 'createMode',
width: 80,
},
{
title: '操作',
key: 'action',
align: 'center',
width: 150,
render: record => (
<Space size="middle">
<Tooltip title="编辑事件类型">
<EditTwoTone
onClick={() => editEventType(record)}
style={{ fontSize: '16px' }}
/>
</Tooltip>
<Tooltip title="删除事件类型">
<Popconfirm
placement="bottomRight"
title={<p>即将删除事件类型表,是否确认删除?</p>}
okText="确认"
cancelText="取消"
onConfirm={() => deleteEventType(record)}
>
<DeleteOutlined style={{ fontSize: '16px', color: '#e86060' }} />
</Popconfirm>
</Tooltip>
<Tooltip title="受理流程">
<ApartmentOutlined
onClick={() => process1(record)}
style={{ fontSize: '16px', color: '#1890FF' }}
/>
</Tooltip>
<Tooltip title="辅助视图">
<DesktopOutlined
onClick={() => auxiliaryView1(record)}
style={{ fontSize: '16px', color: '#1890FF' }}
/>
</Tooltip>
</Space>
),
},
];
useEffect(() => {
setTreeLoading(true);
GetCM_Event_LoadEventTable().then(res => {
setTreeLoading(false);
if (res.msg === 'Ok') {
console.log(res.data);
// setMaxLength(res.data.root.length + 1)
let arr = formateArrDataA(res.data, 'businessType');
console.log(arr);
let newArr = [];
let newapp = [];
let newabb = [];
let aa = [];
let zz = [];
Object.keys(arr).map((item, index) => {
newArr.push(item);
});
console.log(arr);
Object.values(arr).map((item, index) => {
newapp.push(item);
});
console.log(newapp);
newapp.map((item, index) => {
console.log(item);
item.map((item1, index) => {
newabb.push(item1.root);
console.log(item1.root);
});
});
console.log(newabb);
newabb.map((item, index) => {
console.log(item);
aa.push(item);
});
console.log(aa);
aa.map((item, index) => {
console.log(item);
item.map((item1, index) => {
console.log(item1);
zz.push({ ...item1 });
});
});
console.log(zz);
let arrr = formateArrDataA(zz, 'businessType');
console.log(arrr);
setTableData(arrr);
console.log(history.location.state);
if (history.location.state) {
console.log(history);
console.log(history.location.state.rember);
setPickItem(newArr[history.location.state.rember]);
setRember(history.location.state.rember);
setRember1(newArr[history.location.state.rember]);
} else {
setPickItem(newArr[rember]);
setRember1(newArr[0]);
}
console.log(rember);
console.log(newArr[rember]);
console.log(newArr, 'newArr');
setTreeData(newArr);
}
});
}, [flag]);
useEffect(() => {
GetCM_Event_LoadEventTypeTable().then(res => {
if (res.msg === 'Ok') {
let arr = [];
res.data.map((item, index) => {
arr.push(item.text);
});
setSelect(arr);
}
});
}, []);
const formateArrDataA = (initialArr, name) => {
console.log(initialArr);
console.log(name);
// 判定传参是否符合规则
if (!(initialArr instanceof Array)) {
return '请传入正确格式的数组';
}
if (!name) {
return '请传入对象属性';
}
// 先获取一下这个数组中有多少个"name"
let nameArr = [];
for (let i in initialArr) {
if (nameArr.indexOf(initialArr[i][`${name}`]) === -1) {
nameArr.push(initialArr[i][`${name}`]);
}
}
// 新建一个包含多个list的结果对象
let tempObj = {};
// 根据不同的"name"生成多个数组
for (let k in nameArr) {
for (let j in initialArr) {
if (initialArr[j][`${name}`] == nameArr[k]) {
// 每次外循环时新建一个对应"name"的数组, 内循环时当前数组不变
tempObj[nameArr[k]] = tempObj[nameArr[k]] || [];
tempObj[nameArr[k]].push(initialArr[j]);
}
}
}
for (let keys in tempObj) {
let arr = [];
tempObj[keys].map((item, index) => {
tempObj[keys] = arr;
item.key = index;
arr.push(item);
});
}
return tempObj;
};
// 添加事件
const addIncident = () => {
setAddvisible(true);
setIsType('add');
};
// 修改事件类型
const editEventType = record => {
setFormObj(record);
setIsType('edit');
setAddvisible(true);
};
// 删除事件类型
const deleteEventType = record => {
CM_Event_RemoveEventTable(record.ID).then(res => {
if (res.msg === '') {
notification.success({
message: '提示',
duration: 3,
description: '删除成功',
});
setFlag(flag + 1);
} else {
notification.error({
message: '提示',
duration: 3,
description: res.msg,
});
}
});
};
const sort = () => {
setSortVisible(true);
console.log(tableData);
console.log(pickItem);
console.log(tableData[pickItem]);
setSortData(tableData[pickItem]);
};
// const process = record => {
// setProcessVisible(true);
// setFormObj(record);
// setTitle1(record.name)
// }
const process1 = record => {
history.push({
pathname: '/bsmanger/workOrder/incidentFlow',
state: { formObj: record, title1: record.name, rember },
});
};
// const auxiliaryView = record => {
// setFormObj(record);
// setViewVisible(true)
// setTitle2(record.name)
// }
const auxiliaryView1 = record => {
history.push({
pathname: '/bsmanger/workOrder/incidentView',
state: { formObj: record, title2: record.name, rember },
});
};
const onSubmit = () => {
setAddvisible(false);
setFlag(flag + 1);
};
const onOK = prop => {
setSortVisible(false);
let aa = prop.str.toString();
console.log(aa);
CM_Event_ReOrder(aa).then(res => {
if (res.msg === 'Ok') {
notification.success({
message: '提示',
duration: 3,
description: '调整成功',
});
setFlag(flag + 1);
} else {
notification.error({
message: '提示',
duration: 3,
description: res.msg,
});
}
});
};
const onOK1 = () => {
setProcessVisible(false);
setFlag(flag + 1);
};
const onOK11 = () => {
setViewVisible(false);
};
return (
<div className={styles.incidentContainer}>
<div className={styles.contentContainers}>
{/* 左侧事件树 */}
<Spin spinning={treeLoading} tip="loading...">
<Card
className={classnames({
[styles.orgContainer]: true,
[styles.orgContainerHide]: !treeVisible,
})}
>
<div>
<span
style={{
fontSize: '15px ',
fontWeight: 'bold',
}}
>
事件列表
</span>
<Tooltip title="添加事件类型">
<PlusSquareFilled
onClick={() => addIncident()}
style={{
color: '#1890FF',
fontSize: '25px',
verticalAlign: 'middle',
marginLeft: '58%',
}}
/>
</Tooltip>
<hr style={{ width: '100%', color: '#eeecec' }} />
{treeData.length > 0 &&
treeData.map((item, index) => (
<div
className={classnames({
[styles.listItem]: true,
[styles.pickItem]: item === pickItem,
})}
onClick={e => {
setPickItem(item);
setRember(index);
setRember1(item);
}}
key={index}
>
{item}({tableData[item] ? tableData[item].length : ''}){' '}
{item === pickItem ? <RightOutlined /> : ''}{' '}
</div>
))}
</div>
<div className={styles.switcher}>
{treeVisible && (
<Tooltip title="隐藏事件列表">
<DoubleLeftOutlined onClick={() => setTreeVisible(false)} />
</Tooltip>
)}
{!treeVisible && (
<Tooltip title="显示事件列表">
<DoubleRightOutlined onClick={() => setTreeVisible(true)} />
</Tooltip>
)}
</div>
</Card>
</Spin>
{/* 右侧 */}
<div
className={classnames({
[styles.userContainer]: true,
[styles.userContainerHide]: !treeVisible,
})}
>
<div style={{ height: '50px' }}>
<span style={{ float: 'right', marginRight: '10px' }}>
<Button
icon={<OrderedListOutlined className={styles.icon} />}
onClick={sort}
style={{
marginLeft: '30px',
verticalAlign: 'middle',
marginTop: '10px',
}}
>
调序
</Button>
</span>
</div>
<Table
size="small"
rowKey="ID"
bordered
onRow={record => ({
onDoubleClick: event => {
event.stopPropagation();
editEventType(record);
}, // 双击
})}
columns={columns}
dataSource={tableData[pickItem]}
scroll={{ y: 'calc(100vh - 155px)', x: 'max-content' }}
pagination={{
showTotal: (total, range) =>
`第${range[0]}-${range[1]} 条/共 ${total} 条`,
pageSizeOptions: [10, 20, 50, 100],
defaultPageSize: 20,
showQuickJumper: true,
showSizeChanger: true,
}}
/>
</div>
{/* Modal弹框 */}
{/* 添加事件 */}
<AddModal
visible={addVisible}
type={isType}
formObj={formObj}
rember1={rember1}
maxLength={maxLength}
onClose={() => setAddvisible(false)}
treeData={treeData}
selectData={select}
callBackSubmit={onSubmit}
placement="right"
/>
{/* <ProcessModal
visible={processVisible}
formObj={formObj}
title1={title1}
maxLength={maxLength}
onCancel={() => setProcessVisible(false)}
callBackSubmit={onOK1}
/> */}
<SortModal
title="调整顺序"
visible={sortVisible}
sortData1={sortData}
pickItem={pickItem}
onCancel={() => setSortVisible(false)}
callBackSubmit={onOK}
/>
{/* <ViewModal
formObj={formObj}
visible={viewVisible}
onCancel={() => setViewVisible(false)}
title2={title2}
callBackSubmit={onOK11}
/> */}
</div>
</div>
);
};
export default incident;