antd-management-fast-framework 2.11.123 → 2.11.125
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.
|
@@ -42,10 +42,11 @@ export class InternalFlow extends Core {
|
|
|
42
42
|
initLoadRequestParams: (o: any) => any;
|
|
43
43
|
supplementLoadRequestParams: (o: any) => any;
|
|
44
44
|
checkLoadRequestParams: (o: any) => boolean;
|
|
45
|
-
initLoad: ({ requestData: requestDataSource, otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback, }: {
|
|
45
|
+
initLoad: ({ requestData: requestDataSource, otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback, }: {
|
|
46
46
|
requestData?: {} | undefined;
|
|
47
47
|
otherState?: {} | undefined;
|
|
48
48
|
delay?: number | undefined;
|
|
49
|
+
prepareRequest?: null | undefined;
|
|
49
50
|
beforeRequest?: null | undefined;
|
|
50
51
|
successCallback?: null | undefined;
|
|
51
52
|
failCallback?: null | undefined;
|
|
@@ -71,49 +72,55 @@ export class InternalFlow extends Core {
|
|
|
71
72
|
* @param {*} options
|
|
72
73
|
*/
|
|
73
74
|
pageListData: ({ otherState, requestData, delay, successCallback, failCallback, completeCallback: completeCallbackSource, }: any) => void;
|
|
74
|
-
reloadData: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
75
|
+
reloadData: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
75
76
|
otherState?: {} | undefined;
|
|
76
77
|
delay?: number | undefined;
|
|
78
|
+
prepareRequest?: null | undefined;
|
|
77
79
|
beforeRequest?: null | undefined;
|
|
78
80
|
successCallback?: null | undefined;
|
|
79
81
|
failCallback?: null | undefined;
|
|
80
82
|
completeCallback?: null | undefined;
|
|
81
83
|
}) => void;
|
|
82
|
-
reloadDataWithReloadAnimalPrompt: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
84
|
+
reloadDataWithReloadAnimalPrompt: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
83
85
|
otherState?: {} | undefined;
|
|
84
86
|
delay?: number | undefined;
|
|
87
|
+
prepareRequest?: null | undefined;
|
|
85
88
|
beforeRequest?: null | undefined;
|
|
86
89
|
successCallback?: null | undefined;
|
|
87
90
|
failCallback?: null | undefined;
|
|
88
91
|
completeCallback?: null | undefined;
|
|
89
92
|
}) => void;
|
|
90
|
-
searchData: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
93
|
+
searchData: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
91
94
|
otherState?: {} | undefined;
|
|
92
95
|
delay?: number | undefined;
|
|
96
|
+
prepareRequest?: null | undefined;
|
|
93
97
|
beforeRequest?: null | undefined;
|
|
94
98
|
successCallback?: null | undefined;
|
|
95
99
|
failCallback?: null | undefined;
|
|
96
100
|
completeCallback?: null | undefined;
|
|
97
101
|
}) => void;
|
|
98
|
-
resetData: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
102
|
+
resetData: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
99
103
|
otherState?: {} | undefined;
|
|
100
104
|
delay?: number | undefined;
|
|
105
|
+
prepareRequest?: null | undefined;
|
|
101
106
|
beforeRequest?: null | undefined;
|
|
102
107
|
successCallback?: null | undefined;
|
|
103
108
|
failCallback?: null | undefined;
|
|
104
109
|
completeCallback?: null | undefined;
|
|
105
110
|
}) => void;
|
|
106
|
-
refreshData: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
111
|
+
refreshData: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
107
112
|
otherState?: {} | undefined;
|
|
108
113
|
delay?: number | undefined;
|
|
114
|
+
prepareRequest?: null | undefined;
|
|
109
115
|
beforeRequest?: null | undefined;
|
|
110
116
|
successCallback?: null | undefined;
|
|
111
117
|
failCallback?: null | undefined;
|
|
112
118
|
completeCallback?: null | undefined;
|
|
113
119
|
}) => void;
|
|
114
|
-
refreshDataWithReloadAnimalPrompt: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
120
|
+
refreshDataWithReloadAnimalPrompt: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
|
|
115
121
|
otherState?: {} | undefined;
|
|
116
122
|
delay?: number | undefined;
|
|
123
|
+
prepareRequest?: null | undefined;
|
|
117
124
|
beforeRequest?: null | undefined;
|
|
118
125
|
successCallback?: null | undefined;
|
|
119
126
|
failCallback?: null | undefined;
|