gxxc-ui 1.0.28 → 1.0.30
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/FilterUI/index.js
CHANGED
|
@@ -44,7 +44,7 @@ var FilterUI = function FilterUI(props) {
|
|
|
44
44
|
setFilterName = _useState6[1];
|
|
45
45
|
//区分默认展示和更多筛选表单
|
|
46
46
|
var sliceOptions = function sliceOptions() {
|
|
47
|
-
var maxVisibleOptions =
|
|
47
|
+
var maxVisibleOptions = 8;
|
|
48
48
|
var totalOptions = filterOptions.length;
|
|
49
49
|
if (totalOptions <= maxVisibleOptions) {
|
|
50
50
|
setVisibleOptions(filterOptions);
|
package/dist/FilterUI/index.scss
CHANGED
|
@@ -48,8 +48,9 @@ export var Setting = function Setting(props) {
|
|
|
48
48
|
/// 更新排序 sort
|
|
49
49
|
dataSource.map(function (item, i) {
|
|
50
50
|
item.sort = Number(i) + 1;
|
|
51
|
+
tableHeader[i] = item;
|
|
51
52
|
});
|
|
52
|
-
getTableheader(
|
|
53
|
+
getTableheader(tableHeader);
|
|
53
54
|
_setOpenModifyHeader(false);
|
|
54
55
|
};
|
|
55
56
|
// 关闭
|