@ecan-bi/datav 1.0.15 → 1.0.18
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/_utils/constant.d.ts +1 -1
- package/dist/_utils/hooks/index.d.ts +1 -1
- package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
- package/dist/_utils/hooks/useRequestData.d.ts +5 -13
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
- package/dist/_utils/props.d.ts +1 -1
- package/dist/_utils/util.d.ts +14 -0
- package/dist/common/echarts/ECharts.d.ts +1 -0
- package/dist/container/border/props.d.ts +67 -57
- package/dist/container/index.d.ts +1 -0
- package/dist/container/modal/Modal.vue.d.ts +47 -31
- package/dist/container/modal/props.d.ts +29 -18
- package/dist/container/tabs/Tabs.vue.d.ts +271 -0
- package/dist/container/tabs/index.d.ts +3 -0
- package/dist/container/tabs/props.d.ts +219 -0
- package/dist/control/button/Button.vue.d.ts +53 -53
- package/dist/control/button/props.d.ts +49 -49
- package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
- package/dist/control/date-picker/props.d.ts +7 -7
- package/dist/control/input/Input.vue.d.ts +59 -59
- package/dist/control/input/props.d.ts +53 -53
- package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
- package/dist/control/range-picker/props.d.ts +51 -51
- package/dist/control/select/Select.vue.d.ts +65 -61
- package/dist/control/select/props.d.ts +53 -53
- package/dist/graph/bar/Bar.vue.d.ts +304 -57
- package/dist/graph/bar/props.d.ts +277 -49
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +880 -0
- package/dist/graph/combo-graph/index.d.ts +3 -0
- package/dist/graph/combo-graph/props.d.ts +619 -0
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
- package/dist/graph/custom-graph/props.d.ts +53 -53
- package/dist/graph/index.d.ts +1 -0
- package/dist/graph/line/Line.vue.d.ts +286 -109
- package/dist/graph/line/props.d.ts +235 -49
- package/dist/graph/pie/Pie.vue.d.ts +332 -114
- package/dist/graph/pie/props.d.ts +279 -57
- package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
- package/dist/graph/scatter/props.d.ts +148 -123
- package/dist/index.esm.js +3 -2
- package/dist/index.umd.js +3 -2
- package/dist/media/image/Image.vue.d.ts +55 -55
- package/dist/media/image/props.d.ts +51 -51
- package/dist/table/table/Table.vue.d.ts +208 -67
- package/dist/table/table/props.d.ts +160 -62
- package/dist/text/index.d.ts +2 -0
- package/dist/text/list/List.vue.d.ts +471 -0
- package/dist/text/list/index.d.ts +3 -0
- package/dist/text/list/props.d.ts +367 -0
- package/dist/text/text/Text.vue.d.ts +132 -43
- package/dist/text/text/props.d.ts +122 -38
- package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
- package/dist/text/time-display/index.d.ts +3 -0
- package/dist/text/time-display/props.d.ts +275 -0
- package/package.json +2 -1
- package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
- package/dist/_utils/request.d.ts +0 -2
|
@@ -4,198 +4,198 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4
4
|
default?: undefined;
|
|
5
5
|
} | {
|
|
6
6
|
type: any;
|
|
7
|
-
default: string | number | boolean | {
|
|
7
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
8
8
|
[key: string]: any;
|
|
9
|
-
} | import("../../_utils/props").RequestParams
|
|
9
|
+
} | import("../../_utils/props").RequestParams;
|
|
10
10
|
};
|
|
11
11
|
id: {
|
|
12
12
|
type?: undefined;
|
|
13
13
|
default?: undefined;
|
|
14
14
|
} | {
|
|
15
15
|
type: any;
|
|
16
|
-
default: string | number | boolean | {
|
|
16
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
17
17
|
[key: string]: any;
|
|
18
|
-
} | import("../../_utils/props").RequestParams
|
|
18
|
+
} | import("../../_utils/props").RequestParams;
|
|
19
19
|
};
|
|
20
20
|
name: {
|
|
21
21
|
type?: undefined;
|
|
22
22
|
default?: undefined;
|
|
23
23
|
} | {
|
|
24
24
|
type: any;
|
|
25
|
-
default: string | number | boolean | {
|
|
25
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
26
26
|
[key: string]: any;
|
|
27
|
-
} | import("../../_utils/props").RequestParams
|
|
27
|
+
} | import("../../_utils/props").RequestParams;
|
|
28
28
|
};
|
|
29
29
|
keyName: {
|
|
30
30
|
type?: undefined;
|
|
31
31
|
default?: undefined;
|
|
32
32
|
} | {
|
|
33
33
|
type: any;
|
|
34
|
-
default: string | number | boolean | {
|
|
34
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
35
35
|
[key: string]: any;
|
|
36
|
-
} | import("../../_utils/props").RequestParams
|
|
36
|
+
} | import("../../_utils/props").RequestParams;
|
|
37
37
|
};
|
|
38
38
|
type: {
|
|
39
39
|
type?: undefined;
|
|
40
40
|
default?: undefined;
|
|
41
41
|
} | {
|
|
42
42
|
type: any;
|
|
43
|
-
default: string | number | boolean | {
|
|
43
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
44
44
|
[key: string]: any;
|
|
45
|
-
} | import("../../_utils/props").RequestParams
|
|
45
|
+
} | import("../../_utils/props").RequestParams;
|
|
46
46
|
};
|
|
47
47
|
width: {
|
|
48
48
|
type?: undefined;
|
|
49
49
|
default?: undefined;
|
|
50
50
|
} | {
|
|
51
51
|
type: any;
|
|
52
|
-
default: string | number | boolean | {
|
|
52
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
53
53
|
[key: string]: any;
|
|
54
|
-
} | import("../../_utils/props").RequestParams
|
|
54
|
+
} | import("../../_utils/props").RequestParams;
|
|
55
55
|
};
|
|
56
56
|
height: {
|
|
57
57
|
type?: undefined;
|
|
58
58
|
default?: undefined;
|
|
59
59
|
} | {
|
|
60
60
|
type: any;
|
|
61
|
-
default: string | number | boolean | {
|
|
61
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
62
62
|
[key: string]: any;
|
|
63
|
-
} | import("../../_utils/props").RequestParams
|
|
63
|
+
} | import("../../_utils/props").RequestParams;
|
|
64
64
|
};
|
|
65
65
|
position: {
|
|
66
66
|
type?: undefined;
|
|
67
67
|
default?: undefined;
|
|
68
68
|
} | {
|
|
69
69
|
type: any;
|
|
70
|
-
default: string | number | boolean | {
|
|
70
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
71
71
|
[key: string]: any;
|
|
72
|
-
} | import("../../_utils/props").RequestParams
|
|
72
|
+
} | import("../../_utils/props").RequestParams;
|
|
73
73
|
};
|
|
74
74
|
top: {
|
|
75
75
|
type?: undefined;
|
|
76
76
|
default?: undefined;
|
|
77
77
|
} | {
|
|
78
78
|
type: any;
|
|
79
|
-
default: string | number | boolean | {
|
|
79
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
80
80
|
[key: string]: any;
|
|
81
|
-
} | import("../../_utils/props").RequestParams
|
|
81
|
+
} | import("../../_utils/props").RequestParams;
|
|
82
82
|
};
|
|
83
83
|
left: {
|
|
84
84
|
type?: undefined;
|
|
85
85
|
default?: undefined;
|
|
86
86
|
} | {
|
|
87
87
|
type: any;
|
|
88
|
-
default: string | number | boolean | {
|
|
88
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
89
89
|
[key: string]: any;
|
|
90
|
-
} | import("../../_utils/props").RequestParams
|
|
90
|
+
} | import("../../_utils/props").RequestParams;
|
|
91
91
|
};
|
|
92
92
|
zIndex: {
|
|
93
93
|
type?: undefined;
|
|
94
94
|
default?: undefined;
|
|
95
95
|
} | {
|
|
96
96
|
type: any;
|
|
97
|
-
default: string | number | boolean | {
|
|
97
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
98
98
|
[key: string]: any;
|
|
99
|
-
} | import("../../_utils/props").RequestParams
|
|
99
|
+
} | import("../../_utils/props").RequestParams;
|
|
100
100
|
};
|
|
101
101
|
rotate: {
|
|
102
102
|
type?: undefined;
|
|
103
103
|
default?: undefined;
|
|
104
104
|
} | {
|
|
105
105
|
type: any;
|
|
106
|
-
default: string | number | boolean | {
|
|
106
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
107
107
|
[key: string]: any;
|
|
108
|
-
} | import("../../_utils/props").RequestParams
|
|
108
|
+
} | import("../../_utils/props").RequestParams;
|
|
109
109
|
};
|
|
110
110
|
isShow: {
|
|
111
111
|
type?: undefined;
|
|
112
112
|
default?: undefined;
|
|
113
113
|
} | {
|
|
114
114
|
type: any;
|
|
115
|
-
default: string | number | boolean | {
|
|
115
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
116
116
|
[key: string]: any;
|
|
117
|
-
} | import("../../_utils/props").RequestParams
|
|
117
|
+
} | import("../../_utils/props").RequestParams;
|
|
118
118
|
};
|
|
119
119
|
isRender: {
|
|
120
120
|
type?: undefined;
|
|
121
121
|
default?: undefined;
|
|
122
122
|
} | {
|
|
123
123
|
type: any;
|
|
124
|
-
default: string | number | boolean | {
|
|
124
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
125
125
|
[key: string]: any;
|
|
126
|
-
} | import("../../_utils/props").RequestParams
|
|
126
|
+
} | import("../../_utils/props").RequestParams;
|
|
127
127
|
};
|
|
128
128
|
isRequestData: {
|
|
129
129
|
type?: undefined;
|
|
130
130
|
default?: undefined;
|
|
131
131
|
} | {
|
|
132
132
|
type: any;
|
|
133
|
-
default: string | number | boolean | {
|
|
133
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
134
134
|
[key: string]: any;
|
|
135
|
-
} | import("../../_utils/props").RequestParams
|
|
135
|
+
} | import("../../_utils/props").RequestParams;
|
|
136
136
|
};
|
|
137
|
-
|
|
137
|
+
events: {
|
|
138
138
|
type?: undefined;
|
|
139
139
|
default?: undefined;
|
|
140
140
|
} | {
|
|
141
141
|
type: any;
|
|
142
|
-
default: string | number | boolean | {
|
|
142
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
143
143
|
[key: string]: any;
|
|
144
|
-
} | import("../../_utils/props").RequestParams
|
|
144
|
+
} | import("../../_utils/props").RequestParams;
|
|
145
145
|
};
|
|
146
|
-
|
|
146
|
+
requestUrl: {
|
|
147
147
|
type?: undefined;
|
|
148
148
|
default?: undefined;
|
|
149
149
|
} | {
|
|
150
150
|
type: any;
|
|
151
|
-
default: string | number | boolean | {
|
|
151
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
152
152
|
[key: string]: any;
|
|
153
|
-
} | import("../../_utils/props").RequestParams
|
|
153
|
+
} | import("../../_utils/props").RequestParams;
|
|
154
154
|
};
|
|
155
|
-
|
|
155
|
+
requestMethod: {
|
|
156
156
|
type?: undefined;
|
|
157
157
|
default?: undefined;
|
|
158
158
|
} | {
|
|
159
159
|
type: any;
|
|
160
|
-
default: string | number | boolean | {
|
|
160
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
161
161
|
[key: string]: any;
|
|
162
|
-
} | import("../../_utils/props").RequestParams
|
|
162
|
+
} | import("../../_utils/props").RequestParams;
|
|
163
163
|
};
|
|
164
|
-
|
|
164
|
+
requestHeaders: {
|
|
165
165
|
type?: undefined;
|
|
166
166
|
default?: undefined;
|
|
167
167
|
} | {
|
|
168
168
|
type: any;
|
|
169
|
-
default: string | number | boolean | {
|
|
169
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
170
170
|
[key: string]: any;
|
|
171
|
-
} | import("../../_utils/props").RequestParams
|
|
171
|
+
} | import("../../_utils/props").RequestParams;
|
|
172
172
|
};
|
|
173
|
-
|
|
173
|
+
isOpenRequestTimer: {
|
|
174
174
|
type?: undefined;
|
|
175
175
|
default?: undefined;
|
|
176
176
|
} | {
|
|
177
177
|
type: any;
|
|
178
|
-
default: string | number | boolean | {
|
|
178
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
179
179
|
[key: string]: any;
|
|
180
|
-
} | import("../../_utils/props").RequestParams
|
|
180
|
+
} | import("../../_utils/props").RequestParams;
|
|
181
181
|
};
|
|
182
|
-
|
|
182
|
+
requestInterval: {
|
|
183
183
|
type?: undefined;
|
|
184
184
|
default?: undefined;
|
|
185
185
|
} | {
|
|
186
186
|
type: any;
|
|
187
|
-
default: string | number | boolean | {
|
|
187
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
188
188
|
[key: string]: any;
|
|
189
|
-
} | import("../../_utils/props").RequestParams
|
|
189
|
+
} | import("../../_utils/props").RequestParams;
|
|
190
190
|
};
|
|
191
|
-
|
|
191
|
+
requestParams: {
|
|
192
192
|
type?: undefined;
|
|
193
193
|
default?: undefined;
|
|
194
194
|
} | {
|
|
195
195
|
type: any;
|
|
196
|
-
default: string | number | boolean | {
|
|
196
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
197
197
|
[key: string]: any;
|
|
198
|
-
} | import("../../_utils/props").RequestParams
|
|
198
|
+
} | import("../../_utils/props").RequestParams;
|
|
199
199
|
};
|
|
200
200
|
}, {
|
|
201
201
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
@@ -215,13 +215,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
215
215
|
isShow?: unknown;
|
|
216
216
|
isRender?: unknown;
|
|
217
217
|
isRequestData?: unknown;
|
|
218
|
+
events?: unknown;
|
|
218
219
|
requestUrl?: unknown;
|
|
219
220
|
requestMethod?: unknown;
|
|
220
221
|
requestHeaders?: unknown;
|
|
221
222
|
isOpenRequestTimer?: unknown;
|
|
222
223
|
requestInterval?: unknown;
|
|
223
224
|
requestParams?: unknown;
|
|
224
|
-
events?: unknown;
|
|
225
225
|
} & {} & {
|
|
226
226
|
type?: string | number | boolean | {
|
|
227
227
|
[key: string]: any;
|
|
@@ -268,6 +268,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
268
268
|
isRequestData?: string | number | boolean | {
|
|
269
269
|
[key: string]: any;
|
|
270
270
|
};
|
|
271
|
+
events?: string | number | boolean | {
|
|
272
|
+
[key: string]: any;
|
|
273
|
+
};
|
|
271
274
|
requestUrl?: string | number | boolean | {
|
|
272
275
|
[key: string]: any;
|
|
273
276
|
};
|
|
@@ -286,8 +289,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
286
289
|
requestParams?: string | number | boolean | {
|
|
287
290
|
[key: string]: any;
|
|
288
291
|
};
|
|
289
|
-
events?: string | number | boolean | {
|
|
290
|
-
[key: string]: any;
|
|
291
|
-
};
|
|
292
292
|
}>, {}>;
|
|
293
293
|
export default _default;
|
|
@@ -9,197 +9,197 @@ export declare const imageComponentProps: {
|
|
|
9
9
|
default?: undefined;
|
|
10
10
|
} | {
|
|
11
11
|
type: any;
|
|
12
|
-
default: string | number | boolean | {
|
|
12
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
13
13
|
[key: string]: any;
|
|
14
|
-
} | import("../../_utils/props").RequestParams
|
|
14
|
+
} | import("../../_utils/props").RequestParams;
|
|
15
15
|
};
|
|
16
16
|
id: {
|
|
17
17
|
type?: undefined;
|
|
18
18
|
default?: undefined;
|
|
19
19
|
} | {
|
|
20
20
|
type: any;
|
|
21
|
-
default: string | number | boolean | {
|
|
21
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
22
22
|
[key: string]: any;
|
|
23
|
-
} | import("../../_utils/props").RequestParams
|
|
23
|
+
} | import("../../_utils/props").RequestParams;
|
|
24
24
|
};
|
|
25
25
|
name: {
|
|
26
26
|
type?: undefined;
|
|
27
27
|
default?: undefined;
|
|
28
28
|
} | {
|
|
29
29
|
type: any;
|
|
30
|
-
default: string | number | boolean | {
|
|
30
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
31
31
|
[key: string]: any;
|
|
32
|
-
} | import("../../_utils/props").RequestParams
|
|
32
|
+
} | import("../../_utils/props").RequestParams;
|
|
33
33
|
};
|
|
34
34
|
keyName: {
|
|
35
35
|
type?: undefined;
|
|
36
36
|
default?: undefined;
|
|
37
37
|
} | {
|
|
38
38
|
type: any;
|
|
39
|
-
default: string | number | boolean | {
|
|
39
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
40
40
|
[key: string]: any;
|
|
41
|
-
} | import("../../_utils/props").RequestParams
|
|
41
|
+
} | import("../../_utils/props").RequestParams;
|
|
42
42
|
};
|
|
43
43
|
type: {
|
|
44
44
|
type?: undefined;
|
|
45
45
|
default?: undefined;
|
|
46
46
|
} | {
|
|
47
47
|
type: any;
|
|
48
|
-
default: string | number | boolean | {
|
|
48
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
49
49
|
[key: string]: any;
|
|
50
|
-
} | import("../../_utils/props").RequestParams
|
|
50
|
+
} | import("../../_utils/props").RequestParams;
|
|
51
51
|
};
|
|
52
52
|
width: {
|
|
53
53
|
type?: undefined;
|
|
54
54
|
default?: undefined;
|
|
55
55
|
} | {
|
|
56
56
|
type: any;
|
|
57
|
-
default: string | number | boolean | {
|
|
57
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
58
58
|
[key: string]: any;
|
|
59
|
-
} | import("../../_utils/props").RequestParams
|
|
59
|
+
} | import("../../_utils/props").RequestParams;
|
|
60
60
|
};
|
|
61
61
|
height: {
|
|
62
62
|
type?: undefined;
|
|
63
63
|
default?: undefined;
|
|
64
64
|
} | {
|
|
65
65
|
type: any;
|
|
66
|
-
default: string | number | boolean | {
|
|
66
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
67
67
|
[key: string]: any;
|
|
68
|
-
} | import("../../_utils/props").RequestParams
|
|
68
|
+
} | import("../../_utils/props").RequestParams;
|
|
69
69
|
};
|
|
70
70
|
position: {
|
|
71
71
|
type?: undefined;
|
|
72
72
|
default?: undefined;
|
|
73
73
|
} | {
|
|
74
74
|
type: any;
|
|
75
|
-
default: string | number | boolean | {
|
|
75
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
76
76
|
[key: string]: any;
|
|
77
|
-
} | import("../../_utils/props").RequestParams
|
|
77
|
+
} | import("../../_utils/props").RequestParams;
|
|
78
78
|
};
|
|
79
79
|
top: {
|
|
80
80
|
type?: undefined;
|
|
81
81
|
default?: undefined;
|
|
82
82
|
} | {
|
|
83
83
|
type: any;
|
|
84
|
-
default: string | number | boolean | {
|
|
84
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
85
85
|
[key: string]: any;
|
|
86
|
-
} | import("../../_utils/props").RequestParams
|
|
86
|
+
} | import("../../_utils/props").RequestParams;
|
|
87
87
|
};
|
|
88
88
|
left: {
|
|
89
89
|
type?: undefined;
|
|
90
90
|
default?: undefined;
|
|
91
91
|
} | {
|
|
92
92
|
type: any;
|
|
93
|
-
default: string | number | boolean | {
|
|
93
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
94
94
|
[key: string]: any;
|
|
95
|
-
} | import("../../_utils/props").RequestParams
|
|
95
|
+
} | import("../../_utils/props").RequestParams;
|
|
96
96
|
};
|
|
97
97
|
zIndex: {
|
|
98
98
|
type?: undefined;
|
|
99
99
|
default?: undefined;
|
|
100
100
|
} | {
|
|
101
101
|
type: any;
|
|
102
|
-
default: string | number | boolean | {
|
|
102
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
103
103
|
[key: string]: any;
|
|
104
|
-
} | import("../../_utils/props").RequestParams
|
|
104
|
+
} | import("../../_utils/props").RequestParams;
|
|
105
105
|
};
|
|
106
106
|
rotate: {
|
|
107
107
|
type?: undefined;
|
|
108
108
|
default?: undefined;
|
|
109
109
|
} | {
|
|
110
110
|
type: any;
|
|
111
|
-
default: string | number | boolean | {
|
|
111
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
112
112
|
[key: string]: any;
|
|
113
|
-
} | import("../../_utils/props").RequestParams
|
|
113
|
+
} | import("../../_utils/props").RequestParams;
|
|
114
114
|
};
|
|
115
115
|
isShow: {
|
|
116
116
|
type?: undefined;
|
|
117
117
|
default?: undefined;
|
|
118
118
|
} | {
|
|
119
119
|
type: any;
|
|
120
|
-
default: string | number | boolean | {
|
|
120
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
121
121
|
[key: string]: any;
|
|
122
|
-
} | import("../../_utils/props").RequestParams
|
|
122
|
+
} | import("../../_utils/props").RequestParams;
|
|
123
123
|
};
|
|
124
124
|
isRender: {
|
|
125
125
|
type?: undefined;
|
|
126
126
|
default?: undefined;
|
|
127
127
|
} | {
|
|
128
128
|
type: any;
|
|
129
|
-
default: string | number | boolean | {
|
|
129
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
130
130
|
[key: string]: any;
|
|
131
|
-
} | import("../../_utils/props").RequestParams
|
|
131
|
+
} | import("../../_utils/props").RequestParams;
|
|
132
132
|
};
|
|
133
133
|
isRequestData: {
|
|
134
134
|
type?: undefined;
|
|
135
135
|
default?: undefined;
|
|
136
136
|
} | {
|
|
137
137
|
type: any;
|
|
138
|
-
default: string | number | boolean | {
|
|
138
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
139
139
|
[key: string]: any;
|
|
140
|
-
} | import("../../_utils/props").RequestParams
|
|
140
|
+
} | import("../../_utils/props").RequestParams;
|
|
141
141
|
};
|
|
142
|
-
|
|
142
|
+
events: {
|
|
143
143
|
type?: undefined;
|
|
144
144
|
default?: undefined;
|
|
145
145
|
} | {
|
|
146
146
|
type: any;
|
|
147
|
-
default: string | number | boolean | {
|
|
147
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
148
148
|
[key: string]: any;
|
|
149
|
-
} | import("../../_utils/props").RequestParams
|
|
149
|
+
} | import("../../_utils/props").RequestParams;
|
|
150
150
|
};
|
|
151
|
-
|
|
151
|
+
requestUrl: {
|
|
152
152
|
type?: undefined;
|
|
153
153
|
default?: undefined;
|
|
154
154
|
} | {
|
|
155
155
|
type: any;
|
|
156
|
-
default: string | number | boolean | {
|
|
156
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
157
157
|
[key: string]: any;
|
|
158
|
-
} | import("../../_utils/props").RequestParams
|
|
158
|
+
} | import("../../_utils/props").RequestParams;
|
|
159
159
|
};
|
|
160
|
-
|
|
160
|
+
requestMethod: {
|
|
161
161
|
type?: undefined;
|
|
162
162
|
default?: undefined;
|
|
163
163
|
} | {
|
|
164
164
|
type: any;
|
|
165
|
-
default: string | number | boolean | {
|
|
165
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
166
166
|
[key: string]: any;
|
|
167
|
-
} | import("../../_utils/props").RequestParams
|
|
167
|
+
} | import("../../_utils/props").RequestParams;
|
|
168
168
|
};
|
|
169
|
-
|
|
169
|
+
requestHeaders: {
|
|
170
170
|
type?: undefined;
|
|
171
171
|
default?: undefined;
|
|
172
172
|
} | {
|
|
173
173
|
type: any;
|
|
174
|
-
default: string | number | boolean | {
|
|
174
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
175
175
|
[key: string]: any;
|
|
176
|
-
} | import("../../_utils/props").RequestParams
|
|
176
|
+
} | import("../../_utils/props").RequestParams;
|
|
177
177
|
};
|
|
178
|
-
|
|
178
|
+
isOpenRequestTimer: {
|
|
179
179
|
type?: undefined;
|
|
180
180
|
default?: undefined;
|
|
181
181
|
} | {
|
|
182
182
|
type: any;
|
|
183
|
-
default: string | number | boolean | {
|
|
183
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
184
184
|
[key: string]: any;
|
|
185
|
-
} | import("../../_utils/props").RequestParams
|
|
185
|
+
} | import("../../_utils/props").RequestParams;
|
|
186
186
|
};
|
|
187
|
-
|
|
187
|
+
requestInterval: {
|
|
188
188
|
type?: undefined;
|
|
189
189
|
default?: undefined;
|
|
190
190
|
} | {
|
|
191
191
|
type: any;
|
|
192
|
-
default: string | number | boolean | {
|
|
192
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
193
193
|
[key: string]: any;
|
|
194
|
-
} | import("../../_utils/props").RequestParams
|
|
194
|
+
} | import("../../_utils/props").RequestParams;
|
|
195
195
|
};
|
|
196
|
-
|
|
196
|
+
requestParams: {
|
|
197
197
|
type?: undefined;
|
|
198
198
|
default?: undefined;
|
|
199
199
|
} | {
|
|
200
200
|
type: any;
|
|
201
|
-
default: string | number | boolean | {
|
|
201
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
202
202
|
[key: string]: any;
|
|
203
|
-
} | import("../../_utils/props").RequestParams
|
|
203
|
+
} | import("../../_utils/props").RequestParams;
|
|
204
204
|
};
|
|
205
205
|
};
|