dmx-admin-ui 1.2.213 → 1.2.215

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/types/global.d.ts CHANGED
@@ -1,56 +1,15 @@
1
1
  import setConfig from './config'
2
2
  import theme from "./theme";
3
3
  import { cache, layer, page, req, copy, csv, util, loadjs as load } from "./plugins"
4
- import config from '../src/config/index'
5
- import { ComponentCustomProperties } from 'vue'
6
- import root from '../src/app.vue'
7
4
  const reqs = new req({})
8
5
  const pages = new page({})
9
6
  import np from "number-precision";
10
7
  import { dayjs as dayjss } from 'element-plus'
11
8
  import { AdminTableInit, AdminFormInit } from './admin';
12
- export { };
13
- interface Config {
14
- apis: {
15
- goods_search: string;
16
- shop_search: string;
17
- user_search: string;
18
- media_box: {
19
- list: string;
20
- edit: string;
21
- del: string;
22
- cate: string;
23
- cateEdit: string;
24
- cateDel: string;
25
- cateAdd: string;
26
- };
27
- };
28
- fileUrl: any;
29
- payTyle: {};
30
- goodsType: {
31
- 0: string;
32
- };
33
- mapApi: any
34
- inputs: {
35
- components: {};
36
- shortcuts: {};
37
- };
38
- orderType: {};
39
- urlBox: {
40
- default: {
41
- title: string;
42
- list: {
43
- title: string;
44
- url: string;
45
- }[];
46
- }[];
47
- goodsCate: boolean;
48
- goods: boolean;
49
- };
50
- form: {
51
- btnText: string;
52
- };
53
- }
9
+ import { Router, createRouter } from 'vue-router'
10
+ import { ElImage } from "element-plus";
11
+ import { type Components } from "./components"
12
+
54
13
  declare global {
55
14
  const DMX: { [key: string]: any }
56
15
  const $a: typeof util
@@ -58,14 +17,14 @@ declare global {
58
17
  const $msg: typeof layer
59
18
  const $req: typeof reqs
60
19
  const $go: typeof pages
20
+ const $router: Router
61
21
  const $number: typeof np
62
22
  const $loading: typeof layer.loading
63
23
  const $confirm: typeof layer.confirm
64
24
  const $prompt: typeof layer.prompt
65
25
  const $theme: { [key: string]: string }
66
- const $store: { [key: string]: string }
67
26
  const $cache: typeof cache
68
- const $config: Config
27
+ const $config: any
69
28
  const dayjs: typeof dayjss
70
29
  const $langs: { [key: string]: string }
71
30
  const $fileUrl: (url: string) => string
@@ -75,1170 +34,74 @@ declare global {
75
34
  /** admin-table组件 init */
76
35
  const adminTableInit: (init: AdminTableInit) => AdminTableInit
77
36
  const adminFormInit: (init: AdminFormInit) => AdminFormInit
78
- /** 比较操作符类型 */
79
- type ComparisonOperator =
80
- | '=' // 等于
81
- | '!=' // 不等于
82
- | '>' // 大于
83
- | '>=' // 大于等于
84
- | '<' // 小于
85
- | '<=' // 小于等于
86
- | 'in' // 在数组中
87
- | '!in' // 不在数组中
88
- | 'contains' // 包含字符串
89
- | 'startsWith' // 以...开头
90
- | 'endsWith' // 以...结尾
91
- | '>time' // 日期大于
92
- | '<time'; // 日期小于
93
- /**
94
- * 数据搜索函数
95
- *
96
- * @param data - 数据数组
97
- * @param option - 搜索选项
98
- * - page: 页码
99
- * - limit: 每页数量
100
- * - where: 过滤条件
101
- * - sort: 排序字段
102
- * @param comparisonOperators - 比较运算符映射
103
- */
37
+ /** 比较操作符类型 */
38
+ type ComparisonOperator =
39
+ | '=' // 等于
40
+ | '!=' // 不等于
41
+ | '>' // 大于
42
+ | '>=' // 大于等于
43
+ | '<' // 小于
44
+ | '<=' // 小于等于
45
+ | 'in' // 在数组中
46
+ | '!in' // 不在数组中
47
+ | 'contains' // 包含字符串
48
+ | 'startsWith' // 以...开头
49
+ | 'endsWith' // 以...结尾
50
+ | '>time' // 日期大于
51
+ | '<time'; // 日期小于
52
+ /**
53
+ * 数据搜索函数
54
+ *
55
+ * @param data - 数据数组
56
+ * @param option - 搜索选项
57
+ * - page: 页码
58
+ * - limit: 每页数量
59
+ * - where: 过滤条件
60
+ * - sort: 排序字段
61
+ * @param comparisonOperators - 比较运算符映射
62
+ */
104
63
  const dataSearch: (data: Record<string, any>[], option: {
105
64
  page: number;
106
65
  limit: number;
107
66
  where?: Record<string, any>;
108
67
  sort?: string;
109
68
  },
110
- comparisonOperators?: Record<string,((itemValue:any, targetValue:any)=>boolean) | ComparisonOperator>) => { data: Record<string, any>[], count: number }
69
+ comparisonOperators?: Record<string, ((itemValue: any, targetValue: any) => boolean) | ComparisonOperator>) => { data: Record<string, any>[], count: number }
111
70
  }
71
+
72
+
112
73
  declare module 'vue' {
74
+ interface GlobalComponents {
75
+ AdminTable: Components['AdminTable']
76
+ AdminForm: Components['AdminForm']
77
+ DataApi: Components['DataApi']
78
+ ASearch: Components['ASearch']
79
+ AInputs: Components['AInputs']
80
+ InputButton: Components['InputButton']
81
+ ASearchBox: Components['ASearchBox']
82
+ ATip: Components['ATip']
83
+ ATextEdit: Components['ATextEdit']
84
+ ACateText: Components['ACateText']
85
+ ACascader: Components['ACascader']
86
+ ATags: Components['ATags']
87
+ ATime: Components['ATime']
88
+ AImage: Components['AImage'] & typeof ElImage
89
+ AImageText: Components['AImageText']
90
+ AColorPicker: Components['AColorPicker']
91
+ ARegionPicker: Components['ARegionPicker']
92
+ ARegionText: Components['ARegionText']
93
+ ARegionMap: Components['ARegionMap']
94
+ ATextStatus: Components['ATextStatus']
95
+ ADraggable: Components['ADraggable']
96
+ AChart: Components['AChart']
97
+ AEditor: Components['AEditor']
98
+ }
99
+
113
100
  interface ComponentCustomProperties {
114
- $root: InstanceType<typeof root>
115
- $config: typeof config
101
+ $config: any
116
102
  $go: typeof pages
103
+ $root: any
104
+ $router: Router
117
105
  }
118
106
  }
119
-
120
- import { ElImage } from "element-plus";
121
- interface _default {
122
- AdminTable: {
123
- new(...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
124
- init: ObjectConstructor;
125
- }>> & Readonly<{
126
- onChange?: (...args: any[]) => any;
127
- }>, {
128
- getData: (e?: boolean) => any[];
129
- search: (e: any, r?: boolean) => void;
130
- init: any;
131
- treeOn: globalThis.Ref<any[], any[]>;
132
- cellEdit: (e: any, index: any, item: any) => any;
133
- cellClick: (item: any, index: any) => void;
134
- rowEdit: (data: any, index?: number, msg?: string) => void;
135
- onSort: (field: any, sort_?: string | false) => Promise<any>;
136
- sort: any;
137
- fnTreeShow: (index: any) => number;
138
- fnTreeOn: (index: any) => void;
139
- setPageStatus: (status?: boolean) => void;
140
- checkAllChange: (e: any) => void;
141
- navChange: (e: any) => void;
142
- tabsChange: (index: any) => void;
143
- tableData: globalThis.Ref<any[], any[]>;
144
- checkData: globalThis.ComputedRef<any[]>;
145
- reload: (e?: boolean) => void;
146
- dialogForm: (data: any, index: any, form: any) => void;
147
- dialogSubmit: (e: any) => void;
148
- getCellTool: (colsItem: any, item: any) => any;
149
- rowAction: (btn: any, index: any, tool?: any) => Promise<void | import('element-plus').MessageHandler>;
150
- toolAction: (btn: any) => Promise<void>;
151
- uniApi: (id: any, data?: {}, url?: string) => import('element-plus').MessageHandler;
152
- pk: any;
153
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
154
- change: (...args: any[]) => void;
155
- }, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
156
- P: {};
157
- B: {};
158
- D: {};
159
- C: {};
160
- M: {};
161
- Defaults: {};
162
- }, Readonly<globalThis.ExtractPropTypes<{
163
- init: ObjectConstructor;
164
- }>> & Readonly<{
165
- onChange?: (...args: any[]) => any;
166
- }>, {
167
- getData: (e?: boolean) => any[];
168
- search: (e: any, r?: boolean) => void;
169
- init: any;
170
- treeOn: globalThis.Ref<any[], any[]>;
171
- cellEdit: (e: any, index: any, item: any) => any;
172
- cellClick: (item: any, index: any) => void;
173
- rowEdit: (data: any, index?: number, msg?: string) => void;
174
- onSort: (field: any, sort_?: string | false) => Promise<any>;
175
- sort: any;
176
- fnTreeShow: (index: any) => number;
177
- fnTreeOn: (index: any) => void;
178
- setPageStatus: (status?: boolean) => void;
179
- checkAllChange: (e: any) => void;
180
- navChange: (e: any) => void;
181
- tabsChange: (index: any) => void;
182
- tableData: globalThis.Ref<any[], any[]>;
183
- checkData: globalThis.ComputedRef<any[]>;
184
- reload: (e?: boolean) => void;
185
- dialogForm: (data: any, index: any, form: any) => void;
186
- dialogSubmit: (e: any) => void;
187
- getCellTool: (colsItem: any, item: any) => any;
188
- rowAction: (btn: any, index: any, tool?: any) => Promise<void | import('element-plus').MessageHandler>;
189
- toolAction: (btn: any) => Promise<void>;
190
- uniApi: (id: any, data?: {}, url?: string) => import('element-plus').MessageHandler;
191
- pk: any;
192
- }, {}, {}, {}, {}>;
193
- __isFragment?: never;
194
- __isTeleport?: never;
195
- __isSuspense?: never;
196
- } & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
197
- init: ObjectConstructor;
198
- }>> & Readonly<{
199
- onChange?: (...args: any[]) => any;
200
- }>, {
201
- getData: (e?: boolean) => any[];
202
- search: (e: any, r?: boolean) => void;
203
- init: any;
204
- treeOn: globalThis.Ref<any[], any[]>;
205
- cellEdit: (e: any, index: any, item: any) => any;
206
- cellClick: (item: any, index: any) => void;
207
- rowEdit: (data: any, index?: number, msg?: string) => void;
208
- onSort: (field: any, sort_?: string | false) => Promise<any>;
209
- sort: any;
210
- fnTreeShow: (index: any) => number;
211
- fnTreeOn: (index: any) => void;
212
- setPageStatus: (status?: boolean) => void;
213
- checkAllChange: (e: any) => void;
214
- navChange: (e: any) => void;
215
- tabsChange: (index: any) => void;
216
- tableData: globalThis.Ref<any[], any[]>;
217
- checkData: globalThis.ComputedRef<any[]>;
218
- reload: (e?: boolean) => void;
219
- dialogForm: (data: any, index: any, form: any) => void;
220
- dialogSubmit: (e: any) => void;
221
- getCellTool: (colsItem: any, item: any) => any;
222
- rowAction: (btn: any, index: any, tool?: any) => Promise<void | import('element-plus').MessageHandler>;
223
- toolAction: (btn: any) => Promise<void>;
224
- uniApi: (id: any, data?: {}, url?: string) => import('element-plus').MessageHandler;
225
- pk: any;
226
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
227
- change: (...args: any[]) => void;
228
- }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
229
- $slots: {
230
- [x: string]: (props: {
231
- key: any;
232
- row: any;
233
- }) => any;
234
- } & {
235
- title?: (props: {}) => any;
236
- } & {
237
- default?: (props: {
238
- data: any[];
239
- height: string;
240
- }) => any;
241
- } & {
242
- footer?: (props: {
243
- data: any[];
244
- }) => any;
245
- };
246
- });
247
- AdminForm: import('vue').DefineComponent<{
248
- init: Record<string, any>;
249
- size?: "" | "small" | "default" | "large";
250
- disabled?: boolean;
251
- data?: any;
252
- asyncData?: (() => any) | string | Record<string, any>;
253
- showButton?: boolean;
254
- beforeSubmit?: (...args: any[]) => any;
255
- afterSubmit?: (...args: any[]) => any;
256
- }, {
257
- setValue: (data: any, refresh?: boolean) => void;
258
- hideField: (e: any, status?: boolean) => void;
259
- editCols: (field: any, value: any) => void;
260
- getData: () => {};
261
- newData: () => void;
262
- resetForm: () => void;
263
- fnSubmit: () => import('element-plus').MessageHandler;
264
- doSubmit: (data?: any) => any;
265
- setData: (data: any, refresh?: boolean) => void;
266
- editData: globalThis.Ref<{}, {}>;
267
- rawData: globalThis.Ref<{}, {}>;
268
- change: globalThis.Ref<{}, {}>;
269
- hidden: globalThis.Ref<{}, {}>;
270
- loading: globalThis.Ref<boolean, boolean>;
271
- cols: globalThis.Ref<any[], any[]>;
272
- formRef: globalThis.Ref<any, any>;
273
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
274
- submit: (...args: any[]) => void;
275
- change: (...args: any[]) => void;
276
- end: (...args: any[]) => void;
277
- }, string, import('vue').PublicProps, Readonly<{
278
- init: Record<string, any>;
279
- size?: "" | "small" | "default" | "large";
280
- disabled?: boolean;
281
- data?: any;
282
- asyncData?: (() => any) | string | Record<string, any>;
283
- showButton?: boolean;
284
- beforeSubmit?: (...args: any[]) => any;
285
- afterSubmit?: (...args: any[]) => any;
286
- }> & Readonly<{
287
- onSubmit?: (...args: any[]) => any;
288
- onChange?: (...args: any[]) => any;
289
- onEnd?: (...args: any[]) => any;
290
- }>, {
291
- data: any;
292
- showButton: boolean;
293
- beforeSubmit: (...args: any[]) => any;
294
- afterSubmit: (...args: any[]) => any;
295
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
296
- DataApi: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
297
- init: {
298
- type: ObjectConstructor;
299
- };
300
- }>, {}, {
301
- data: boolean;
302
- empty: boolean;
303
- loading: boolean;
304
- }, {}, {
305
- onChange(where?: any): void;
306
- getData(where?: any): Promise<void>;
307
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
308
- init: {
309
- type: ObjectConstructor;
310
- };
311
- }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
312
- ASearch: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
313
- init: ObjectConstructor;
314
- data: ObjectConstructor;
315
- }>, {}, {
316
- span: {
317
- sm: number;
318
- md: number;
319
- lg: number;
320
- xl: number;
321
- };
322
- sum: number;
323
- formData: {};
324
- changeData: {};
325
- offset: number;
326
- cols: any[];
327
- limit: number;
328
- spread: boolean;
329
- keyTime: number;
330
- right: boolean;
331
- }, {}, {
332
- onChange(e: any, field: any): void;
333
- fnSearch(): void;
334
- resetFields(): void;
335
- resize(w: any): void;
336
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "change"[], "change", import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
337
- init: ObjectConstructor;
338
- data: ObjectConstructor;
339
- }>> & Readonly<{
340
- onChange?: (...args: any[]) => any;
341
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
342
- AInputs: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
343
- index: NumberConstructor;
344
- cols: ArrayConstructor;
345
- clearable: {
346
- type: BooleanConstructor;
347
- default: boolean;
348
- };
349
- size: {
350
- type: StringConstructor;
351
- default: string;
352
- };
353
- rawData: ObjectConstructor;
354
- modelValue: (NumberConstructor | ObjectConstructor | BooleanConstructor | StringConstructor | ArrayConstructor | FunctionConstructor)[];
355
- join: ObjectConstructor;
356
- disabled: BooleanConstructor;
357
- row: {
358
- type: ObjectConstructor;
359
- default: () => {};
360
- };
361
- prop: {
362
- type: ObjectConstructor;
363
- default: () => {};
364
- };
365
- }>, {
366
- onChange: (e: any) => void;
367
- setValue: (e: any) => void;
368
- relatedUpdate: (field: any, e: any) => void;
369
- prop: Record<string, any>;
370
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
371
- "update:modelValue": (...args: any[]) => void;
372
- change: (...args: any[]) => void;
373
- relatedUpdate: (...args: any[]) => void;
374
- }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
375
- index: NumberConstructor;
376
- cols: ArrayConstructor;
377
- clearable: {
378
- type: BooleanConstructor;
379
- default: boolean;
380
- };
381
- size: {
382
- type: StringConstructor;
383
- default: string;
384
- };
385
- rawData: ObjectConstructor;
386
- modelValue: (NumberConstructor | ObjectConstructor | BooleanConstructor | StringConstructor | ArrayConstructor | FunctionConstructor)[];
387
- join: ObjectConstructor;
388
- disabled: BooleanConstructor;
389
- row: {
390
- type: ObjectConstructor;
391
- default: () => {};
392
- };
393
- prop: {
394
- type: ObjectConstructor;
395
- default: () => {};
396
- };
397
- }>> & Readonly<{
398
- "onUpdate:modelValue"?: (...args: any[]) => any;
399
- onChange?: (...args: any[]) => any;
400
- onRelatedUpdate?: (...args: any[]) => any;
401
- }>, {
402
- size: string;
403
- disabled: boolean;
404
- row: Record<string, any>;
405
- prop: Record<string, any>;
406
- clearable: boolean;
407
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
408
- InputButton: import('vue').DefineComponent<{
409
- btn?: {
410
- icon?: string;
411
- text?: string;
412
- click?: (value: any) => any | Promise<any>;
413
- };
414
- placeholder?: string;
415
- readonly?: boolean;
416
- disabled?: boolean;
417
- clearable?: boolean;
418
- icon?: string;
419
- size?: "" | "small" | "default" | "large";
420
- props?: Record<string, any>;
421
- modelValue?: string | boolean | number | any[];
422
- }, {
423
- setValue: (val: any) => Promise<void>;
424
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
425
- clear: () => any;
426
- "update:modelValue": (value: any) => any;
427
- }, string, import('vue').PublicProps, Readonly<{
428
- btn?: {
429
- icon?: string;
430
- text?: string;
431
- click?: (value: any) => any | Promise<any>;
432
- };
433
- placeholder?: string;
434
- readonly?: boolean;
435
- disabled?: boolean;
436
- clearable?: boolean;
437
- icon?: string;
438
- size?: "" | "small" | "default" | "large";
439
- props?: Record<string, any>;
440
- modelValue?: string | boolean | number | any[];
441
- }> & Readonly<{
442
- onClear?: () => any;
443
- "onUpdate:modelValue"?: (value: any) => any;
444
- }>, {
445
- icon: string;
446
- placeholder: string;
447
- size: "" | "small" | "default" | "large";
448
- modelValue: string | boolean | number | any[];
449
- btn: {
450
- icon?: string;
451
- text?: string;
452
- click?: (value: any) => any | Promise<any>;
453
- };
454
- clearable: boolean;
455
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
456
- ASearchBox: import('vue').DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import('vue').PublicProps>;
457
- ATip: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
458
- title: {
459
- type: StringConstructor;
460
- default: string;
461
- };
462
- type: {
463
- type: StringConstructor;
464
- default: string;
465
- };
466
- }>, {}, {
467
- value: string;
468
- show: boolean;
469
- }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
470
- title: {
471
- type: StringConstructor;
472
- default: string;
473
- };
474
- type: {
475
- type: StringConstructor;
476
- default: string;
477
- };
478
- }>> & Readonly<{}>, {
479
- type: string;
480
- title: string;
481
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
482
- ATextEdit: import('vue').DefineComponent<{
483
- clickType?: string;
484
- defaultValue?: string;
485
- hideIcon?: boolean;
486
- height?: string;
487
- text?: string;
488
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
489
- save: (payload: {
490
- value: string;
491
- oldValue: string;
492
- }) => any;
493
- status: (value: boolean) => any;
494
- }, string, import('vue').PublicProps, Readonly<{
495
- clickType?: string;
496
- defaultValue?: string;
497
- hideIcon?: boolean;
498
- height?: string;
499
- text?: string;
500
- }> & Readonly<{
501
- onSave?: (payload: {
502
- value: string;
503
- oldValue: string;
504
- }) => any;
505
- onStatus?: (value: boolean) => any;
506
- }>, {
507
- clickType: string;
508
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
509
- ACateText: import('vue').DefineComponent<{
510
- url?: string | any[] | Record<string, any>;
511
- modelValue?: string | any[] | number;
512
- type?: "primary" | "success" | "info" | "warning" | "danger";
513
- size?: "" | "small" | "default" | "large";
514
- showNum?: number;
515
- keyName?: string;
516
- titleName?: string;
517
- format?: ((value: any) => any) | null;
518
- color?: string;
519
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
520
- url?: string | any[] | Record<string, any>;
521
- modelValue?: string | any[] | number;
522
- type?: "primary" | "success" | "info" | "warning" | "danger";
523
- size?: "" | "small" | "default" | "large";
524
- showNum?: number;
525
- keyName?: string;
526
- titleName?: string;
527
- format?: ((value: any) => any) | null;
528
- color?: string;
529
- }> & Readonly<{}>, {
530
- type: "primary" | "success" | "info" | "warning" | "danger";
531
- size: "" | "small" | "default" | "large";
532
- titleName: string;
533
- format: ((value: any) => any) | null;
534
- showNum: number;
535
- keyName: string;
536
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
537
- ACascader: import('vue').DefineComponent<{
538
- modelValue?: any[] | string | number;
539
- remove?: any[] | string | number;
540
- url?: string | any[];
541
- disabled?: boolean;
542
- level?: number;
543
- props?: Record<string, any>;
544
- placeholder?: string;
545
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
546
- "update:modelValue": (value: any) => any;
547
- }, string, import('vue').PublicProps, Readonly<{
548
- modelValue?: any[] | string | number;
549
- remove?: any[] | string | number;
550
- url?: string | any[];
551
- disabled?: boolean;
552
- level?: number;
553
- props?: Record<string, any>;
554
- placeholder?: string;
555
- }> & Readonly<{
556
- "onUpdate:modelValue"?: (value: any) => any;
557
- }>, {
558
- props: Record<string, any>;
559
- placeholder: string;
560
- level: number;
561
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
562
- ATags: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
563
- disabled: BooleanConstructor;
564
- size: StringConstructor;
565
- modelValue: {
566
- type: (StringConstructor | ArrayConstructor)[];
567
- };
568
- add: {
569
- type: StringConstructor;
570
- default: string;
571
- };
572
- }>, {}, {
573
- tags: any[];
574
- }, {}, {
575
- fnEdit(index: any): void;
576
- fnAdd(): void;
577
- fnClose(index: any): void;
578
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
579
- disabled: BooleanConstructor;
580
- size: StringConstructor;
581
- modelValue: {
582
- type: (StringConstructor | ArrayConstructor)[];
583
- };
584
- add: {
585
- type: StringConstructor;
586
- default: string;
587
- };
588
- }>> & Readonly<{}>, {
589
- add: string;
590
- disabled: boolean;
591
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
592
- ATime: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
593
- date: {
594
- type: (NumberConstructor | ObjectConstructor | StringConstructor)[];
595
- default(): string;
596
- };
597
- locale: {
598
- type: StringConstructor;
599
- default: string;
600
- };
601
- threshold: {
602
- type: ArrayConstructor;
603
- default(): number[];
604
- };
605
- format: {
606
- type: StringConstructor;
607
- default: any;
608
- };
609
- }>, {}, {
610
- text: string;
611
- }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
612
- date: {
613
- type: (NumberConstructor | ObjectConstructor | StringConstructor)[];
614
- default(): string;
615
- };
616
- locale: {
617
- type: StringConstructor;
618
- default: string;
619
- };
620
- threshold: {
621
- type: ArrayConstructor;
622
- default(): number[];
623
- };
624
- format: {
625
- type: StringConstructor;
626
- default: any;
627
- };
628
- }>> & Readonly<{}>, {
629
- format: string;
630
- date: string | number | Record<string, any>;
631
- locale: string;
632
- threshold: unknown[];
633
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
634
- AImage: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
635
- src: StringConstructor;
636
- width: {
637
- type: (StringConstructor | NumberConstructor)[];
638
- };
639
- height: {
640
- type: (StringConstructor | NumberConstructor)[];
641
- };
642
- background: {
643
- type: StringConstructor;
644
- default: string;
645
- };
646
- borderRadius: StringConstructor;
647
- css: StringConstructor;
648
- process: {
649
- type: StringConstructor;
650
- default: string;
651
- };
652
- lazy: {
653
- type: BooleanConstructor;
654
- default: boolean;
655
- };
656
- index: {
657
- type: NumberConstructor;
658
- default: number;
659
- };
660
- preview: {
661
- type: (ArrayConstructor | BooleanConstructor)[];
662
- default: boolean;
663
- };
664
- }>, {}, {
665
- previewSrcList: never[];
666
- }, {}, {
667
- addUnit(value: string | number): string;
668
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
669
- src: StringConstructor;
670
- width: {
671
- type: (StringConstructor | NumberConstructor)[];
672
- };
673
- height: {
674
- type: (StringConstructor | NumberConstructor)[];
675
- };
676
- background: {
677
- type: StringConstructor;
678
- default: string;
679
- };
680
- borderRadius: StringConstructor;
681
- css: StringConstructor;
682
- process: {
683
- type: StringConstructor;
684
- default: string;
685
- };
686
- lazy: {
687
- type: BooleanConstructor;
688
- default: boolean;
689
- };
690
- index: {
691
- type: NumberConstructor;
692
- default: number;
693
- };
694
- preview: {
695
- type: (ArrayConstructor | BooleanConstructor)[];
696
- default: boolean;
697
- };
698
- }>> & Readonly<{}>, {
699
- background: string;
700
- process: string;
701
- lazy: boolean;
702
- index: number;
703
- preview: boolean | unknown[];
704
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
705
- AImageText: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
706
- modelValue: {
707
- type: (ObjectConstructor | ArrayConstructor)[];
708
- default: any[];
709
- };
710
- disabled: BooleanConstructor;
711
- size: {
712
- type: StringConstructor;
713
- default: string;
714
- };
715
- }>, {}, {
716
- imgShow: boolean;
717
- sum: number;
718
- index: number;
719
- list: any[];
720
- }, {}, {
721
- getData(): any;
722
- addText(): void;
723
- addImage(): void;
724
- editImage(index: any): void;
725
- fnImgsOk(): any;
726
- editText(index: any): void;
727
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
728
- modelValue: {
729
- type: (ObjectConstructor | ArrayConstructor)[];
730
- default: any[];
731
- };
732
- disabled: BooleanConstructor;
733
- size: {
734
- type: StringConstructor;
735
- default: string;
736
- };
737
- }>> & Readonly<{
738
- "onUpdate:modelValue"?: (...args: any[]) => any;
739
- onChange?: (...args: any[]) => any;
740
- }>, {
741
- size: string;
742
- modelValue: unknown[] | Record<string, any>;
743
- disabled: boolean;
744
- }, {}, {
745
- imgBox: any;
746
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
747
- AColorPicker: import('vue').DefineComponent<{
748
- modelValue?: string;
749
- tabindex?: number | string;
750
- colorFormat?: import('element-plus').ColorPickerProps["colorFormat"];
751
- size?: "" | "default" | "small" | "large";
752
- showAlpha?: any;
753
- props?: import('element-plus').ColorPickerProps;
754
- colors?: string[];
755
- }, {
756
- show: () => void;
757
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
758
- "update:modelValue": (value: string) => any;
759
- }, string, import('vue').PublicProps, Readonly<{
760
- modelValue?: string;
761
- tabindex?: number | string;
762
- colorFormat?: import('element-plus').ColorPickerProps["colorFormat"];
763
- size?: "" | "default" | "small" | "large";
764
- showAlpha?: any;
765
- props?: import('element-plus').ColorPickerProps;
766
- colors?: string[];
767
- }> & Readonly<{
768
- "onUpdate:modelValue"?: (value: string) => any;
769
- }>, {
770
- size: "" | "default" | "small" | "large";
771
- modelValue: string;
772
- tabindex: number | string;
773
- colorFormat: import('element-plus').ColorPickerProps["colorFormat"];
774
- showAlpha: any;
775
- colors: string[];
776
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
777
- ARegionPicker: import('vue').DefineComponent<{
778
- disabled?: boolean;
779
- modelValue?: any[] | string | number;
780
- checkStrictly?: boolean;
781
- placeholder?: string;
782
- level?: boolean | number;
783
- size?: "" | "small" | "default" | "large";
784
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
785
- "update:modelValue": (value: any) => any;
786
- change: (citys: string[], value: any) => any;
787
- }, string, import('vue').PublicProps, Readonly<{
788
- disabled?: boolean;
789
- modelValue?: any[] | string | number;
790
- checkStrictly?: boolean;
791
- placeholder?: string;
792
- level?: boolean | number;
793
- size?: "" | "small" | "default" | "large";
794
- }> & Readonly<{
795
- "onUpdate:modelValue"?: (value: any) => any;
796
- onChange?: (citys: string[], value: any) => any;
797
- }>, {
798
- placeholder: string;
799
- modelValue: any[] | string | number;
800
- level: boolean | number;
801
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
802
- ARegionText: import('vue').DefineComponent<{
803
- code: string | number;
804
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
805
- code: string | number;
806
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
807
- ARegionMap: import('vue').DefineComponent<{
808
- zoom?: number;
809
- mode?: string;
810
- search?: string | any[];
811
- modelValue?: string | any[];
812
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
813
- "update:modelValue": (value: string) => any;
814
- }, string, import('vue').PublicProps, Readonly<{
815
- zoom?: number;
816
- mode?: string;
817
- search?: string | any[];
818
- modelValue?: string | any[];
819
- }> & Readonly<{
820
- "onUpdate:modelValue"?: (value: string) => any;
821
- }>, {
822
- modelValue: string | any[];
823
- mode: string;
824
- zoom: number;
825
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
826
- ATextStatus: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
827
- status: {
828
- type: StringConstructor;
829
- default: string;
830
- };
831
- }>, {}, {
832
- color: boolean;
833
- }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
834
- status: {
835
- type: StringConstructor;
836
- default: string;
837
- };
838
- }>> & Readonly<{}>, {
839
- status: string;
840
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
841
- ADraggable: {
842
- new(...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
843
- options: ObjectConstructor;
844
- list: {
845
- type: ArrayConstructor;
846
- required: false;
847
- default: any;
848
- };
849
- noTransitionOnDrag: {
850
- type: BooleanConstructor;
851
- default: boolean;
852
- };
853
- clone: {
854
- type: FunctionConstructor;
855
- default: (original: any) => any;
856
- };
857
- tag: {
858
- type: StringConstructor;
859
- default: string;
860
- };
861
- move: {
862
- type: FunctionConstructor;
863
- default: any;
864
- };
865
- componentData: {
866
- type: ObjectConstructor;
867
- required: false;
868
- default: any;
869
- };
870
- component: {
871
- type: StringConstructor;
872
- default: any;
873
- };
874
- modelValue: {
875
- type: ArrayConstructor;
876
- required: false;
877
- default: any;
878
- };
879
- }>> & Readonly<{
880
- onSort?: (evt: any) => any;
881
- onAdd?: (evt: any) => any;
882
- onFilter?: (evt: any) => any;
883
- "onUpdate:modelValue"?: (value: any[]) => any;
884
- onUpdate?: (evt: any) => any;
885
- onChange?: (evt: any) => any;
886
- onEnd?: (evt: any) => any;
887
- onRemove?: (evt: any) => any;
888
- onClone?: (evt: any) => any;
889
- onMove?: (evt: any, originalEvent: any) => any;
890
- onStart?: (evt: any) => any;
891
- onChoose?: (evt: any) => any;
892
- onUnchoose?: (evt: any) => any;
893
- }>, {
894
- getContainer: () => HTMLElement;
895
- getChildrenNodes: () => HTMLElement[];
896
- computeIndexes: () => void;
897
- getUnderlyingVm: (htmlElt: HTMLElement) => {
898
- index: number;
899
- element: unknown;
900
- };
901
- getVmIndex: (domIndex: number) => number;
902
- spliceList: (index: number, deleteCount: number, ...items: any[]) => void;
903
- moveItem: (oldIndex: number, newIndex: number) => void;
904
- sortableInstance: globalThis.Ref<any, any>;
905
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
906
- sort: (evt: any) => any;
907
- add: (evt: any) => any;
908
- filter: (evt: any) => any;
909
- "update:modelValue": (value: any[]) => any;
910
- update: (evt: any) => any;
911
- change: (evt: any) => any;
912
- end: (evt: any) => any;
913
- remove: (evt: any) => any;
914
- clone: (evt: any) => any;
915
- move: (evt: any, originalEvent: any) => any;
916
- start: (evt: any) => any;
917
- choose: (evt: any) => any;
918
- unchoose: (evt: any) => any;
919
- }, import('vue').PublicProps, {
920
- component: string;
921
- modelValue: unknown[];
922
- tag: string;
923
- list: unknown[];
924
- noTransitionOnDrag: boolean;
925
- clone: Function;
926
- move: Function;
927
- componentData: Record<string, any>;
928
- }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
929
- P: {};
930
- B: {};
931
- D: {};
932
- C: {};
933
- M: {};
934
- Defaults: {};
935
- }, Readonly<globalThis.ExtractPropTypes<{
936
- options: ObjectConstructor;
937
- list: {
938
- type: ArrayConstructor;
939
- required: false;
940
- default: any;
941
- };
942
- noTransitionOnDrag: {
943
- type: BooleanConstructor;
944
- default: boolean;
945
- };
946
- clone: {
947
- type: FunctionConstructor;
948
- default: (original: any) => any;
949
- };
950
- tag: {
951
- type: StringConstructor;
952
- default: string;
953
- };
954
- move: {
955
- type: FunctionConstructor;
956
- default: any;
957
- };
958
- componentData: {
959
- type: ObjectConstructor;
960
- required: false;
961
- default: any;
962
- };
963
- component: {
964
- type: StringConstructor;
965
- default: any;
966
- };
967
- modelValue: {
968
- type: ArrayConstructor;
969
- required: false;
970
- default: any;
971
- };
972
- }>> & Readonly<{
973
- onSort?: (evt: any) => any;
974
- onAdd?: (evt: any) => any;
975
- onFilter?: (evt: any) => any;
976
- "onUpdate:modelValue"?: (value: any[]) => any;
977
- onUpdate?: (evt: any) => any;
978
- onChange?: (evt: any) => any;
979
- onEnd?: (evt: any) => any;
980
- onRemove?: (evt: any) => any;
981
- onClone?: (evt: any) => any;
982
- onMove?: (evt: any, originalEvent: any) => any;
983
- onStart?: (evt: any) => any;
984
- onChoose?: (evt: any) => any;
985
- onUnchoose?: (evt: any) => any;
986
- }>, {
987
- getContainer: () => HTMLElement;
988
- getChildrenNodes: () => HTMLElement[];
989
- computeIndexes: () => void;
990
- getUnderlyingVm: (htmlElt: HTMLElement) => {
991
- index: number;
992
- element: unknown;
993
- };
994
- getVmIndex: (domIndex: number) => number;
995
- spliceList: (index: number, deleteCount: number, ...items: any[]) => void;
996
- moveItem: (oldIndex: number, newIndex: number) => void;
997
- sortableInstance: globalThis.Ref<any, any>;
998
- }, {}, {}, {}, {
999
- component: string;
1000
- modelValue: unknown[];
1001
- tag: string;
1002
- list: unknown[];
1003
- noTransitionOnDrag: boolean;
1004
- clone: Function;
1005
- move: Function;
1006
- componentData: Record<string, any>;
1007
- }>;
1008
- __isFragment?: never;
1009
- __isTeleport?: never;
1010
- __isSuspense?: never;
1011
- } & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
1012
- options: ObjectConstructor;
1013
- list: {
1014
- type: ArrayConstructor;
1015
- required: false;
1016
- default: any;
1017
- };
1018
- noTransitionOnDrag: {
1019
- type: BooleanConstructor;
1020
- default: boolean;
1021
- };
1022
- clone: {
1023
- type: FunctionConstructor;
1024
- default: (original: any) => any;
1025
- };
1026
- tag: {
1027
- type: StringConstructor;
1028
- default: string;
1029
- };
1030
- move: {
1031
- type: FunctionConstructor;
1032
- default: any;
1033
- };
1034
- componentData: {
1035
- type: ObjectConstructor;
1036
- required: false;
1037
- default: any;
1038
- };
1039
- component: {
1040
- type: StringConstructor;
1041
- default: any;
1042
- };
1043
- modelValue: {
1044
- type: ArrayConstructor;
1045
- required: false;
1046
- default: any;
1047
- };
1048
- }>> & Readonly<{
1049
- onSort?: (evt: any) => any;
1050
- onAdd?: (evt: any) => any;
1051
- onFilter?: (evt: any) => any;
1052
- "onUpdate:modelValue"?: (value: any[]) => any;
1053
- onUpdate?: (evt: any) => any;
1054
- onChange?: (evt: any) => any;
1055
- onEnd?: (evt: any) => any;
1056
- onRemove?: (evt: any) => any;
1057
- onClone?: (evt: any) => any;
1058
- onMove?: (evt: any, originalEvent: any) => any;
1059
- onStart?: (evt: any) => any;
1060
- onChoose?: (evt: any) => any;
1061
- onUnchoose?: (evt: any) => any;
1062
- }>, {
1063
- getContainer: () => HTMLElement;
1064
- getChildrenNodes: () => HTMLElement[];
1065
- computeIndexes: () => void;
1066
- getUnderlyingVm: (htmlElt: HTMLElement) => {
1067
- index: number;
1068
- element: unknown;
1069
- };
1070
- getVmIndex: (domIndex: number) => number;
1071
- spliceList: (index: number, deleteCount: number, ...items: any[]) => void;
1072
- moveItem: (oldIndex: number, newIndex: number) => void;
1073
- sortableInstance: globalThis.Ref<any, any>;
1074
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1075
- sort: (evt: any) => any;
1076
- add: (evt: any) => any;
1077
- filter: (evt: any) => any;
1078
- "update:modelValue": (value: any[]) => any;
1079
- update: (evt: any) => any;
1080
- change: (evt: any) => any;
1081
- end: (evt: any) => any;
1082
- remove: (evt: any) => any;
1083
- clone: (evt: any) => any;
1084
- move: (evt: any, originalEvent: any) => any;
1085
- start: (evt: any) => any;
1086
- choose: (evt: any) => any;
1087
- unchoose: (evt: any) => any;
1088
- }, string, {
1089
- component: string;
1090
- modelValue: unknown[];
1091
- tag: string;
1092
- list: unknown[];
1093
- noTransitionOnDrag: boolean;
1094
- clone: Function;
1095
- move: Function;
1096
- componentData: Record<string, any>;
1097
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
1098
- $slots: {
1099
- default?: (props: {}) => any;
1100
- };
1101
- });
1102
- AChart: {
1103
- new(...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
1104
- init: {
1105
- type: ObjectConstructor;
1106
- default: () => {};
1107
- };
1108
- data: {
1109
- type: (ObjectConstructor | BooleanConstructor)[];
1110
- default: boolean;
1111
- };
1112
- type: StringConstructor;
1113
- asyncData: {
1114
- type: (StringConstructor | FunctionConstructor)[];
1115
- };
1116
- }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1117
- data: boolean | Record<string, any>;
1118
- init: Record<string, any>;
1119
- }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
1120
- P: {};
1121
- B: {};
1122
- D: {};
1123
- C: {};
1124
- M: {};
1125
- Defaults: {};
1126
- }, Readonly<globalThis.ExtractPropTypes<{
1127
- init: {
1128
- type: ObjectConstructor;
1129
- default: () => {};
1130
- };
1131
- data: {
1132
- type: (ObjectConstructor | BooleanConstructor)[];
1133
- default: boolean;
1134
- };
1135
- type: StringConstructor;
1136
- asyncData: {
1137
- type: (StringConstructor | FunctionConstructor)[];
1138
- };
1139
- }>> & Readonly<{}>, {}, {}, {}, {}, {
1140
- data: boolean | Record<string, any>;
1141
- init: Record<string, any>;
1142
- }>;
1143
- __isFragment?: never;
1144
- __isTeleport?: never;
1145
- __isSuspense?: never;
1146
- } & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
1147
- init: {
1148
- type: ObjectConstructor;
1149
- default: () => {};
1150
- };
1151
- data: {
1152
- type: (ObjectConstructor | BooleanConstructor)[];
1153
- default: boolean;
1154
- };
1155
- type: StringConstructor;
1156
- asyncData: {
1157
- type: (StringConstructor | FunctionConstructor)[];
1158
- };
1159
- }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1160
- data: boolean | Record<string, any>;
1161
- init: Record<string, any>;
1162
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
1163
- $slots: {
1164
- default?: (props: {}) => any;
1165
- };
1166
- });
1167
- AEditor: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
1168
- disabled: BooleanConstructor;
1169
- placeholder: {
1170
- type: StringConstructor;
1171
- default: string;
1172
- };
1173
- modelValue: {
1174
- type: StringConstructor;
1175
- default: string;
1176
- };
1177
- }>, {}, {
1178
- mode: string;
1179
- getFragment: any;
1180
- editor: any;
1181
- addFile: any;
1182
- addUrl: any;
1183
- fileShow: boolean;
1184
- fileType: string;
1185
- urlShow: boolean;
1186
- videoShow: boolean;
1187
- videoNodes: any;
1188
- url: string;
1189
- sum: number;
1190
- }, {
1191
- url2(): any;
1192
- typeName(): any;
1193
- }, {
1194
- sethtml(editor: any): void;
1195
- init(): void;
1196
- urlChange(e: any): void;
1197
- fnUrlOk(): void;
1198
- fileOk(): import('element-plus').MessageHandler;
1199
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
1200
- disabled: BooleanConstructor;
1201
- placeholder: {
1202
- type: StringConstructor;
1203
- default: string;
1204
- };
1205
- modelValue: {
1206
- type: StringConstructor;
1207
- default: string;
1208
- };
1209
- }>> & Readonly<{}>, {
1210
- placeholder: string;
1211
- modelValue: string;
1212
- disabled: boolean;
1213
- }, {}, {
1214
- mediaBox: any;
1215
- urlBox: any;
1216
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1217
- }
1218
- declare module 'vue' {
1219
- interface GlobalComponents {
1220
- AdminTable: _default['AdminTable']
1221
- AdminForm: _default['AdminForm']
1222
- DataApi: _default['DataApi']
1223
- ASearch: _default['ASearch']
1224
- AInputs: _default['AInputs']
1225
- InputButton: _default['InputButton']
1226
- ASearchBox: _default['ASearchBox']
1227
- ATip: _default['ATip']
1228
- ATextEdit: _default['ATextEdit']
1229
- ACateText: _default['ACateText']
1230
- ACascader: _default['ACascader']
1231
- ATags: _default['ATags']
1232
- ATime: _default['ATime']
1233
- AImage: _default['AImage'] & typeof ElImage
1234
- AImageText: _default['AImageText']
1235
- AColorPicker: _default['AColorPicker']
1236
- ARegionPicker: _default['ARegionPicker']
1237
- ARegionText: _default['ARegionText']
1238
- ARegionMap: _default['ARegionMap']
1239
- ATextStatus: _default['ATextStatus']
1240
- ADraggable: _default['ADraggable']
1241
- AChart: _default['AChart']
1242
- AEditor: _default['AEditor']
1243
- }
1244
- }
107
+ export { }