@bit-sun/business-component 4.0.13-alpha.6 → 4.0.13-alpha.8
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/package.json
CHANGED
|
@@ -711,7 +711,7 @@ class SortableTable extends React.Component {
|
|
|
711
711
|
<div className={'sort_table_wrapper'}>
|
|
712
712
|
{visible && (
|
|
713
713
|
<Modal
|
|
714
|
-
title="
|
|
714
|
+
title="展示列设置"
|
|
715
715
|
wrapClassName={'sort_table_wrapper'}
|
|
716
716
|
width={810}
|
|
717
717
|
visible={visible}
|
|
@@ -748,7 +748,7 @@ class SortableTable extends React.Component {
|
|
|
748
748
|
<div className={'sort_table'}>
|
|
749
749
|
<div className={'sort_table_column_wrapper'}>
|
|
750
750
|
<span className={'sort_table_column_count'}>
|
|
751
|
-
<span
|
|
751
|
+
<span>勾选你想展示的表格列</span>
|
|
752
752
|
</span>
|
|
753
753
|
<div className={'sort_table_column'}>
|
|
754
754
|
<Input
|
|
@@ -882,7 +882,7 @@ class SortableTable extends React.Component {
|
|
|
882
882
|
</div>
|
|
883
883
|
<div className={'sort_table_content_wrapper'}>
|
|
884
884
|
<span className={'sort_table_content_count'}>
|
|
885
|
-
<span
|
|
885
|
+
<span>已选择的展示列排序</span>
|
|
886
886
|
</span>
|
|
887
887
|
<div className={'sort_table_content'}>
|
|
888
888
|
<span style={{ paddingLeft: '10px' }}>
|
|
@@ -21,6 +21,7 @@ const SearchSelect = forwardRef((props: any, ref: any) => {
|
|
|
21
21
|
selectProps = {},
|
|
22
22
|
modalTableProps = {},
|
|
23
23
|
labelInValue = false,
|
|
24
|
+
needTopSelectedSource,
|
|
24
25
|
requestConfig:rCTemp,
|
|
25
26
|
ctx,
|
|
26
27
|
onlyShowStr = false,
|
|
@@ -251,7 +252,7 @@ const SearchSelect = forwardRef((props: any, ref: any) => {
|
|
|
251
252
|
return;
|
|
252
253
|
}
|
|
253
254
|
const res = result.data;
|
|
254
|
-
const source: any = convertResData(requestConfig, res, { selectMode, labelInValue, value, type, items, queryParams });
|
|
255
|
+
const source: any = convertResData(requestConfig, res, { selectMode, labelInValue, value, type, items, queryParams, needTopSelectedSource });
|
|
255
256
|
|
|
256
257
|
if(callback) {
|
|
257
258
|
callback(source)
|