@ecan-bi/datav 1.1.40 → 1.1.42
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.es.js +1307 -1297
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +144 -618
- package/types/container/border/index.d.ts +144 -618
- package/types/container/border/props.d.ts +72 -309
- package/types/container/modal/Modal.vue.d.ts +74 -237
- package/types/container/modal/index.d.ts +73 -237
- package/types/container/modal/props.d.ts +36 -117
- package/types/container/tabs/Tabs.vue.d.ts +176 -400
- package/types/container/tabs/index.d.ts +176 -400
- package/types/container/tabs/props.d.ts +88 -200
- package/types/control/button/Button.vue.d.ts +126 -418
- package/types/control/button/index.d.ts +126 -418
- package/types/control/button/props.d.ts +63 -209
- package/types/control/checkbox/Checkbox.vue.d.ts +102 -334
- package/types/control/checkbox/index.d.ts +102 -334
- package/types/control/checkbox/props.d.ts +51 -167
- package/types/control/date-picker/DatePicker.vue.d.ts +119 -391
- package/types/control/date-picker/index.d.ts +119 -391
- package/types/control/date-picker/props.d.ts +59 -195
- package/types/control/input/Input.vue.d.ts +102 -334
- package/types/control/input/index.d.ts +102 -334
- package/types/control/input/props.d.ts +51 -167
- package/types/control/range-picker/RangePicker.vue.d.ts +128 -420
- package/types/control/range-picker/index.d.ts +128 -420
- package/types/control/range-picker/props.d.ts +63 -209
- package/types/control/select/Select.vue.d.ts +125 -531
- package/types/control/select/index.d.ts +125 -531
- package/types/control/select/props.d.ts +59 -265
- package/types/graph/bar/Bar.vue.d.ts +374 -2044
- package/types/graph/bar/index.d.ts +373 -2043
- package/types/graph/bar/props.d.ts +166 -962
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +340 -741
- package/types/graph/combo-graph/index.d.ts +339 -741
- package/types/graph/combo-graph/props.d.ts +154 -355
- package/types/graph/custom-graph/CustomGraph.vue.d.ts +100 -420
- package/types/graph/custom-graph/index.d.ts +100 -420
- package/types/graph/custom-graph/props.d.ts +50 -210
- package/types/graph/line/Line.vue.d.ts +364 -2546
- package/types/graph/line/index.d.ts +364 -2546
- package/types/graph/line/props.d.ts +149 -1211
- package/types/graph/pie/Pie.vue.d.ts +317 -722
- package/types/graph/pie/index.d.ts +316 -722
- package/types/graph/pie/props.d.ts +142 -345
- package/types/graph/scatter/Scatter.vue.d.ts +293 -639
- package/types/graph/scatter/index.d.ts +293 -639
- package/types/graph/scatter/props.d.ts +132 -305
- package/types/map/map/Map.vue.d.ts +269 -1404
- package/types/map/map/index.d.ts +269 -1404
- package/types/map/map/props.d.ts +121 -664
- package/types/media/iframe/Iframe.vue.d.ts +102 -334
- package/types/media/iframe/index.d.ts +102 -334
- package/types/media/iframe/props.d.ts +51 -167
- package/types/media/image/Image.vue.d.ts +110 -362
- package/types/media/image/index.d.ts +110 -362
- package/types/media/image/props.d.ts +55 -181
- package/types/setting/page-config/PageConfig.vue.d.ts +28 -70
- package/types/setting/page-config/index.d.ts +28 -70
- package/types/setting/page-config/props.d.ts +14 -35
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +22 -62
- package/types/setting/provider-config/index.d.ts +22 -62
- package/types/setting/provider-config/props.d.ts +11 -31
- package/types/table/table/Table.vue.d.ts +234 -1660
- package/types/table/table/index.d.ts +234 -1660
- package/types/table/table/props.d.ts +101 -811
- package/types/text/list/List.vue.d.ts +136 -688
- package/types/text/list/index.d.ts +136 -688
- package/types/text/list/props.d.ts +68 -344
- package/types/text/proportion/Proportion.vue.d.ts +148 -636
- package/types/text/proportion/index.d.ts +148 -636
- package/types/text/proportion/props.d.ts +74 -318
- package/types/text/text/Text.vue.d.ts +160 -690
- package/types/text/text/index.d.ts +160 -690
- package/types/text/text/props.d.ts +81 -346
- package/types/text/time-display/TimeDisplay.vue.d.ts +126 -418
- package/types/text/time-display/index.d.ts +126 -418
- package/types/text/time-display/props.d.ts +63 -209
- package/types/utils/props.d.ts +3 -5
- package/types/utils/runCode.d.ts +2 -0
|
@@ -1,439 +1,266 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
2
|
data: {
|
|
3
|
-
type?:
|
|
4
|
-
default?:
|
|
5
|
-
} | {
|
|
6
|
-
type: any;
|
|
7
|
-
default: any;
|
|
3
|
+
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
4
|
+
default?: import("../../utils/props").Data;
|
|
8
5
|
};
|
|
9
6
|
titleText: {
|
|
10
|
-
type?:
|
|
11
|
-
default?:
|
|
12
|
-
} | {
|
|
13
|
-
type: any;
|
|
14
|
-
default: any;
|
|
7
|
+
type?: import("vue").PropType<string>;
|
|
8
|
+
default?: string;
|
|
15
9
|
};
|
|
16
10
|
titleSubtext: {
|
|
17
|
-
type?:
|
|
18
|
-
default?:
|
|
19
|
-
} | {
|
|
20
|
-
type: any;
|
|
21
|
-
default: any;
|
|
11
|
+
type?: import("vue").PropType<string>;
|
|
12
|
+
default?: string;
|
|
22
13
|
};
|
|
23
14
|
colors: {
|
|
24
|
-
type?:
|
|
25
|
-
default?:
|
|
26
|
-
} | {
|
|
27
|
-
type: any;
|
|
28
|
-
default: any;
|
|
15
|
+
type?: import("vue").PropType<string[]>;
|
|
16
|
+
default?: string[];
|
|
29
17
|
};
|
|
30
18
|
legendShow: {
|
|
31
|
-
type?:
|
|
32
|
-
default?:
|
|
33
|
-
} | {
|
|
34
|
-
type: any;
|
|
35
|
-
default: any;
|
|
19
|
+
type?: import("vue").PropType<boolean>;
|
|
20
|
+
default?: boolean;
|
|
36
21
|
};
|
|
37
22
|
tooltipShow: {
|
|
38
|
-
type?:
|
|
39
|
-
default?:
|
|
40
|
-
} | {
|
|
41
|
-
type: any;
|
|
42
|
-
default: any;
|
|
23
|
+
type?: import("vue").PropType<boolean>;
|
|
24
|
+
default?: boolean;
|
|
43
25
|
};
|
|
44
26
|
tooltipTrigger: {
|
|
45
|
-
type?:
|
|
46
|
-
default?:
|
|
47
|
-
} | {
|
|
48
|
-
type: any;
|
|
49
|
-
default: any;
|
|
27
|
+
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
28
|
+
default?: "none" | "axis" | "item";
|
|
50
29
|
};
|
|
51
30
|
tooltipFormatter: {
|
|
52
|
-
type?:
|
|
53
|
-
default?:
|
|
54
|
-
} | {
|
|
55
|
-
type: any;
|
|
56
|
-
default: any;
|
|
31
|
+
type?: import("vue").PropType<string>;
|
|
32
|
+
default?: string;
|
|
57
33
|
};
|
|
58
34
|
legendLeft: {
|
|
59
|
-
type?:
|
|
60
|
-
default?:
|
|
61
|
-
} | {
|
|
62
|
-
type: any;
|
|
63
|
-
default: any;
|
|
35
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
36
|
+
default?: "left" | "center" | "right";
|
|
64
37
|
};
|
|
65
38
|
legendTop: {
|
|
66
|
-
type?:
|
|
67
|
-
default?:
|
|
68
|
-
} | {
|
|
69
|
-
type: any;
|
|
70
|
-
default: any;
|
|
39
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
40
|
+
default?: "top" | "bottom" | "middle";
|
|
71
41
|
};
|
|
72
42
|
legendOrient: {
|
|
73
|
-
type?:
|
|
74
|
-
default?:
|
|
75
|
-
} | {
|
|
76
|
-
type: any;
|
|
77
|
-
default: any;
|
|
43
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
44
|
+
default?: "horizontal" | "vertical";
|
|
78
45
|
};
|
|
79
46
|
symbolSize: {
|
|
80
|
-
type?:
|
|
81
|
-
default?:
|
|
82
|
-
} | {
|
|
83
|
-
type: any;
|
|
84
|
-
default: any;
|
|
47
|
+
type?: import("vue").PropType<number>;
|
|
48
|
+
default?: number;
|
|
85
49
|
};
|
|
86
50
|
xAxisSplitLineShow: {
|
|
87
|
-
type?:
|
|
88
|
-
default?:
|
|
89
|
-
} | {
|
|
90
|
-
type: any;
|
|
91
|
-
default: any;
|
|
51
|
+
type?: import("vue").PropType<boolean>;
|
|
52
|
+
default?: boolean;
|
|
92
53
|
};
|
|
93
54
|
xAxisLabelColor: {
|
|
94
|
-
type?:
|
|
95
|
-
default?:
|
|
96
|
-
} | {
|
|
97
|
-
type: any;
|
|
98
|
-
default: any;
|
|
55
|
+
type?: import("vue").PropType<string>;
|
|
56
|
+
default?: string;
|
|
99
57
|
};
|
|
100
58
|
xAxisLineStyleColor: {
|
|
101
|
-
type?:
|
|
102
|
-
default?:
|
|
103
|
-
} | {
|
|
104
|
-
type: any;
|
|
105
|
-
default: any;
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
106
61
|
};
|
|
107
62
|
xAxisTickShow: {
|
|
108
|
-
type?:
|
|
109
|
-
default?:
|
|
110
|
-
} | {
|
|
111
|
-
type: any;
|
|
112
|
-
default: any;
|
|
63
|
+
type?: import("vue").PropType<boolean>;
|
|
64
|
+
default?: boolean;
|
|
113
65
|
};
|
|
114
66
|
xAxisLabelFormatter: {
|
|
115
|
-
type?:
|
|
116
|
-
default?:
|
|
117
|
-
} | {
|
|
118
|
-
type: any;
|
|
119
|
-
default: any;
|
|
67
|
+
type?: import("vue").PropType<string>;
|
|
68
|
+
default?: string;
|
|
120
69
|
};
|
|
121
70
|
yAxisSplitLineShow: {
|
|
122
|
-
type?:
|
|
123
|
-
default?:
|
|
124
|
-
} | {
|
|
125
|
-
type: any;
|
|
126
|
-
default: any;
|
|
71
|
+
type?: import("vue").PropType<boolean>;
|
|
72
|
+
default?: boolean;
|
|
127
73
|
};
|
|
128
74
|
xAxisSplitLineStyleColor: {
|
|
129
|
-
type?:
|
|
130
|
-
default?:
|
|
131
|
-
} | {
|
|
132
|
-
type: any;
|
|
133
|
-
default: any;
|
|
75
|
+
type?: import("vue").PropType<string>;
|
|
76
|
+
default?: string;
|
|
134
77
|
};
|
|
135
78
|
yAxisSplitLineStyleColor: {
|
|
136
|
-
type?:
|
|
137
|
-
default?:
|
|
138
|
-
} | {
|
|
139
|
-
type: any;
|
|
140
|
-
default: any;
|
|
79
|
+
type?: import("vue").PropType<string>;
|
|
80
|
+
default?: string;
|
|
141
81
|
};
|
|
142
82
|
yAxisLabelColor: {
|
|
143
|
-
type?:
|
|
144
|
-
default?:
|
|
145
|
-
} | {
|
|
146
|
-
type: any;
|
|
147
|
-
default: any;
|
|
83
|
+
type?: import("vue").PropType<string>;
|
|
84
|
+
default?: string;
|
|
148
85
|
};
|
|
149
86
|
yAxisLineStyleColor: {
|
|
150
|
-
type?:
|
|
151
|
-
default?:
|
|
152
|
-
} | {
|
|
153
|
-
type: any;
|
|
154
|
-
default: any;
|
|
87
|
+
type?: import("vue").PropType<string>;
|
|
88
|
+
default?: string;
|
|
155
89
|
};
|
|
156
90
|
yAxisLabelFormatter: {
|
|
157
|
-
type?:
|
|
158
|
-
default?:
|
|
159
|
-
} | {
|
|
160
|
-
type: any;
|
|
161
|
-
default: any;
|
|
91
|
+
type?: import("vue").PropType<string>;
|
|
92
|
+
default?: string;
|
|
162
93
|
};
|
|
163
94
|
gridContainLabel: {
|
|
164
|
-
type?:
|
|
165
|
-
default?:
|
|
166
|
-
} | {
|
|
167
|
-
type: any;
|
|
168
|
-
default: any;
|
|
95
|
+
type?: import("vue").PropType<boolean>;
|
|
96
|
+
default?: boolean;
|
|
169
97
|
};
|
|
170
98
|
gridTop: {
|
|
171
|
-
type?:
|
|
172
|
-
default?:
|
|
173
|
-
} | {
|
|
174
|
-
type: any;
|
|
175
|
-
default: any;
|
|
99
|
+
type?: import("vue").PropType<string>;
|
|
100
|
+
default?: string;
|
|
176
101
|
};
|
|
177
102
|
gridBottom: {
|
|
178
|
-
type?:
|
|
179
|
-
default?:
|
|
180
|
-
} | {
|
|
181
|
-
type: any;
|
|
182
|
-
default: any;
|
|
103
|
+
type?: import("vue").PropType<string>;
|
|
104
|
+
default?: string;
|
|
183
105
|
};
|
|
184
106
|
gridLeft: {
|
|
185
|
-
type?:
|
|
186
|
-
default?:
|
|
187
|
-
} | {
|
|
188
|
-
type: any;
|
|
189
|
-
default: any;
|
|
107
|
+
type?: import("vue").PropType<string>;
|
|
108
|
+
default?: string;
|
|
190
109
|
};
|
|
191
110
|
gridRight: {
|
|
192
|
-
type?:
|
|
193
|
-
default?:
|
|
194
|
-
} | {
|
|
195
|
-
type: any;
|
|
196
|
-
default: any;
|
|
111
|
+
type?: import("vue").PropType<string>;
|
|
112
|
+
default?: string;
|
|
197
113
|
};
|
|
198
114
|
dataFieldNames: {
|
|
199
|
-
type?:
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
default
|
|
115
|
+
type?: import("vue").PropType<{
|
|
116
|
+
name: string;
|
|
117
|
+
value: string;
|
|
118
|
+
}>;
|
|
119
|
+
default?: {
|
|
120
|
+
name: string;
|
|
121
|
+
value: string;
|
|
122
|
+
};
|
|
204
123
|
};
|
|
205
124
|
graphicConfig?: {
|
|
206
|
-
type?:
|
|
207
|
-
default?:
|
|
208
|
-
} | {
|
|
209
|
-
type: any;
|
|
210
|
-
default: any;
|
|
125
|
+
type?: import("vue").PropType<any>;
|
|
126
|
+
default?: any;
|
|
211
127
|
};
|
|
212
128
|
toolboxShow: {
|
|
213
|
-
type?:
|
|
214
|
-
default?:
|
|
215
|
-
} | {
|
|
216
|
-
type: any;
|
|
217
|
-
default: any;
|
|
129
|
+
type?: import("vue").PropType<boolean>;
|
|
130
|
+
default?: boolean;
|
|
218
131
|
};
|
|
219
132
|
toolboxOrient: {
|
|
220
|
-
type?:
|
|
221
|
-
default?:
|
|
222
|
-
} | {
|
|
223
|
-
type: any;
|
|
224
|
-
default: any;
|
|
133
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
134
|
+
default?: "horizontal" | "vertical";
|
|
225
135
|
};
|
|
226
136
|
toolboxItemSize: {
|
|
227
|
-
type?:
|
|
228
|
-
default?:
|
|
229
|
-
} | {
|
|
230
|
-
type: any;
|
|
231
|
-
default: any;
|
|
137
|
+
type?: import("vue").PropType<number>;
|
|
138
|
+
default?: number;
|
|
232
139
|
};
|
|
233
140
|
toolboxItemGap: {
|
|
234
|
-
type?:
|
|
235
|
-
default?:
|
|
236
|
-
} | {
|
|
237
|
-
type: any;
|
|
238
|
-
default: any;
|
|
141
|
+
type?: import("vue").PropType<number>;
|
|
142
|
+
default?: number;
|
|
239
143
|
};
|
|
240
144
|
toolboxLeft: {
|
|
241
|
-
type?:
|
|
242
|
-
default?:
|
|
243
|
-
} | {
|
|
244
|
-
type: any;
|
|
245
|
-
default: any;
|
|
145
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
146
|
+
default?: "left" | "center" | "right";
|
|
246
147
|
};
|
|
247
148
|
toolboxTop: {
|
|
248
|
-
type?:
|
|
249
|
-
default?:
|
|
250
|
-
} | {
|
|
251
|
-
type: any;
|
|
252
|
-
default: any;
|
|
149
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
150
|
+
default?: "top" | "bottom" | "middle";
|
|
253
151
|
};
|
|
254
152
|
toolboxIconStyleBorderColor: {
|
|
255
|
-
type?:
|
|
256
|
-
default?:
|
|
257
|
-
} | {
|
|
258
|
-
type: any;
|
|
259
|
-
default: any;
|
|
153
|
+
type?: import("vue").PropType<string>;
|
|
154
|
+
default?: string;
|
|
260
155
|
};
|
|
261
156
|
toolboxDownloadUrl: {
|
|
262
|
-
type?:
|
|
263
|
-
default?:
|
|
264
|
-
} | {
|
|
265
|
-
type: any;
|
|
266
|
-
default: any;
|
|
157
|
+
type?: import("vue").PropType<string>;
|
|
158
|
+
default?: string;
|
|
267
159
|
};
|
|
268
160
|
toolboxInfoText: {
|
|
269
|
-
type?:
|
|
270
|
-
default?:
|
|
271
|
-
} | {
|
|
272
|
-
type: any;
|
|
273
|
-
default: any;
|
|
161
|
+
type?: import("vue").PropType<string>;
|
|
162
|
+
default?: string;
|
|
274
163
|
};
|
|
275
164
|
id: {
|
|
276
|
-
type?:
|
|
277
|
-
default?:
|
|
278
|
-
} | {
|
|
279
|
-
type: any;
|
|
280
|
-
default: any;
|
|
165
|
+
type?: import("vue").PropType<string>;
|
|
166
|
+
default?: string;
|
|
281
167
|
};
|
|
282
168
|
name: {
|
|
283
|
-
type?:
|
|
284
|
-
default?:
|
|
285
|
-
} | {
|
|
286
|
-
type: any;
|
|
287
|
-
default: any;
|
|
169
|
+
type?: import("vue").PropType<string>;
|
|
170
|
+
default?: string;
|
|
288
171
|
};
|
|
289
172
|
keyName: {
|
|
290
|
-
type?:
|
|
291
|
-
default?:
|
|
292
|
-
} | {
|
|
293
|
-
type: any;
|
|
294
|
-
default: any;
|
|
173
|
+
type?: import("vue").PropType<string>;
|
|
174
|
+
default?: string;
|
|
295
175
|
};
|
|
296
176
|
type: {
|
|
297
|
-
type?:
|
|
298
|
-
default?:
|
|
299
|
-
} | {
|
|
300
|
-
type: any;
|
|
301
|
-
default: any;
|
|
177
|
+
type?: import("vue").PropType<string>;
|
|
178
|
+
default?: string;
|
|
302
179
|
};
|
|
303
180
|
width: {
|
|
304
|
-
type?:
|
|
305
|
-
default?:
|
|
306
|
-
} | {
|
|
307
|
-
type: any;
|
|
308
|
-
default: any;
|
|
181
|
+
type?: import("vue").PropType<string>;
|
|
182
|
+
default?: string;
|
|
309
183
|
};
|
|
310
184
|
height: {
|
|
311
|
-
type?:
|
|
312
|
-
default?:
|
|
313
|
-
} | {
|
|
314
|
-
type: any;
|
|
315
|
-
default: any;
|
|
185
|
+
type?: import("vue").PropType<string>;
|
|
186
|
+
default?: string;
|
|
316
187
|
};
|
|
317
188
|
position: {
|
|
318
|
-
type?:
|
|
319
|
-
default?:
|
|
320
|
-
} | {
|
|
321
|
-
type: any;
|
|
322
|
-
default: any;
|
|
189
|
+
type?: import("vue").PropType<string>;
|
|
190
|
+
default?: string;
|
|
323
191
|
};
|
|
324
192
|
top: {
|
|
325
|
-
type?:
|
|
326
|
-
default?:
|
|
327
|
-
} | {
|
|
328
|
-
type: any;
|
|
329
|
-
default: any;
|
|
193
|
+
type?: import("vue").PropType<string>;
|
|
194
|
+
default?: string;
|
|
330
195
|
};
|
|
331
196
|
left: {
|
|
332
|
-
type?:
|
|
333
|
-
default?:
|
|
334
|
-
} | {
|
|
335
|
-
type: any;
|
|
336
|
-
default: any;
|
|
197
|
+
type?: import("vue").PropType<string>;
|
|
198
|
+
default?: string;
|
|
337
199
|
};
|
|
338
200
|
zIndex: {
|
|
339
|
-
type?:
|
|
340
|
-
default?:
|
|
341
|
-
} | {
|
|
342
|
-
type: any;
|
|
343
|
-
default: any;
|
|
201
|
+
type?: import("vue").PropType<number>;
|
|
202
|
+
default?: number;
|
|
344
203
|
};
|
|
345
204
|
rotate: {
|
|
346
|
-
type?:
|
|
347
|
-
default?:
|
|
348
|
-
} | {
|
|
349
|
-
type: any;
|
|
350
|
-
default: any;
|
|
205
|
+
type?: import("vue").PropType<string>;
|
|
206
|
+
default?: string;
|
|
351
207
|
};
|
|
352
208
|
isShow: {
|
|
353
|
-
type?:
|
|
354
|
-
default?:
|
|
355
|
-
} | {
|
|
356
|
-
type: any;
|
|
357
|
-
default: any;
|
|
209
|
+
type?: import("vue").PropType<boolean>;
|
|
210
|
+
default?: boolean;
|
|
358
211
|
};
|
|
359
212
|
isRender: {
|
|
360
|
-
type?:
|
|
361
|
-
default?:
|
|
362
|
-
} | {
|
|
363
|
-
type: any;
|
|
364
|
-
default: any;
|
|
213
|
+
type?: import("vue").PropType<boolean>;
|
|
214
|
+
default?: boolean;
|
|
365
215
|
};
|
|
366
216
|
events: {
|
|
367
|
-
type?:
|
|
368
|
-
default?:
|
|
369
|
-
} | {
|
|
370
|
-
type: any;
|
|
371
|
-
default: any;
|
|
217
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
218
|
+
default?: import("../../utils/props").Events;
|
|
372
219
|
};
|
|
373
220
|
requestUrl: {
|
|
374
|
-
type?:
|
|
375
|
-
default?:
|
|
376
|
-
} | {
|
|
377
|
-
type: any;
|
|
378
|
-
default: any;
|
|
221
|
+
type?: import("vue").PropType<string>;
|
|
222
|
+
default?: string;
|
|
379
223
|
};
|
|
380
224
|
requestMethod: {
|
|
381
|
-
type?:
|
|
382
|
-
default?:
|
|
383
|
-
} | {
|
|
384
|
-
type: any;
|
|
385
|
-
default: any;
|
|
225
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
226
|
+
default?: import("../../utils/props").RequestMethod;
|
|
386
227
|
};
|
|
387
228
|
requestHeaders: {
|
|
388
|
-
type?:
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
229
|
+
type?: import("vue").PropType<{
|
|
230
|
+
[key: string]: any;
|
|
231
|
+
}>;
|
|
232
|
+
default?: {
|
|
233
|
+
[key: string]: any;
|
|
234
|
+
};
|
|
393
235
|
};
|
|
394
236
|
isOpenRequestTimer: {
|
|
395
|
-
type?:
|
|
396
|
-
default?:
|
|
397
|
-
} | {
|
|
398
|
-
type: any;
|
|
399
|
-
default: any;
|
|
237
|
+
type?: import("vue").PropType<boolean>;
|
|
238
|
+
default?: boolean;
|
|
400
239
|
};
|
|
401
240
|
requestInterval: {
|
|
402
|
-
type?:
|
|
403
|
-
default?:
|
|
404
|
-
} | {
|
|
405
|
-
type: any;
|
|
406
|
-
default: any;
|
|
241
|
+
type?: import("vue").PropType<number>;
|
|
242
|
+
default?: number;
|
|
407
243
|
};
|
|
408
244
|
requestParams: {
|
|
409
|
-
type?:
|
|
410
|
-
default?:
|
|
411
|
-
} | {
|
|
412
|
-
type: any;
|
|
413
|
-
default: any;
|
|
245
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
246
|
+
default?: import("../../utils/props").RequestParams;
|
|
414
247
|
};
|
|
415
248
|
requestSort: {
|
|
416
|
-
type?:
|
|
417
|
-
default?:
|
|
418
|
-
} | {
|
|
419
|
-
type: any;
|
|
420
|
-
default: any;
|
|
249
|
+
type?: import("vue").PropType<number>;
|
|
250
|
+
default?: number;
|
|
421
251
|
};
|
|
422
252
|
dataType: {
|
|
423
|
-
type?:
|
|
424
|
-
default?:
|
|
425
|
-
} | {
|
|
426
|
-
type: any;
|
|
427
|
-
default: any;
|
|
253
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
254
|
+
default?: "indicator" | "static" | "request";
|
|
428
255
|
};
|
|
429
256
|
}, {
|
|
430
257
|
option: import("vue").ComputedRef<{
|
|
431
258
|
toolbox: {
|
|
432
|
-
show:
|
|
433
|
-
left:
|
|
434
|
-
top:
|
|
435
|
-
itemSize:
|
|
436
|
-
itemGap:
|
|
259
|
+
show: boolean;
|
|
260
|
+
left: "left" | "center" | "right";
|
|
261
|
+
top: "top" | "bottom" | "middle";
|
|
262
|
+
itemSize: number;
|
|
263
|
+
itemGap: number;
|
|
437
264
|
feature: {
|
|
438
265
|
myDownload: {
|
|
439
266
|
show: boolean;
|
|
@@ -456,75 +283,75 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
456
283
|
};
|
|
457
284
|
};
|
|
458
285
|
title: {
|
|
459
|
-
text:
|
|
460
|
-
subtext:
|
|
286
|
+
text: string;
|
|
287
|
+
subtext: string;
|
|
461
288
|
left: string;
|
|
462
289
|
};
|
|
463
290
|
grid: {
|
|
464
|
-
top:
|
|
465
|
-
bottom:
|
|
466
|
-
left:
|
|
467
|
-
right:
|
|
468
|
-
containLabel:
|
|
291
|
+
top: string;
|
|
292
|
+
bottom: string;
|
|
293
|
+
left: string;
|
|
294
|
+
right: string;
|
|
295
|
+
containLabel: boolean;
|
|
469
296
|
};
|
|
470
|
-
color:
|
|
297
|
+
color: string[];
|
|
471
298
|
xAxis: {
|
|
472
299
|
splitLine: {
|
|
473
|
-
show:
|
|
300
|
+
show: boolean;
|
|
474
301
|
lineStyle: {
|
|
475
|
-
color:
|
|
302
|
+
color: string;
|
|
476
303
|
};
|
|
477
304
|
};
|
|
478
305
|
axisLabel: {
|
|
479
|
-
color:
|
|
306
|
+
color: string;
|
|
480
307
|
formatter(value: string): string;
|
|
481
308
|
};
|
|
482
309
|
axisLine: {
|
|
483
310
|
lineStyle: {
|
|
484
|
-
color:
|
|
311
|
+
color: string;
|
|
485
312
|
};
|
|
486
313
|
};
|
|
487
314
|
axisTick: {
|
|
488
|
-
show:
|
|
315
|
+
show: boolean;
|
|
489
316
|
};
|
|
490
317
|
};
|
|
491
318
|
yAxis: {
|
|
492
319
|
splitLine: {
|
|
493
|
-
show:
|
|
320
|
+
show: boolean;
|
|
494
321
|
lineStyle: {
|
|
495
|
-
color:
|
|
322
|
+
color: string;
|
|
496
323
|
};
|
|
497
324
|
};
|
|
498
325
|
axisLabel: {
|
|
499
|
-
color:
|
|
326
|
+
color: string;
|
|
500
327
|
formatter(value: string): string;
|
|
501
328
|
};
|
|
502
329
|
axisLine: {
|
|
503
330
|
lineStyle: {
|
|
504
|
-
color:
|
|
331
|
+
color: string;
|
|
505
332
|
};
|
|
506
333
|
};
|
|
507
334
|
};
|
|
508
335
|
tooltip: {
|
|
509
|
-
show:
|
|
510
|
-
trigger:
|
|
336
|
+
show: boolean;
|
|
337
|
+
trigger: "none" | "axis" | "item";
|
|
511
338
|
formatter: (params: any) => string;
|
|
512
339
|
axisPointer: {
|
|
513
340
|
type: string;
|
|
514
341
|
};
|
|
515
342
|
};
|
|
516
343
|
legend: {
|
|
517
|
-
show:
|
|
518
|
-
orient:
|
|
519
|
-
top:
|
|
520
|
-
left:
|
|
344
|
+
show: boolean;
|
|
345
|
+
orient: "horizontal" | "vertical";
|
|
346
|
+
top: "top" | "bottom" | "middle";
|
|
347
|
+
left: "left" | "center" | "right";
|
|
521
348
|
};
|
|
522
349
|
series: {
|
|
523
350
|
data: {
|
|
524
351
|
[x: string]: any;
|
|
525
352
|
}[];
|
|
526
353
|
type: string;
|
|
527
|
-
symbolSize:
|
|
354
|
+
symbolSize: number;
|
|
528
355
|
}[];
|
|
529
356
|
}>;
|
|
530
357
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
@@ -534,431 +361,258 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
534
361
|
hideModal: () => void;
|
|
535
362
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
536
363
|
data: {
|
|
537
|
-
type?:
|
|
538
|
-
default?:
|
|
539
|
-
} | {
|
|
540
|
-
type: any;
|
|
541
|
-
default: any;
|
|
364
|
+
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
365
|
+
default?: import("../../utils/props").Data;
|
|
542
366
|
};
|
|
543
367
|
titleText: {
|
|
544
|
-
type?:
|
|
545
|
-
default?:
|
|
546
|
-
} | {
|
|
547
|
-
type: any;
|
|
548
|
-
default: any;
|
|
368
|
+
type?: import("vue").PropType<string>;
|
|
369
|
+
default?: string;
|
|
549
370
|
};
|
|
550
371
|
titleSubtext: {
|
|
551
|
-
type?:
|
|
552
|
-
default?:
|
|
553
|
-
} | {
|
|
554
|
-
type: any;
|
|
555
|
-
default: any;
|
|
372
|
+
type?: import("vue").PropType<string>;
|
|
373
|
+
default?: string;
|
|
556
374
|
};
|
|
557
375
|
colors: {
|
|
558
|
-
type?:
|
|
559
|
-
default?:
|
|
560
|
-
} | {
|
|
561
|
-
type: any;
|
|
562
|
-
default: any;
|
|
376
|
+
type?: import("vue").PropType<string[]>;
|
|
377
|
+
default?: string[];
|
|
563
378
|
};
|
|
564
379
|
legendShow: {
|
|
565
|
-
type?:
|
|
566
|
-
default?:
|
|
567
|
-
} | {
|
|
568
|
-
type: any;
|
|
569
|
-
default: any;
|
|
380
|
+
type?: import("vue").PropType<boolean>;
|
|
381
|
+
default?: boolean;
|
|
570
382
|
};
|
|
571
383
|
tooltipShow: {
|
|
572
|
-
type?:
|
|
573
|
-
default?:
|
|
574
|
-
} | {
|
|
575
|
-
type: any;
|
|
576
|
-
default: any;
|
|
384
|
+
type?: import("vue").PropType<boolean>;
|
|
385
|
+
default?: boolean;
|
|
577
386
|
};
|
|
578
387
|
tooltipTrigger: {
|
|
579
|
-
type?:
|
|
580
|
-
default?:
|
|
581
|
-
} | {
|
|
582
|
-
type: any;
|
|
583
|
-
default: any;
|
|
388
|
+
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
389
|
+
default?: "none" | "axis" | "item";
|
|
584
390
|
};
|
|
585
391
|
tooltipFormatter: {
|
|
586
|
-
type?:
|
|
587
|
-
default?:
|
|
588
|
-
} | {
|
|
589
|
-
type: any;
|
|
590
|
-
default: any;
|
|
392
|
+
type?: import("vue").PropType<string>;
|
|
393
|
+
default?: string;
|
|
591
394
|
};
|
|
592
395
|
legendLeft: {
|
|
593
|
-
type?:
|
|
594
|
-
default?:
|
|
595
|
-
} | {
|
|
596
|
-
type: any;
|
|
597
|
-
default: any;
|
|
396
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
397
|
+
default?: "left" | "center" | "right";
|
|
598
398
|
};
|
|
599
399
|
legendTop: {
|
|
600
|
-
type?:
|
|
601
|
-
default?:
|
|
602
|
-
} | {
|
|
603
|
-
type: any;
|
|
604
|
-
default: any;
|
|
400
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
401
|
+
default?: "top" | "bottom" | "middle";
|
|
605
402
|
};
|
|
606
403
|
legendOrient: {
|
|
607
|
-
type?:
|
|
608
|
-
default?:
|
|
609
|
-
} | {
|
|
610
|
-
type: any;
|
|
611
|
-
default: any;
|
|
404
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
405
|
+
default?: "horizontal" | "vertical";
|
|
612
406
|
};
|
|
613
407
|
symbolSize: {
|
|
614
|
-
type?:
|
|
615
|
-
default?:
|
|
616
|
-
} | {
|
|
617
|
-
type: any;
|
|
618
|
-
default: any;
|
|
408
|
+
type?: import("vue").PropType<number>;
|
|
409
|
+
default?: number;
|
|
619
410
|
};
|
|
620
411
|
xAxisSplitLineShow: {
|
|
621
|
-
type?:
|
|
622
|
-
default?:
|
|
623
|
-
} | {
|
|
624
|
-
type: any;
|
|
625
|
-
default: any;
|
|
412
|
+
type?: import("vue").PropType<boolean>;
|
|
413
|
+
default?: boolean;
|
|
626
414
|
};
|
|
627
415
|
xAxisLabelColor: {
|
|
628
|
-
type?:
|
|
629
|
-
default?:
|
|
630
|
-
} | {
|
|
631
|
-
type: any;
|
|
632
|
-
default: any;
|
|
416
|
+
type?: import("vue").PropType<string>;
|
|
417
|
+
default?: string;
|
|
633
418
|
};
|
|
634
419
|
xAxisLineStyleColor: {
|
|
635
|
-
type?:
|
|
636
|
-
default?:
|
|
637
|
-
} | {
|
|
638
|
-
type: any;
|
|
639
|
-
default: any;
|
|
420
|
+
type?: import("vue").PropType<string>;
|
|
421
|
+
default?: string;
|
|
640
422
|
};
|
|
641
423
|
xAxisTickShow: {
|
|
642
|
-
type?:
|
|
643
|
-
default?:
|
|
644
|
-
} | {
|
|
645
|
-
type: any;
|
|
646
|
-
default: any;
|
|
424
|
+
type?: import("vue").PropType<boolean>;
|
|
425
|
+
default?: boolean;
|
|
647
426
|
};
|
|
648
427
|
xAxisLabelFormatter: {
|
|
649
|
-
type?:
|
|
650
|
-
default?:
|
|
651
|
-
} | {
|
|
652
|
-
type: any;
|
|
653
|
-
default: any;
|
|
428
|
+
type?: import("vue").PropType<string>;
|
|
429
|
+
default?: string;
|
|
654
430
|
};
|
|
655
431
|
yAxisSplitLineShow: {
|
|
656
|
-
type?:
|
|
657
|
-
default?:
|
|
658
|
-
} | {
|
|
659
|
-
type: any;
|
|
660
|
-
default: any;
|
|
432
|
+
type?: import("vue").PropType<boolean>;
|
|
433
|
+
default?: boolean;
|
|
661
434
|
};
|
|
662
435
|
xAxisSplitLineStyleColor: {
|
|
663
|
-
type?:
|
|
664
|
-
default?:
|
|
665
|
-
} | {
|
|
666
|
-
type: any;
|
|
667
|
-
default: any;
|
|
436
|
+
type?: import("vue").PropType<string>;
|
|
437
|
+
default?: string;
|
|
668
438
|
};
|
|
669
439
|
yAxisSplitLineStyleColor: {
|
|
670
|
-
type?:
|
|
671
|
-
default?:
|
|
672
|
-
} | {
|
|
673
|
-
type: any;
|
|
674
|
-
default: any;
|
|
440
|
+
type?: import("vue").PropType<string>;
|
|
441
|
+
default?: string;
|
|
675
442
|
};
|
|
676
443
|
yAxisLabelColor: {
|
|
677
|
-
type?:
|
|
678
|
-
default?:
|
|
679
|
-
} | {
|
|
680
|
-
type: any;
|
|
681
|
-
default: any;
|
|
444
|
+
type?: import("vue").PropType<string>;
|
|
445
|
+
default?: string;
|
|
682
446
|
};
|
|
683
447
|
yAxisLineStyleColor: {
|
|
684
|
-
type?:
|
|
685
|
-
default?:
|
|
686
|
-
} | {
|
|
687
|
-
type: any;
|
|
688
|
-
default: any;
|
|
448
|
+
type?: import("vue").PropType<string>;
|
|
449
|
+
default?: string;
|
|
689
450
|
};
|
|
690
451
|
yAxisLabelFormatter: {
|
|
691
|
-
type?:
|
|
692
|
-
default?:
|
|
693
|
-
} | {
|
|
694
|
-
type: any;
|
|
695
|
-
default: any;
|
|
452
|
+
type?: import("vue").PropType<string>;
|
|
453
|
+
default?: string;
|
|
696
454
|
};
|
|
697
455
|
gridContainLabel: {
|
|
698
|
-
type?:
|
|
699
|
-
default?:
|
|
700
|
-
} | {
|
|
701
|
-
type: any;
|
|
702
|
-
default: any;
|
|
456
|
+
type?: import("vue").PropType<boolean>;
|
|
457
|
+
default?: boolean;
|
|
703
458
|
};
|
|
704
459
|
gridTop: {
|
|
705
|
-
type?:
|
|
706
|
-
default?:
|
|
707
|
-
} | {
|
|
708
|
-
type: any;
|
|
709
|
-
default: any;
|
|
460
|
+
type?: import("vue").PropType<string>;
|
|
461
|
+
default?: string;
|
|
710
462
|
};
|
|
711
463
|
gridBottom: {
|
|
712
|
-
type?:
|
|
713
|
-
default?:
|
|
714
|
-
} | {
|
|
715
|
-
type: any;
|
|
716
|
-
default: any;
|
|
464
|
+
type?: import("vue").PropType<string>;
|
|
465
|
+
default?: string;
|
|
717
466
|
};
|
|
718
467
|
gridLeft: {
|
|
719
|
-
type?:
|
|
720
|
-
default?:
|
|
721
|
-
} | {
|
|
722
|
-
type: any;
|
|
723
|
-
default: any;
|
|
468
|
+
type?: import("vue").PropType<string>;
|
|
469
|
+
default?: string;
|
|
724
470
|
};
|
|
725
471
|
gridRight: {
|
|
726
|
-
type?:
|
|
727
|
-
default?:
|
|
728
|
-
} | {
|
|
729
|
-
type: any;
|
|
730
|
-
default: any;
|
|
472
|
+
type?: import("vue").PropType<string>;
|
|
473
|
+
default?: string;
|
|
731
474
|
};
|
|
732
475
|
dataFieldNames: {
|
|
733
|
-
type?:
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
default
|
|
476
|
+
type?: import("vue").PropType<{
|
|
477
|
+
name: string;
|
|
478
|
+
value: string;
|
|
479
|
+
}>;
|
|
480
|
+
default?: {
|
|
481
|
+
name: string;
|
|
482
|
+
value: string;
|
|
483
|
+
};
|
|
738
484
|
};
|
|
739
485
|
graphicConfig?: {
|
|
740
|
-
type?:
|
|
741
|
-
default?:
|
|
742
|
-
} | {
|
|
743
|
-
type: any;
|
|
744
|
-
default: any;
|
|
486
|
+
type?: import("vue").PropType<any>;
|
|
487
|
+
default?: any;
|
|
745
488
|
};
|
|
746
489
|
toolboxShow: {
|
|
747
|
-
type?:
|
|
748
|
-
default?:
|
|
749
|
-
} | {
|
|
750
|
-
type: any;
|
|
751
|
-
default: any;
|
|
490
|
+
type?: import("vue").PropType<boolean>;
|
|
491
|
+
default?: boolean;
|
|
752
492
|
};
|
|
753
493
|
toolboxOrient: {
|
|
754
|
-
type?:
|
|
755
|
-
default?:
|
|
756
|
-
} | {
|
|
757
|
-
type: any;
|
|
758
|
-
default: any;
|
|
494
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
495
|
+
default?: "horizontal" | "vertical";
|
|
759
496
|
};
|
|
760
497
|
toolboxItemSize: {
|
|
761
|
-
type?:
|
|
762
|
-
default?:
|
|
763
|
-
} | {
|
|
764
|
-
type: any;
|
|
765
|
-
default: any;
|
|
498
|
+
type?: import("vue").PropType<number>;
|
|
499
|
+
default?: number;
|
|
766
500
|
};
|
|
767
501
|
toolboxItemGap: {
|
|
768
|
-
type?:
|
|
769
|
-
default?:
|
|
770
|
-
} | {
|
|
771
|
-
type: any;
|
|
772
|
-
default: any;
|
|
502
|
+
type?: import("vue").PropType<number>;
|
|
503
|
+
default?: number;
|
|
773
504
|
};
|
|
774
505
|
toolboxLeft: {
|
|
775
|
-
type?:
|
|
776
|
-
default?:
|
|
777
|
-
} | {
|
|
778
|
-
type: any;
|
|
779
|
-
default: any;
|
|
506
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
507
|
+
default?: "left" | "center" | "right";
|
|
780
508
|
};
|
|
781
509
|
toolboxTop: {
|
|
782
|
-
type?:
|
|
783
|
-
default?:
|
|
784
|
-
} | {
|
|
785
|
-
type: any;
|
|
786
|
-
default: any;
|
|
510
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
511
|
+
default?: "top" | "bottom" | "middle";
|
|
787
512
|
};
|
|
788
513
|
toolboxIconStyleBorderColor: {
|
|
789
|
-
type?:
|
|
790
|
-
default?:
|
|
791
|
-
} | {
|
|
792
|
-
type: any;
|
|
793
|
-
default: any;
|
|
514
|
+
type?: import("vue").PropType<string>;
|
|
515
|
+
default?: string;
|
|
794
516
|
};
|
|
795
517
|
toolboxDownloadUrl: {
|
|
796
|
-
type?:
|
|
797
|
-
default?:
|
|
798
|
-
} | {
|
|
799
|
-
type: any;
|
|
800
|
-
default: any;
|
|
518
|
+
type?: import("vue").PropType<string>;
|
|
519
|
+
default?: string;
|
|
801
520
|
};
|
|
802
521
|
toolboxInfoText: {
|
|
803
|
-
type?:
|
|
804
|
-
default?:
|
|
805
|
-
} | {
|
|
806
|
-
type: any;
|
|
807
|
-
default: any;
|
|
522
|
+
type?: import("vue").PropType<string>;
|
|
523
|
+
default?: string;
|
|
808
524
|
};
|
|
809
525
|
id: {
|
|
810
|
-
type?:
|
|
811
|
-
default?:
|
|
812
|
-
} | {
|
|
813
|
-
type: any;
|
|
814
|
-
default: any;
|
|
526
|
+
type?: import("vue").PropType<string>;
|
|
527
|
+
default?: string;
|
|
815
528
|
};
|
|
816
529
|
name: {
|
|
817
|
-
type?:
|
|
818
|
-
default?:
|
|
819
|
-
} | {
|
|
820
|
-
type: any;
|
|
821
|
-
default: any;
|
|
530
|
+
type?: import("vue").PropType<string>;
|
|
531
|
+
default?: string;
|
|
822
532
|
};
|
|
823
533
|
keyName: {
|
|
824
|
-
type?:
|
|
825
|
-
default?:
|
|
826
|
-
} | {
|
|
827
|
-
type: any;
|
|
828
|
-
default: any;
|
|
534
|
+
type?: import("vue").PropType<string>;
|
|
535
|
+
default?: string;
|
|
829
536
|
};
|
|
830
537
|
type: {
|
|
831
|
-
type?:
|
|
832
|
-
default?:
|
|
833
|
-
} | {
|
|
834
|
-
type: any;
|
|
835
|
-
default: any;
|
|
538
|
+
type?: import("vue").PropType<string>;
|
|
539
|
+
default?: string;
|
|
836
540
|
};
|
|
837
541
|
width: {
|
|
838
|
-
type?:
|
|
839
|
-
default?:
|
|
840
|
-
} | {
|
|
841
|
-
type: any;
|
|
842
|
-
default: any;
|
|
542
|
+
type?: import("vue").PropType<string>;
|
|
543
|
+
default?: string;
|
|
843
544
|
};
|
|
844
545
|
height: {
|
|
845
|
-
type?:
|
|
846
|
-
default?:
|
|
847
|
-
} | {
|
|
848
|
-
type: any;
|
|
849
|
-
default: any;
|
|
546
|
+
type?: import("vue").PropType<string>;
|
|
547
|
+
default?: string;
|
|
850
548
|
};
|
|
851
549
|
position: {
|
|
852
|
-
type?:
|
|
853
|
-
default?:
|
|
854
|
-
} | {
|
|
855
|
-
type: any;
|
|
856
|
-
default: any;
|
|
550
|
+
type?: import("vue").PropType<string>;
|
|
551
|
+
default?: string;
|
|
857
552
|
};
|
|
858
553
|
top: {
|
|
859
|
-
type?:
|
|
860
|
-
default?:
|
|
861
|
-
} | {
|
|
862
|
-
type: any;
|
|
863
|
-
default: any;
|
|
554
|
+
type?: import("vue").PropType<string>;
|
|
555
|
+
default?: string;
|
|
864
556
|
};
|
|
865
557
|
left: {
|
|
866
|
-
type?:
|
|
867
|
-
default?:
|
|
868
|
-
} | {
|
|
869
|
-
type: any;
|
|
870
|
-
default: any;
|
|
558
|
+
type?: import("vue").PropType<string>;
|
|
559
|
+
default?: string;
|
|
871
560
|
};
|
|
872
561
|
zIndex: {
|
|
873
|
-
type?:
|
|
874
|
-
default?:
|
|
875
|
-
} | {
|
|
876
|
-
type: any;
|
|
877
|
-
default: any;
|
|
562
|
+
type?: import("vue").PropType<number>;
|
|
563
|
+
default?: number;
|
|
878
564
|
};
|
|
879
565
|
rotate: {
|
|
880
|
-
type?:
|
|
881
|
-
default?:
|
|
882
|
-
} | {
|
|
883
|
-
type: any;
|
|
884
|
-
default: any;
|
|
566
|
+
type?: import("vue").PropType<string>;
|
|
567
|
+
default?: string;
|
|
885
568
|
};
|
|
886
569
|
isShow: {
|
|
887
|
-
type?:
|
|
888
|
-
default?:
|
|
889
|
-
} | {
|
|
890
|
-
type: any;
|
|
891
|
-
default: any;
|
|
570
|
+
type?: import("vue").PropType<boolean>;
|
|
571
|
+
default?: boolean;
|
|
892
572
|
};
|
|
893
573
|
isRender: {
|
|
894
|
-
type?:
|
|
895
|
-
default?:
|
|
896
|
-
} | {
|
|
897
|
-
type: any;
|
|
898
|
-
default: any;
|
|
574
|
+
type?: import("vue").PropType<boolean>;
|
|
575
|
+
default?: boolean;
|
|
899
576
|
};
|
|
900
577
|
events: {
|
|
901
|
-
type?:
|
|
902
|
-
default?:
|
|
903
|
-
} | {
|
|
904
|
-
type: any;
|
|
905
|
-
default: any;
|
|
578
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
579
|
+
default?: import("../../utils/props").Events;
|
|
906
580
|
};
|
|
907
581
|
requestUrl: {
|
|
908
|
-
type?:
|
|
909
|
-
default?:
|
|
910
|
-
} | {
|
|
911
|
-
type: any;
|
|
912
|
-
default: any;
|
|
582
|
+
type?: import("vue").PropType<string>;
|
|
583
|
+
default?: string;
|
|
913
584
|
};
|
|
914
585
|
requestMethod: {
|
|
915
|
-
type?:
|
|
916
|
-
default?:
|
|
917
|
-
} | {
|
|
918
|
-
type: any;
|
|
919
|
-
default: any;
|
|
586
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
587
|
+
default?: import("../../utils/props").RequestMethod;
|
|
920
588
|
};
|
|
921
589
|
requestHeaders: {
|
|
922
|
-
type?:
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
590
|
+
type?: import("vue").PropType<{
|
|
591
|
+
[key: string]: any;
|
|
592
|
+
}>;
|
|
593
|
+
default?: {
|
|
594
|
+
[key: string]: any;
|
|
595
|
+
};
|
|
927
596
|
};
|
|
928
597
|
isOpenRequestTimer: {
|
|
929
|
-
type?:
|
|
930
|
-
default?:
|
|
931
|
-
} | {
|
|
932
|
-
type: any;
|
|
933
|
-
default: any;
|
|
598
|
+
type?: import("vue").PropType<boolean>;
|
|
599
|
+
default?: boolean;
|
|
934
600
|
};
|
|
935
601
|
requestInterval: {
|
|
936
|
-
type?:
|
|
937
|
-
default?:
|
|
938
|
-
} | {
|
|
939
|
-
type: any;
|
|
940
|
-
default: any;
|
|
602
|
+
type?: import("vue").PropType<number>;
|
|
603
|
+
default?: number;
|
|
941
604
|
};
|
|
942
605
|
requestParams: {
|
|
943
|
-
type?:
|
|
944
|
-
default?:
|
|
945
|
-
} | {
|
|
946
|
-
type: any;
|
|
947
|
-
default: any;
|
|
606
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
607
|
+
default?: import("../../utils/props").RequestParams;
|
|
948
608
|
};
|
|
949
609
|
requestSort: {
|
|
950
|
-
type?:
|
|
951
|
-
default?:
|
|
952
|
-
} | {
|
|
953
|
-
type: any;
|
|
954
|
-
default: any;
|
|
610
|
+
type?: import("vue").PropType<number>;
|
|
611
|
+
default?: number;
|
|
955
612
|
};
|
|
956
613
|
dataType: {
|
|
957
|
-
type?:
|
|
958
|
-
default?:
|
|
959
|
-
} | {
|
|
960
|
-
type: any;
|
|
961
|
-
default: any;
|
|
614
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
615
|
+
default?: "indicator" | "static" | "request";
|
|
962
616
|
};
|
|
963
617
|
}>>, {}>;
|
|
964
618
|
export default _sfc_main;
|