@bit-sun/business-component 4.2.0-alpha.6 → 4.2.0-alpha.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Business/SystemLog/index.d.ts +78 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +566 -107
- package/dist/index.js +567 -106
- package/dist/utils/utils.d.ts +41 -0
- package/package.json +1 -1
- package/src/components/Business/SearchSelect/BusinessUtils.tsx +234 -38
- package/src/components/Business/SystemLog/index.md +37 -0
- package/src/components/Business/SystemLog/index.tsx +87 -0
- package/src/components/Business/columnSettingTable/index.tsx +7 -6
- package/src/components/Business/columnSettingTable/sulaSettingTable.tsx +23 -22
- package/src/components/Functional/AddSelect/index.tsx +92 -0
- package/src/components/Functional/SearchSelect/index.css +274 -0
- package/src/components/Functional/SearchSelect/index.less +5 -5
- package/src/components/Functional/SearchSelect/index.tsx +5 -2
- package/src/components/Solution/RuleComponent/index.js +1 -0
- package/src/index.ts +2 -0
- package/src/utils/utils.ts +41 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
1
2
|
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
2
3
|
import { Table as SulaTable, request } from 'bssula';
|
|
3
4
|
import { Resizable } from 'react-resizable';
|
|
@@ -22,7 +23,7 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
22
23
|
showColumns: [],
|
|
23
24
|
selectedRowKeys: [], // 新增状态,用于跟踪选中的行的键
|
|
24
25
|
selectedRows: [],
|
|
25
|
-
showSummary: null
|
|
26
|
+
showSummary: null
|
|
26
27
|
}
|
|
27
28
|
this.sulaTableRef = React.createRef<any>();
|
|
28
29
|
}
|
|
@@ -79,9 +80,9 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
79
80
|
|
|
80
81
|
/**
|
|
81
82
|
* 新增函数,用于根据传入的小数位数进行四舍五入
|
|
82
|
-
* @param number
|
|
83
|
-
* @param decimalPlaces
|
|
84
|
-
* @returns
|
|
83
|
+
* @param number
|
|
84
|
+
* @param decimalPlaces
|
|
85
|
+
* @returns
|
|
85
86
|
*/
|
|
86
87
|
roundToDecimalPlaces = (number: any, decimalPlaces: number) => {
|
|
87
88
|
const factor = Math.pow(10, (decimalPlaces || 2));
|
|
@@ -90,7 +91,7 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
90
91
|
|
|
91
92
|
/**
|
|
92
93
|
* 合计行逻辑
|
|
93
|
-
* @returns
|
|
94
|
+
* @returns
|
|
94
95
|
*/
|
|
95
96
|
getTableSummaryInfo = () => {
|
|
96
97
|
const { summary = undefined, rowSelection, expandable, isSpecial = false, modeType }: any = this.props;
|
|
@@ -167,10 +168,10 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
167
168
|
</Table.Summary.Row>
|
|
168
169
|
</Table.Summary>
|
|
169
170
|
);
|
|
170
|
-
|
|
171
|
+
|
|
171
172
|
return () => summaryDom;
|
|
172
|
-
};
|
|
173
|
-
|
|
173
|
+
};
|
|
174
|
+
|
|
174
175
|
handledynamicColumns = (col: any[]) => {
|
|
175
176
|
let { dynamicColumns, modeType }: any = this.props;
|
|
176
177
|
col = col.map((item: any) => {
|
|
@@ -205,7 +206,7 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
205
206
|
|
|
206
207
|
ResizeableTitle = (props: any) => {
|
|
207
208
|
const { onResize, width, ...restProps } = props;
|
|
208
|
-
|
|
209
|
+
|
|
209
210
|
const [innerWidth, setInnerWidth] = useState(width);
|
|
210
211
|
const [isResizing, setIsResizing] = useState(false); // 标记是否正在拖拽
|
|
211
212
|
const [isDragging, setIsDragging] = useState(false); // 标记拖拽句柄是否被拖拽
|
|
@@ -213,9 +214,9 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
213
214
|
const markerPosition = useRef({ left: 0, top: 0 });
|
|
214
215
|
const currentStart = useRef(0);
|
|
215
216
|
const uuidref = useRef(uuid());
|
|
216
|
-
|
|
217
|
+
|
|
217
218
|
const prevWidthRef = useRef(width);
|
|
218
|
-
|
|
219
|
+
|
|
219
220
|
const handleMouseDown = (e: any) => {
|
|
220
221
|
currentStart.current = e.clientX;
|
|
221
222
|
markerPosition.current = { left: e.clientX, top: e.clientY }
|
|
@@ -223,35 +224,35 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
223
224
|
document.addEventListener('mousemove', handleMouseMove);
|
|
224
225
|
document.addEventListener('mouseup', handleMouseUp);
|
|
225
226
|
};
|
|
226
|
-
|
|
227
|
+
|
|
227
228
|
const handleMouseMove = (e: any) => {
|
|
228
229
|
e.stopPropagation();
|
|
229
230
|
e.preventDefault();
|
|
230
231
|
// 更新标记位置
|
|
231
232
|
markerPosition.current = { left: e.clientX, top: e.clientY }
|
|
232
233
|
const dom: HTMLElement | null = document.getElementById('text1');
|
|
233
|
-
|
|
234
|
+
|
|
234
235
|
if (dom && dom.style) {
|
|
235
236
|
dom.style.left = `${e.clientX}px`;
|
|
236
237
|
dom.style.top = `${e.clientY - 20}px`;
|
|
237
238
|
}
|
|
238
239
|
};
|
|
239
|
-
|
|
240
|
+
|
|
240
241
|
const handleMouseUp = (e: any) => {
|
|
241
242
|
document.removeEventListener('mousemove', handleMouseMove);
|
|
242
243
|
document.removeEventListener('mouseup', handleMouseUp);
|
|
243
244
|
setIsResizing(false);
|
|
244
245
|
};
|
|
245
|
-
|
|
246
|
+
|
|
246
247
|
const handleresize = (e: any, data: any, title: string) => {
|
|
247
248
|
const newWidth = data?.size?.width || 0;
|
|
248
249
|
setInnerWidth(newWidth); // 更新内部分宽度
|
|
249
250
|
};
|
|
250
|
-
|
|
251
|
+
|
|
251
252
|
const handleResizeStart = () => {
|
|
252
253
|
setIsResizing(true);
|
|
253
254
|
};
|
|
254
|
-
|
|
255
|
+
|
|
255
256
|
const handleResizeStop = (e: any, data: any) => {
|
|
256
257
|
setIsResizing(false);
|
|
257
258
|
if (onResize) {
|
|
@@ -265,11 +266,11 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
265
266
|
setInnerWidth(width);
|
|
266
267
|
}
|
|
267
268
|
}, [width]);
|
|
268
|
-
|
|
269
|
+
|
|
269
270
|
const thStyle = {
|
|
270
271
|
boxShadow: isResizing ? '2px 2px 10px rgba(0, 0, 0, 0.3)' : 'none',
|
|
271
272
|
};
|
|
272
|
-
|
|
273
|
+
|
|
273
274
|
return (
|
|
274
275
|
<Resizable
|
|
275
276
|
width={innerWidth}
|
|
@@ -333,7 +334,7 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
333
334
|
|
|
334
335
|
/**
|
|
335
336
|
* 处理行点击事件
|
|
336
|
-
* @param record
|
|
337
|
+
* @param record
|
|
337
338
|
*/
|
|
338
339
|
handleRowClick = (record: any) => {
|
|
339
340
|
const { selectedRowKeys, selectedRows, } = this.state;
|
|
@@ -420,7 +421,7 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
420
421
|
...propRowSelection,
|
|
421
422
|
selectedRowKeys: this.state.selectedRowKeys,
|
|
422
423
|
onChange: (selectedRowKeys: any, selectedRows: any) => {
|
|
423
|
-
this.setState({
|
|
424
|
+
this.setState({
|
|
424
425
|
selectedRowKeys,
|
|
425
426
|
selectedRows
|
|
426
427
|
});
|
|
@@ -436,7 +437,7 @@ export default class ColumnSettingSulaTable extends React.Component {
|
|
|
436
437
|
};
|
|
437
438
|
},
|
|
438
439
|
}
|
|
439
|
-
|
|
440
|
+
|
|
440
441
|
return (
|
|
441
442
|
<div style={{ position: 'relative' }}>
|
|
442
443
|
<span style={{ position: 'absolute', zIndex: '10', right: '8px', top: '10px' }} className="ant-dropdown-link">
|
|
@@ -222,6 +222,98 @@ const AddSelect = (props: any) => {
|
|
|
222
222
|
acc[key] = typeof value === 'function' ? value?.(record) : value;
|
|
223
223
|
return acc;
|
|
224
224
|
}, {});
|
|
225
|
+
|
|
226
|
+
// 可输入非数字字符
|
|
227
|
+
if(item.canInputString) {
|
|
228
|
+
return (
|
|
229
|
+
<InputNumber
|
|
230
|
+
min={0}
|
|
231
|
+
precision={0}
|
|
232
|
+
controls={false}
|
|
233
|
+
{...inputProps}
|
|
234
|
+
value={text || ''}
|
|
235
|
+
keyboard={false}
|
|
236
|
+
onPressEnter={(e: any) => {
|
|
237
|
+
e.target.blur();
|
|
238
|
+
}}
|
|
239
|
+
onBlur={async (e: any) => {
|
|
240
|
+
const {
|
|
241
|
+
target: { value },
|
|
242
|
+
} = e;
|
|
243
|
+
record[item.dataIndex] = value
|
|
244
|
+
editRecord(record)
|
|
245
|
+
}}
|
|
246
|
+
onKeyDown={(e) => {
|
|
247
|
+
if(e.keyCode === 13 && e.ctrlKey) {
|
|
248
|
+
handleOk(true)
|
|
249
|
+
document.getElementById("first-query")?.focus()
|
|
250
|
+
}
|
|
251
|
+
if(e.keyCode === 8 && e.ctrlKey) {
|
|
252
|
+
message.success('删除当前行')
|
|
253
|
+
e.stopPropagation();
|
|
254
|
+
e.preventDefault();
|
|
255
|
+
let dom = e.nativeEvent.path[5].children[index + 2]?.getElementsByTagName('input')[currentIndex]
|
|
256
|
+
if (dom) {
|
|
257
|
+
dom.select();
|
|
258
|
+
dom.focus();
|
|
259
|
+
dom.scrollIntoView(false)
|
|
260
|
+
}
|
|
261
|
+
dom = null
|
|
262
|
+
deleteRecord(record, popvalue);
|
|
263
|
+
}
|
|
264
|
+
if (e.keyCode === 37 && e.shiftKey) { // 左滑动
|
|
265
|
+
e.stopPropagation();
|
|
266
|
+
e.preventDefault();
|
|
267
|
+
let dom = e.nativeEvent.path[5].children[index + 1]?.getElementsByTagName('input')[currentIndex - 1]
|
|
268
|
+
if (dom) {
|
|
269
|
+
dom.select();
|
|
270
|
+
dom.focus();
|
|
271
|
+
dom.scrollIntoView(false)
|
|
272
|
+
}
|
|
273
|
+
dom = null
|
|
274
|
+
}
|
|
275
|
+
if (e.keyCode === 39 && e.shiftKey) { // 右滑
|
|
276
|
+
e.stopPropagation();
|
|
277
|
+
e.preventDefault();
|
|
278
|
+
let dom = e.nativeEvent.path[5].children[index + 1]?.getElementsByTagName('input')[currentIndex + 1]
|
|
279
|
+
if (dom) {
|
|
280
|
+
dom.select();
|
|
281
|
+
dom.focus();
|
|
282
|
+
dom.scrollIntoView(false)
|
|
283
|
+
}
|
|
284
|
+
dom = null
|
|
285
|
+
}
|
|
286
|
+
if (e.keyCode === 40) {
|
|
287
|
+
e.stopPropagation();
|
|
288
|
+
e.preventDefault();
|
|
289
|
+
let dom = e.nativeEvent.path[5].children[index + 2]?.getElementsByTagName('input')[currentIndex]
|
|
290
|
+
if (dom) {
|
|
291
|
+
dom.select();
|
|
292
|
+
dom.focus();
|
|
293
|
+
dom.scrollIntoView(false)
|
|
294
|
+
}
|
|
295
|
+
dom = null
|
|
296
|
+
} else if (e.keyCode === 38) {
|
|
297
|
+
e.stopPropagation();
|
|
298
|
+
e.preventDefault();
|
|
299
|
+
let dom1 = e.nativeEvent.path[5].children[index]?.getElementsByTagName('input')[currentIndex]
|
|
300
|
+
if (dom1) {
|
|
301
|
+
// dom1.value=""
|
|
302
|
+
// dom1.setSelectionRange(100, 0);
|
|
303
|
+
dom1.select();
|
|
304
|
+
dom1.focus();
|
|
305
|
+
dom1.scrollIntoViewIfNeeded(false)
|
|
306
|
+
// dom1.value=record['count']
|
|
307
|
+
}
|
|
308
|
+
dom1 = null
|
|
309
|
+
} else if (e.keyCode === 9 && index === selectedRowKeys.length - 1 && currentIndex === inputLength - 1) {
|
|
310
|
+
e.stopPropagation();
|
|
311
|
+
e.preventDefault();
|
|
312
|
+
}
|
|
313
|
+
}}
|
|
314
|
+
/>
|
|
315
|
+
);
|
|
316
|
+
}
|
|
225
317
|
|
|
226
318
|
return (
|
|
227
319
|
<InputNumber
|
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
.search_select .ant-select-selector {
|
|
2
|
+
height: 24px;
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
}
|
|
5
|
+
.search_select .ant-select-selector .ant-select-selection-overflow {
|
|
6
|
+
height: 40px;
|
|
7
|
+
flex-wrap: nowrap;
|
|
8
|
+
overflow-x: auto;
|
|
9
|
+
}
|
|
10
|
+
.search_select .ant-select-selector .ant-select-selection-overflow-item {
|
|
11
|
+
align-self: auto;
|
|
12
|
+
}
|
|
13
|
+
.search_select_show {
|
|
14
|
+
display: flex;
|
|
15
|
+
}
|
|
16
|
+
.search_select_show .ant-select-dropdown {
|
|
17
|
+
top: 24px !important;
|
|
18
|
+
width: calc(141%) !important;
|
|
19
|
+
}
|
|
20
|
+
.search_select_show .ant-select-clear {
|
|
21
|
+
right: 33px;
|
|
22
|
+
}
|
|
23
|
+
.search_select_show .ant-select-multiple.ant-select-show-arrow .ant-select-selector,
|
|
24
|
+
.search_select_show .ant-select-multiple.ant-select-allow-clear .ant-select-selector {
|
|
25
|
+
padding-right: 28px;
|
|
26
|
+
}
|
|
27
|
+
.search_select_show.search_select_show_list .ant-select-dropdown {
|
|
28
|
+
top: 24px !important;
|
|
29
|
+
width: calc(100% + 110px) !important;
|
|
30
|
+
}
|
|
31
|
+
.search_select_expand_button {
|
|
32
|
+
position: relative;
|
|
33
|
+
right: -11px;
|
|
34
|
+
width: 30px;
|
|
35
|
+
border-left: 1px solid #d9d9d9;
|
|
36
|
+
height: 24px;
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
font-size: 14px;
|
|
39
|
+
font-weight: bolder;
|
|
40
|
+
}
|
|
41
|
+
.search_select_expand_button span {
|
|
42
|
+
position: absolute;
|
|
43
|
+
left: 50%;
|
|
44
|
+
top: 50%;
|
|
45
|
+
transform: translate(-50%, -50%);
|
|
46
|
+
}
|
|
47
|
+
.search_select_expand_button:hover {
|
|
48
|
+
background-color: #005cff;
|
|
49
|
+
color: #fff;
|
|
50
|
+
border-top-right-radius: 2px;
|
|
51
|
+
border-bottom-right-radius: 2px;
|
|
52
|
+
}
|
|
53
|
+
.search_select_expand_button_disabled:hover {
|
|
54
|
+
background-color: transparent;
|
|
55
|
+
color: rgba(0, 0, 0, 0.25);
|
|
56
|
+
cursor: not-allowed;
|
|
57
|
+
}
|
|
58
|
+
.search_select_dropdown_table .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table {
|
|
59
|
+
font-family: MiSans-Regular;
|
|
60
|
+
font-weight: 400;
|
|
61
|
+
font-size: 12px;
|
|
62
|
+
}
|
|
63
|
+
.search_select_dropdown_table .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table thead > tr > th {
|
|
64
|
+
color: #7F7F7F;
|
|
65
|
+
}
|
|
66
|
+
.search_select_dropdown_table .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table .ant-table-thead .ant-table-selection .ant-checkbox-wrapper {
|
|
67
|
+
justify-content: center;
|
|
68
|
+
}
|
|
69
|
+
.search_select_dropdown_table .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table tbody > tr > td {
|
|
70
|
+
color: #333333;
|
|
71
|
+
}
|
|
72
|
+
.search_select_dropdown_table1 .ant-table.ant-table-bordered > .ant-table-container .ant-table-body > table > tbody > tr > td.ant-table-selection-column,
|
|
73
|
+
.search_select_dropdown_table1 .ant-table.ant-table-bordered > .ant-table-container .ant-table-header > table > thead > tr > th.ant-table-selection-column {
|
|
74
|
+
visibility: hidden;
|
|
75
|
+
padding: 0;
|
|
76
|
+
margin: 0;
|
|
77
|
+
width: 0;
|
|
78
|
+
height: 0;
|
|
79
|
+
min-width: 0;
|
|
80
|
+
min-height: 0;
|
|
81
|
+
border: none;
|
|
82
|
+
}
|
|
83
|
+
.search_select_dropdown_table1 .ant-table.ant-table-bordered > .ant-table-container .ant-table-body > table > tbody > tr > td.ant-table-selection-column .ant-radio-wrapper,
|
|
84
|
+
.search_select_dropdown_table1 .ant-table.ant-table-bordered > .ant-table-container .ant-table-header > table > thead > tr > th.ant-table-selection-column .ant-radio-wrapper {
|
|
85
|
+
display: none;
|
|
86
|
+
}
|
|
87
|
+
.search_select_modal_wrapper .ant-modal {
|
|
88
|
+
top: 60px;
|
|
89
|
+
}
|
|
90
|
+
.search_select_modal_wrapper .ant-modal-header {
|
|
91
|
+
padding: 6px 0px 6px 16px;
|
|
92
|
+
}
|
|
93
|
+
.search_select_modal_wrapper .ant-modal-header .ant-modal-title {
|
|
94
|
+
height: 20px;
|
|
95
|
+
color: #000000;
|
|
96
|
+
line-height: 20px;
|
|
97
|
+
}
|
|
98
|
+
.search_select_modal_wrapper .ant-modal-close-x {
|
|
99
|
+
width: 32px;
|
|
100
|
+
height: 32px;
|
|
101
|
+
line-height: 32px;
|
|
102
|
+
}
|
|
103
|
+
.search_select_modal_wrapper .ant-modal-body {
|
|
104
|
+
padding: 0px;
|
|
105
|
+
background: #F3F3F3;
|
|
106
|
+
height: calc(100vh - 190px);
|
|
107
|
+
overflow: hidden;
|
|
108
|
+
}
|
|
109
|
+
.search_select_modal_wrapper .ant-modal-footer .ant-btn.ant-btn-default {
|
|
110
|
+
color: #005cff;
|
|
111
|
+
border-color: #005cff;
|
|
112
|
+
}
|
|
113
|
+
.search_select_modal_wrapper .ant-modal-footer .ant-btn-primary,
|
|
114
|
+
.search_select_modal_wrapper .ant-modal-footer .ant-btn-primary[disabled] {
|
|
115
|
+
background: #005cff;
|
|
116
|
+
border-color: #005cff;
|
|
117
|
+
}
|
|
118
|
+
.search_select_modal_wrapper .ant-modal-footer .ant-btn-primary[disabled] {
|
|
119
|
+
opacity: 0.5;
|
|
120
|
+
color: #fff;
|
|
121
|
+
}
|
|
122
|
+
.search_select_wrapper {
|
|
123
|
+
position: relative;
|
|
124
|
+
font-size: 14px;
|
|
125
|
+
}
|
|
126
|
+
.search_select_wrapper_topForm .select_list_columns {
|
|
127
|
+
width: 100%;
|
|
128
|
+
padding: 10px 6px 2px 16px;
|
|
129
|
+
background-color: #fff;
|
|
130
|
+
}
|
|
131
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form {
|
|
132
|
+
padding: 0;
|
|
133
|
+
display: flex;
|
|
134
|
+
align-items: flex-start;
|
|
135
|
+
}
|
|
136
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row .ant-form-item,
|
|
137
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row .ant-col .ant-space {
|
|
138
|
+
font-size: 12px !important;
|
|
139
|
+
margin-right: 0px !important;
|
|
140
|
+
margin-bottom: 8px !important;
|
|
141
|
+
}
|
|
142
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row.ant-form-item-row {
|
|
143
|
+
background-color: #fafafa;
|
|
144
|
+
border: 0.8px solid #D9D9D9;
|
|
145
|
+
border-radius: 2px;
|
|
146
|
+
font-size: 12px;
|
|
147
|
+
}
|
|
148
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row {
|
|
149
|
+
width: 100%;
|
|
150
|
+
}
|
|
151
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row .ant-form-item-label {
|
|
152
|
+
width: 110px;
|
|
153
|
+
order: 1;
|
|
154
|
+
}
|
|
155
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row .ant-form-item-label label {
|
|
156
|
+
width: 100%;
|
|
157
|
+
text-align: left;
|
|
158
|
+
padding: 0 10px;
|
|
159
|
+
color: #333333;
|
|
160
|
+
font-size: 12px;
|
|
161
|
+
font-family: PingFangSC-Regular;
|
|
162
|
+
font-weight: 400;
|
|
163
|
+
}
|
|
164
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row .ant-form-item-control {
|
|
165
|
+
order: 2;
|
|
166
|
+
width: 100px;
|
|
167
|
+
}
|
|
168
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row .ant-form-item-control .ant-input-affix-wrapper {
|
|
169
|
+
border: 0;
|
|
170
|
+
font-size: 12px;
|
|
171
|
+
background-color: #fafafa;
|
|
172
|
+
padding: 0 11px;
|
|
173
|
+
height: 24px;
|
|
174
|
+
}
|
|
175
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row .ant-form-item-control .ant-input-affix-wrapper .ant-input {
|
|
176
|
+
background-color: #fafafa !important;
|
|
177
|
+
border: 0;
|
|
178
|
+
font-size: 12px;
|
|
179
|
+
}
|
|
180
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row .ant-form-item-control .ant-select-selector {
|
|
181
|
+
border: 0 !important;
|
|
182
|
+
background-color: #fafafa !important;
|
|
183
|
+
font-size: 12px;
|
|
184
|
+
}
|
|
185
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-row .ant-form-item-control .query_input .ant-input {
|
|
186
|
+
background-color: #fafafa !important;
|
|
187
|
+
border: 0;
|
|
188
|
+
font-size: 12px;
|
|
189
|
+
}
|
|
190
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form .ant-btn-primary {
|
|
191
|
+
background: #005cff;
|
|
192
|
+
}
|
|
193
|
+
.search_select_wrapper_topForm .select_list_columns .ant-form > .ant-row > .ant-col {
|
|
194
|
+
order: 2;
|
|
195
|
+
padding-right: 10px;
|
|
196
|
+
}
|
|
197
|
+
.search_select_wrapper_topForm .select_list_button_space {
|
|
198
|
+
margin-right: 10px;
|
|
199
|
+
}
|
|
200
|
+
.search_select_wrapper_bottomTable {
|
|
201
|
+
margin: 10px;
|
|
202
|
+
display: flex;
|
|
203
|
+
justify-content: space-between;
|
|
204
|
+
}
|
|
205
|
+
.search_select_wrapper_bottomTable_wrapLeft1,
|
|
206
|
+
.search_select_wrapper_bottomTable_wrapLeft2,
|
|
207
|
+
.search_select_wrapper_bottomTable_wrapRight {
|
|
208
|
+
background: #fff;
|
|
209
|
+
width: calc(50% - 5px);
|
|
210
|
+
}
|
|
211
|
+
.search_select_wrapper_bottomTable_wrapLeft1 .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table .ant-table-thead .ant-table-selection .ant-checkbox-wrapper,
|
|
212
|
+
.search_select_wrapper_bottomTable_wrapLeft2 .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table .ant-table-thead .ant-table-selection .ant-checkbox-wrapper,
|
|
213
|
+
.search_select_wrapper_bottomTable_wrapRight .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table .ant-table-thead .ant-table-selection .ant-checkbox-wrapper {
|
|
214
|
+
justify-content: center;
|
|
215
|
+
}
|
|
216
|
+
.search_select_wrapper_bottomTable_wrapLeft1 {
|
|
217
|
+
width: 100%;
|
|
218
|
+
}
|
|
219
|
+
.search_select_wrapper_bottomTable_wrapRight {
|
|
220
|
+
margin-left: 10px;
|
|
221
|
+
}
|
|
222
|
+
.search_select_wrapper_bottomTable .ant-tabs-nav {
|
|
223
|
+
margin: 0;
|
|
224
|
+
padding: 6px 18.5px;
|
|
225
|
+
}
|
|
226
|
+
.search_select_wrapper_bottomTable .ant-tabs-nav .ant-tabs-nav-wrap {
|
|
227
|
+
height: 28px;
|
|
228
|
+
font-size: 14px;
|
|
229
|
+
}
|
|
230
|
+
.search_select_wrapper_bottomTable .ant-tabs-nav .ant-tabs-tab {
|
|
231
|
+
padding: 4px 0;
|
|
232
|
+
}
|
|
233
|
+
.search_select_wrapper_bottomTable .ant-tabs-nav .ant-tabs-ink-bar {
|
|
234
|
+
left: 3px !important;
|
|
235
|
+
width: 40px !important;
|
|
236
|
+
background: #005cff;
|
|
237
|
+
}
|
|
238
|
+
.search_select_wrapper_bottomTable .ant-tabs-nav .ant-tabs-extra-content > span {
|
|
239
|
+
color: #005cff;
|
|
240
|
+
cursor: pointer;
|
|
241
|
+
}
|
|
242
|
+
.search_select_wrapper_bottomTable .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
|
|
243
|
+
color: #005cff;
|
|
244
|
+
}
|
|
245
|
+
.search_select_wrapper_bottomTable .ant-tabs-content-holder {
|
|
246
|
+
padding: 10px 10px 7px;
|
|
247
|
+
}
|
|
248
|
+
.search_select_wrapper_bottomTable .ant-tabs-content-holder .ant-tabs-content .ant-table-wrapper .ant-table .ant-table-container .ant-table-content .ant-table-thead > tr > th {
|
|
249
|
+
color: #7F7F7F;
|
|
250
|
+
}
|
|
251
|
+
.search_select_wrapper_bottomTable .ant-tabs-content-holder .ant-tabs-content .ant-table-wrapper .ant-table .ant-table-container .ant-table-content .ant-table-thead .ant-table-selection .ant-checkbox-wrapper {
|
|
252
|
+
justify-content: center;
|
|
253
|
+
}
|
|
254
|
+
.search_select_wrapper_bottomTable .ant-tabs-content-holder .ant-tabs-content .ant-table-wrapper .ant-table .ant-table-container .ant-table-content .ant-table.ant-table-small .ant-table-tbody > tr > td {
|
|
255
|
+
color: #333333;
|
|
256
|
+
}
|
|
257
|
+
.search_select_wrapper_bottomTable .ant-checkbox-checked .ant-checkbox-inner {
|
|
258
|
+
color: #005cff;
|
|
259
|
+
background: #005cff;
|
|
260
|
+
}
|
|
261
|
+
.search_select_wrapper_bottomTable .ant-pagination-item-active a {
|
|
262
|
+
color: #005cff;
|
|
263
|
+
}
|
|
264
|
+
.search_select_wrapper_bottomTable .ant-pagination-item-active {
|
|
265
|
+
border-color: #005cff;
|
|
266
|
+
}
|
|
267
|
+
.searchSelectSpin > div {
|
|
268
|
+
height: 300px !important;
|
|
269
|
+
}
|
|
270
|
+
.searchSelectMaxTagToolTip .ant-tooltip-inner {
|
|
271
|
+
max-height: 72px;
|
|
272
|
+
overflow-x: auto;
|
|
273
|
+
padding: 0px;
|
|
274
|
+
}
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
.ant-modal-body {
|
|
136
136
|
padding: 0px;
|
|
137
137
|
background: #F3F3F3;
|
|
138
|
-
height: calc(100vh -
|
|
138
|
+
height: calc(100vh - 190px); // modal弹窗760 调整为700 适应小屏
|
|
139
139
|
overflow: hidden;
|
|
140
140
|
}
|
|
141
141
|
.ant-modal-footer {
|
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
.ant-row .ant-form-item-label {
|
|
186
186
|
width: 110px;
|
|
187
187
|
order: 1;
|
|
188
|
-
|
|
188
|
+
|
|
189
189
|
label{
|
|
190
190
|
width: 100%;
|
|
191
191
|
text-align: left;
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
color: #333333;
|
|
194
194
|
font-size: 12px;
|
|
195
195
|
font-family: PingFangSC-Regular;
|
|
196
|
-
font-weight: 400;
|
|
196
|
+
font-weight: 400;
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
.ant-row .ant-form-item-control {
|
|
@@ -287,11 +287,11 @@
|
|
|
287
287
|
}
|
|
288
288
|
.ant-tabs-content-holder {
|
|
289
289
|
padding: 10px 10px 7px;
|
|
290
|
-
|
|
290
|
+
|
|
291
291
|
.ant-tabs-content .ant-table-wrapper .ant-table .ant-table-container .ant-table-content {
|
|
292
292
|
// max-height: 472px; // 空数据528px;非空数据因为有分页所以472px
|
|
293
293
|
// overflow: auto scroll !important; // 这样滑动会将表头滑走,使用table自带的scrolly 解决高度问题
|
|
294
|
-
|
|
294
|
+
|
|
295
295
|
.ant-table-thead > tr > th {
|
|
296
296
|
color: #7F7F7F;
|
|
297
297
|
}
|
|
@@ -32,6 +32,7 @@ const SearchSelect = forwardRef((props: any, ref: any) => {
|
|
|
32
32
|
highestPopContainer = undefined,
|
|
33
33
|
fieldComponent,
|
|
34
34
|
onSaveCallback,
|
|
35
|
+
returnFormat = [],
|
|
35
36
|
selectBusinessType,
|
|
36
37
|
} = props;
|
|
37
38
|
const {
|
|
@@ -66,6 +67,8 @@ const SearchSelect = forwardRef((props: any, ref: any) => {
|
|
|
66
67
|
const selectParamsKey = requestConfig?.filter || 'qp-codeAndName-like'
|
|
67
68
|
const selectParamsInitKey = requestConfig?.filterInit || selectParamsKey
|
|
68
69
|
const currentSelectProps = {
|
|
70
|
+
// 回显字段可自定义
|
|
71
|
+
optionLabelProp: "label",
|
|
69
72
|
...selectProps,
|
|
70
73
|
// 以下属性不可更改----设计配置项
|
|
71
74
|
showArrow: true,
|
|
@@ -73,7 +76,6 @@ const SearchSelect = forwardRef((props: any, ref: any) => {
|
|
|
73
76
|
filterOption: false,
|
|
74
77
|
allowClear: true,
|
|
75
78
|
listHeight: 160,
|
|
76
|
-
optionLabelProp: "label",
|
|
77
79
|
autoClearSearchValue: false,
|
|
78
80
|
placement: 'bottomRight'
|
|
79
81
|
}
|
|
@@ -431,7 +433,8 @@ const SearchSelect = forwardRef((props: any, ref: any) => {
|
|
|
431
433
|
|
|
432
434
|
const formaData = (value: any, source: any) => {
|
|
433
435
|
if (labelInValue) {
|
|
434
|
-
const
|
|
436
|
+
const getFromat = (format, val) => format.map(({key,value})=> ({[key]:val[value]}))
|
|
437
|
+
const formatResult = value.map((i: any) => (Object.assign({ key: i[mappingValueField] || i.key, label: i[mappingTextField] || i.label, value: i[mappingValueField] || i.value }, ...getFromat(returnFormat, i))))
|
|
435
438
|
onChange(selectMode ? formatResult : formatResult[0], value,source)
|
|
436
439
|
} else {
|
|
437
440
|
const formatResult = selectMode ? value.map((i: any) => i.value) : _.get(value[0], 'value')
|
package/src/index.ts
CHANGED
|
@@ -48,3 +48,5 @@ export { default as RuleSetter} from './components/Solution/RuleSetter';
|
|
|
48
48
|
export { default as ExtendedCollapse } from './components/Common/ExtendedCollapse';
|
|
49
49
|
export { default as Section } from './components/Common/Section';
|
|
50
50
|
export { default as ParagraphCopier } from './components/Common/ParagraphCopier';
|
|
51
|
+
|
|
52
|
+
export { default as SystemLog } from './components/Business/SystemLog';
|
package/src/utils/utils.ts
CHANGED
|
@@ -267,4 +267,44 @@ export const handleConvertResponse = (items: any, total: number): object => {
|
|
|
267
267
|
|
|
268
268
|
export const noEmptyArray = (targetObj: any) => {
|
|
269
269
|
return Array.isArray(targetObj) && targetObj.length !== 0;
|
|
270
|
-
};
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
export const formContainerAndItemLayout = (type: string, title: any, name: string) => {
|
|
273
|
+
return type === 'form' ? {
|
|
274
|
+
container: {
|
|
275
|
+
type: 'card',
|
|
276
|
+
props: {
|
|
277
|
+
title,
|
|
278
|
+
id: Math.random(),
|
|
279
|
+
level: 1,
|
|
280
|
+
name
|
|
281
|
+
},
|
|
282
|
+
},
|
|
283
|
+
itemLayout: {
|
|
284
|
+
span: 8, // span表示每项所占的栅格数
|
|
285
|
+
labelCol: {
|
|
286
|
+
span: 8,
|
|
287
|
+
},
|
|
288
|
+
wrapperCol: {
|
|
289
|
+
span: 18,
|
|
290
|
+
},
|
|
291
|
+
},
|
|
292
|
+
} : {
|
|
293
|
+
container: {
|
|
294
|
+
type: 'card',
|
|
295
|
+
props: {
|
|
296
|
+
title,
|
|
297
|
+
id: Math.random(),
|
|
298
|
+
level: 1,
|
|
299
|
+
bordered: null,
|
|
300
|
+
isWhiteCard: true,
|
|
301
|
+
name
|
|
302
|
+
},
|
|
303
|
+
},
|
|
304
|
+
itemLayout: {
|
|
305
|
+
wrapperCol: {
|
|
306
|
+
span: 0,
|
|
307
|
+
},
|
|
308
|
+
},
|
|
309
|
+
}
|
|
310
|
+
}
|