@yoooloo42/joker 1.0.172 → 1.0.174
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/index.cjs.js +7 -11
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -11
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -22715,7 +22715,7 @@ const reload = async _ref2 => {
|
|
|
22715
22715
|
let {
|
|
22716
22716
|
scopeThis
|
|
22717
22717
|
} = _ref2;
|
|
22718
|
-
unclassified.deepClone.replaceObject(scopeThis.query, scopeThis.queryInit);
|
|
22718
|
+
unclassified.deepClone.replaceObject(scopeThis.query.formData, scopeThis.queryInit);
|
|
22719
22719
|
const result = await refresh({
|
|
22720
22720
|
scopeThis
|
|
22721
22721
|
});
|
|
@@ -22762,9 +22762,9 @@ const popupFind = async _ref5 => {
|
|
|
22762
22762
|
scopeThis
|
|
22763
22763
|
} = _ref5;
|
|
22764
22764
|
unclassified.deepClone.replaceObject(scopeThis.formData, scopeThis.query.formData);
|
|
22765
|
-
scopeThis.tableData.sort =
|
|
22766
|
-
scopeThis.tableData.pageSize = scopeThis.query
|
|
22767
|
-
scopeThis.tableData.currentPage = scopeThis.query
|
|
22765
|
+
scopeThis.tableData.sort = JSON.parse(JSON.stringify(scopeThis.query.sort));
|
|
22766
|
+
scopeThis.tableData.pageSize = scopeThis.query.pageSize;
|
|
22767
|
+
scopeThis.tableData.currentPage = scopeThis.query.currentPage;
|
|
22768
22768
|
unclassified.deepClone.replaceObject(scopeThis.formProps, scopeThis.find.formProps);
|
|
22769
22769
|
// 弹出窗口
|
|
22770
22770
|
unclassified.deepClone.deepMerge(scopeThis.formProps.popup, {
|
|
@@ -22818,14 +22818,10 @@ const submitFind = async _ref9 => {
|
|
|
22818
22818
|
let {
|
|
22819
22819
|
scopeThis
|
|
22820
22820
|
} = _ref9;
|
|
22821
|
-
console.log('测试 000', scopeThis.queryInit);
|
|
22822
|
-
console.log('测试 111', scopeThis.query);
|
|
22823
22821
|
unclassified.deepClone.replaceObject(scopeThis.query.formData, scopeThis.formData);
|
|
22824
|
-
|
|
22825
|
-
|
|
22826
|
-
scopeThis.query.
|
|
22827
|
-
scopeThis.query.pageSize = !!scopeThis.tableData.pageSize ? scopeThis.tableData.pageSize : ly0default$4.pageSize;
|
|
22828
|
-
scopeThis.query.currentPage = !!scopeThis.tableData.currentPage ? scopeThis.tableData.currentPage : ly0default$4.currentPage;
|
|
22822
|
+
scopeThis.query.sort = JSON.parse(JSON.stringify(scopeThis.tableData.sort));
|
|
22823
|
+
scopeThis.query.pageSize = scopeThis.tableData.pageSize;
|
|
22824
|
+
scopeThis.query.currentPage = scopeThis.tableData.currentPage;
|
|
22829
22825
|
const result = await refresh({
|
|
22830
22826
|
scopeThis
|
|
22831
22827
|
});
|