@yoooloo42/joker 1.0.163 → 1.0.165
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 +15 -12
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +15 -12
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -22751,9 +22751,9 @@ const popupFind = async _ref5 => {
|
|
|
22751
22751
|
scopeThis
|
|
22752
22752
|
} = _ref5;
|
|
22753
22753
|
scopeThis.formData = scopeThis.query && scopeThis.query.formData ? unclassified.deepClone.deepClone(scopeThis.query.formData) : null;
|
|
22754
|
-
scopeThis.
|
|
22755
|
-
scopeThis.
|
|
22756
|
-
scopeThis.
|
|
22754
|
+
scopeThis.tableData.query.sort = scopeThis.query && scopeThis.query.sort ? JSON.parse(JSON.stringify(scopeThis.query.sort)) : null;
|
|
22755
|
+
scopeThis.tableData.query.pageSize = scopeThis.query && scopeThis.query.pageSize ? scopeThis.query.pageSize : ly0default$4.pageSize;
|
|
22756
|
+
scopeThis.tableData.query.currentPage = scopeThis.query && scopeThis.query.currentPage ? scopeThis.query.currentPage : 1;
|
|
22757
22757
|
scopeThis.formProps = unclassified.deepClone.deepClone(scopeThis.find.formProps);
|
|
22758
22758
|
// 弹出窗口
|
|
22759
22759
|
scopeThis.formProps.popup = unclassified.deepClone.deepMerge(scopeThis.formProps.popup, {
|
|
@@ -22808,9 +22808,9 @@ const submitFind = async _ref9 => {
|
|
|
22808
22808
|
scopeThis
|
|
22809
22809
|
} = _ref9;
|
|
22810
22810
|
scopeThis.query.formData = scopeThis.formData ? unclassified.deepClone.deepClone(scopeThis.formData) : null;
|
|
22811
|
-
scopeThis.query.sort = scopeThis.
|
|
22812
|
-
scopeThis.query.pageSize = scopeThis.
|
|
22813
|
-
scopeThis.query.currentPage = scopeThis.
|
|
22811
|
+
scopeThis.query.sort = scopeThis.tableData.query && scopeThis.tableData.query.sort ? JSON.parse(JSON.stringify(scopeThis.tableData.query.sort)) : null;
|
|
22812
|
+
scopeThis.query.pageSize = scopeThis.tableData.query && scopeThis.tableData.query.pageSize ? scopeThis.tableData.query.pageSize : ly0default$4.pageSize;
|
|
22813
|
+
scopeThis.query.currentPage = scopeThis.tableData.query && scopeThis.tableData.query.currentPage ? scopeThis.tableData.query.currentPage : 1;
|
|
22814
22814
|
const result = await refresh({
|
|
22815
22815
|
scopeThis
|
|
22816
22816
|
});
|
|
@@ -42475,12 +42475,15 @@ var ly0default$1 = {
|
|
|
42475
42475
|
modelValue: {
|
|
42476
42476
|
data: [],
|
|
42477
42477
|
total: 0,
|
|
42478
|
-
|
|
42479
|
-
|
|
42480
|
-
|
|
42481
|
-
|
|
42482
|
-
|
|
42483
|
-
|
|
42478
|
+
query: {
|
|
42479
|
+
formData: null,
|
|
42480
|
+
sort: {
|
|
42481
|
+
label: "",
|
|
42482
|
+
order: ""
|
|
42483
|
+
},
|
|
42484
|
+
pageSize: 10,
|
|
42485
|
+
currentPage: 1
|
|
42486
|
+
}
|
|
42484
42487
|
}
|
|
42485
42488
|
};
|
|
42486
42489
|
|