@hzab/list-render 1.9.9 → 1.9.10-beta
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/CHANGELOG.md +3 -0
- package/package.json +2 -1
- package/src/list-render.jsx +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hzab/list-render",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.10-beta",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "src",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "webpack serve -c ./config/webpack.config.js --env local",
|
|
8
8
|
"build": "webpack -c ./config/webpack.config.js --env production",
|
|
9
|
+
"publish-beta": "npm publish --beta",
|
|
9
10
|
"publish-patch": "npm version patch && npm publish --access public",
|
|
10
11
|
"publish-minor": "npm version minor && npm publish --access public",
|
|
11
12
|
"publish-major": "npm version major && npm publish --access public"
|
package/src/list-render.jsx
CHANGED
|
@@ -154,7 +154,7 @@ const ListRender = forwardRef(function (props, parentRef) {
|
|
|
154
154
|
delete mergedQueries.$timerange;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
model.query = mergedQueries;
|
|
157
|
+
// model.query = mergedQueries;
|
|
158
158
|
|
|
159
159
|
// 取消上一次请求
|
|
160
160
|
getListSourceRef.current?.cancel({ code: 601, message: "取消上一次请求" });
|
|
@@ -210,7 +210,7 @@ const ListRender = forwardRef(function (props, parentRef) {
|
|
|
210
210
|
model.query.pageSize = pageSizeOptions[0];
|
|
211
211
|
}
|
|
212
212
|
formQueryRef.current = query;
|
|
213
|
-
model.query = Object.assign(model.query, query);
|
|
213
|
+
// model.query = Object.assign(model.query, query);
|
|
214
214
|
getList(query);
|
|
215
215
|
}
|
|
216
216
|
|