@zgfe/modules-page 1.0.1-alpha.14 → 1.0.1-alpha.16
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.
|
@@ -53,7 +53,6 @@ var SearchPanel = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
53
53
|
*/
|
|
54
54
|
var onChange = function onChange(_changedValues, allValues) {
|
|
55
55
|
setFormData(allValues);
|
|
56
|
-
console.log(formatValue(allValues), 'onChange allValues');
|
|
57
56
|
props.onChange && props.onChange(formatValue(allValues));
|
|
58
57
|
};
|
|
59
58
|
var onAdd = function onAdd() {
|
|
@@ -2,6 +2,9 @@ import React from 'react';
|
|
|
2
2
|
import { ModulesPage } from '@zgfe/modules-page';
|
|
3
3
|
import { DemoWrapper } from '@zgfe/business-lib';
|
|
4
4
|
export default (function () {
|
|
5
|
+
var onClickWarn = function onClickWarn() {
|
|
6
|
+
console.log('onClickWarn');
|
|
7
|
+
};
|
|
5
8
|
return /*#__PURE__*/React.createElement(DemoWrapper, {
|
|
6
9
|
needMeta: true,
|
|
7
10
|
defaultApp: 266
|
|
@@ -10,5 +13,7 @@ export default (function () {
|
|
|
10
13
|
height: 750,
|
|
11
14
|
overflow: 'auto'
|
|
12
15
|
}
|
|
13
|
-
}, /*#__PURE__*/React.createElement(ModulesPage,
|
|
16
|
+
}, /*#__PURE__*/React.createElement(ModulesPage, {
|
|
17
|
+
onClickWarn: onClickWarn
|
|
18
|
+
})));
|
|
14
19
|
});
|
|
@@ -129,10 +129,7 @@ var ModulesPage = function ModulesPage(props) {
|
|
|
129
129
|
}
|
|
130
130
|
if (type === 'pageGroup' && !(searchValue !== null && searchValue !== void 0 && searchValue.pageGroup)) return;
|
|
131
131
|
if (type === 'page' || pageType === 'detail') {
|
|
132
|
-
|
|
133
|
-
setOriginSearchValue(_.cloneDeep(searchValue));
|
|
134
|
-
fetch();
|
|
135
|
-
}
|
|
132
|
+
fetch();
|
|
136
133
|
}
|
|
137
134
|
}, [searchValue]);
|
|
138
135
|
// 查询结果
|
|
@@ -142,6 +139,10 @@ var ModulesPage = function ModulesPage(props) {
|
|
|
142
139
|
}
|
|
143
140
|
setLoading(true);
|
|
144
141
|
setTimer(setTimeout(function () {
|
|
142
|
+
if (_.isEqual(originSearchValue, searchValue)) {
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
setOriginSearchValue(_.cloneDeep(searchValue));
|
|
145
146
|
var param = _objectSpread({
|
|
146
147
|
appId: currentApp === null || currentApp === void 0 ? void 0 : currentApp.appId,
|
|
147
148
|
platform: 3,
|
|
@@ -191,6 +192,7 @@ var ModulesPage = function ModulesPage(props) {
|
|
|
191
192
|
className: "".concat(classPrefix, "-top-render")
|
|
192
193
|
}, /*#__PURE__*/React.createElement(Button, {
|
|
193
194
|
type: "primary",
|
|
195
|
+
disabled: loading || !result || !result.length,
|
|
194
196
|
onClick: props.onClickWarn
|
|
195
197
|
}, "\u8BBE\u7F6E\u6D41\u5931\u9884\u8B66"));
|
|
196
198
|
if (isEmpty) return /*#__PURE__*/React.createElement(EmptyPanel, null);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zgfe/modules-page",
|
|
3
|
-
"version": "1.0.1-alpha.
|
|
3
|
+
"version": "1.0.1-alpha.16",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "dumi dev",
|
|
6
6
|
"docs:build": "dumi build",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"prettier": "^2.2.1",
|
|
51
51
|
"yorkie": "^2.0.0"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "b791fde5be516ddc341c5e516c251e19ab3a6bdd"
|
|
54
54
|
}
|