cnhis-design-vue 3.1.41-beta.26 → 3.1.41-beta.28
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/README.md +87 -87
- package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
- package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
- package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
- package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
- package/es/components/date-picker/index.d.ts +20 -0
- package/es/components/date-picker/index.js +1 -0
- package/es/components/date-picker/src/DatePicker.vue.d.ts +20 -0
- package/es/components/date-picker/src/DatePicker.vue.js +1 -0
- package/es/components/fabric-chart/src/utils/index.d.ts +6823 -0
- package/es/components/form-config/index.d.ts +5 -5
- package/es/components/form-config/src/FormConfig.vue.d.ts +5 -5
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +20 -7
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/editTime.vue.d.ts +18 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/editTime.vue.js +1 -1
- package/es/components/index.css +1 -1
- package/es/components/index.d.ts +3 -1
- package/es/components/index.js +1 -1
- package/es/components/scale-view/src/ScaleView.vue.js +1 -1
- package/es/components/shortcut-setter/index.d.ts +1 -1
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +1 -1
- package/es/components/table-filter/index.d.ts +64 -452
- package/es/components/table-filter/src/base-search-com/BaseSearch.vue.d.ts +19 -88
- package/es/components/table-filter/src/base-search-com/BaseSearch.vue.js +1 -1
- package/es/components/table-filter/src/classification/Classification-com.vue.d.ts +37 -253
- package/es/components/table-filter/src/classification/Classification-com.vue.js +1 -1
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +0 -42
- package/es/components/table-filter/src/components/classify-filter/index.vue.js +1 -1
- package/es/components/table-filter/src/components/render-widget/index.vue.d.ts +2 -1
- package/es/components/table-filter/src/components/render-widget/index.vue.js +1 -1
- package/es/components/table-filter/src/components/search-filter/index.vue.d.ts +0 -84
- package/es/components/table-filter/src/components/search-filter/index.vue.js +1 -1
- package/es/components/table-filter/src/components/set-classification/index.vue.d.ts +4 -130
- package/es/components/table-filter/src/components/set-classification/index.vue.js +1 -1
- package/es/components/table-filter/src/components/table-modal/index.vue.d.ts +3 -43
- package/es/components/table-filter/src/components/table-modal/index.vue.js +1 -1
- package/es/components/table-filter/src/quick-search/QuickSearch.vue.d.ts +10 -113
- package/es/components/table-filter/src/quick-search/QuickSearch.vue.js +1 -1
- package/es/components/table-filter/src/types/index.d.ts +6 -162
- package/es/components/table-filter/style/iconfont.ttf +0 -0
- package/es/components/table-filter/style/index.css +1 -1
- package/es/components/time-picker/index.d.ts +18 -0
- package/es/components/time-picker/index.js +1 -0
- package/es/components/time-picker/src/TimePicker.vue.d.ts +18 -0
- package/es/components/time-picker/src/TimePicker.vue.js +1 -0
- package/es/env.d.ts +24 -24
- package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +86 -0
- package/es/shared/utils/tapable/index.d.ts +139 -0
- package/package.json +2 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/timeUtils.d.ts +0 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/timeUtils.js +0 -1
|
@@ -4,7 +4,9 @@ export * from './src/hooks/export';
|
|
|
4
4
|
declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
5
5
|
showSettings: {
|
|
6
6
|
type: import("vue").PropType<import("./src/types").IsettingsType>;
|
|
7
|
-
default: () => {
|
|
7
|
+
default: () => {
|
|
8
|
+
hideQuickSearch: number;
|
|
9
|
+
};
|
|
8
10
|
};
|
|
9
11
|
searchFieldList: {
|
|
10
12
|
type: import("vue").PropType<import("./src/types").IApiServerType[]>;
|
|
@@ -63,7 +65,9 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
63
65
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
64
66
|
showSettings: {
|
|
65
67
|
type: import("vue").PropType<import("./src/types").IsettingsType>;
|
|
66
|
-
default: () => {
|
|
68
|
+
default: () => {
|
|
69
|
+
hideQuickSearch: number;
|
|
70
|
+
};
|
|
67
71
|
};
|
|
68
72
|
searchFieldList: {
|
|
69
73
|
type: import("vue").PropType<import("./src/types").IApiServerType[]>;
|
|
@@ -77,13 +81,12 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
77
81
|
default: number;
|
|
78
82
|
};
|
|
79
83
|
}>> & {
|
|
80
|
-
onOnSave?: ((...args: any[]) => any) | undefined;
|
|
81
84
|
onFoldQuickSearch?: ((...args: any[]) => any) | undefined;
|
|
85
|
+
onOnFilterSearch?: ((...args: any[]) => any) | undefined;
|
|
82
86
|
onHandleReset?: ((...args: any[]) => any) | undefined;
|
|
83
|
-
|
|
84
|
-
onGetParam?: ((...args: any[]) => any) | undefined;
|
|
87
|
+
onGetFilterParam?: ((...args: any[]) => any) | undefined;
|
|
85
88
|
}>>;
|
|
86
|
-
emit: (event: "
|
|
89
|
+
emit: (event: "foldQuickSearch" | "onFilterSearch" | "handleReset" | "getFilterParam", ...args: any[]) => void;
|
|
87
90
|
baseLeftWidth: import("vue").Ref<number>;
|
|
88
91
|
classificationWidth: import("vue").Ref<number>;
|
|
89
92
|
quickSearchWidth: import("vue").Ref<number>;
|
|
@@ -100,32 +103,6 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
100
103
|
settingObj?: any;
|
|
101
104
|
placeholder?: string | undefined;
|
|
102
105
|
AGEAttr?: boolean | undefined;
|
|
103
|
-
BIRTHDAY?: {
|
|
104
|
-
con: any;
|
|
105
|
-
limit_date?: any;
|
|
106
|
-
start_val: any;
|
|
107
|
-
end_val: any;
|
|
108
|
-
unit?: string | undefined;
|
|
109
|
-
units?: {
|
|
110
|
-
con: string;
|
|
111
|
-
title: string;
|
|
112
|
-
name: string;
|
|
113
|
-
units?: number | undefined;
|
|
114
|
-
}[] | undefined;
|
|
115
|
-
} | undefined;
|
|
116
|
-
DATE?: {
|
|
117
|
-
con: any;
|
|
118
|
-
limit_date?: any;
|
|
119
|
-
start_val: any;
|
|
120
|
-
end_val: any;
|
|
121
|
-
unit?: string | undefined;
|
|
122
|
-
units?: {
|
|
123
|
-
con: string;
|
|
124
|
-
title: string;
|
|
125
|
-
name: string;
|
|
126
|
-
units?: number | undefined;
|
|
127
|
-
}[] | undefined;
|
|
128
|
-
} | undefined;
|
|
129
106
|
CL?: string | undefined;
|
|
130
107
|
CONVERT?: any;
|
|
131
108
|
EVALUATEAttr?: boolean | undefined;
|
|
@@ -149,12 +126,6 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
149
126
|
comAttr?: string | undefined;
|
|
150
127
|
con?: string | undefined;
|
|
151
128
|
dataSource?: any;
|
|
152
|
-
dateTeam?: {
|
|
153
|
-
con: string;
|
|
154
|
-
title: string;
|
|
155
|
-
name: string;
|
|
156
|
-
units?: number | undefined;
|
|
157
|
-
}[] | undefined;
|
|
158
129
|
dictionarieObj?: any;
|
|
159
130
|
explicitRequired?: number | undefined;
|
|
160
131
|
explicitDefaultVal?: string | undefined;
|
|
@@ -248,7 +219,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
248
219
|
outFilterChange: (config?: {}) => void;
|
|
249
220
|
getConObjParams: () => any;
|
|
250
221
|
getConObj: (arr: any) => any;
|
|
251
|
-
|
|
222
|
+
onFilterSearch: (obj: import("./src/types").ISearchParamsType[], isOutFilter?: boolean, config?: {}) => void;
|
|
252
223
|
handleReset: () => void;
|
|
253
224
|
resetFunc: (arr: import("./src/types").ISearchType[]) => void;
|
|
254
225
|
vResize: {
|
|
@@ -274,7 +245,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
274
245
|
[key: string]: any;
|
|
275
246
|
}> | null;
|
|
276
247
|
handleUpdate(val: any, widgetType: any, defValueUnit: any): void;
|
|
277
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
248
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "outFilterChange")[], "update:modelValue" | "outFilterChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
278
249
|
cfg: {
|
|
279
250
|
type: ObjectConstructor;
|
|
280
251
|
required: true;
|
|
@@ -284,56 +255,17 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
284
255
|
};
|
|
285
256
|
}>> & {
|
|
286
257
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
258
|
+
onOutFilterChange?: ((...args: any[]) => any) | undefined;
|
|
287
259
|
}, {}>;
|
|
288
260
|
NIcon: any;
|
|
289
261
|
NButton: any;
|
|
290
262
|
Search: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
291
|
-
|
|
292
|
-
iconClass: {
|
|
293
|
-
type: StringConstructor;
|
|
294
|
-
required: true;
|
|
295
|
-
default: string;
|
|
296
|
-
};
|
|
297
|
-
title: {
|
|
298
|
-
type: StringConstructor;
|
|
299
|
-
required: false;
|
|
300
|
-
default: string;
|
|
301
|
-
};
|
|
302
|
-
className: {
|
|
303
|
-
type: StringConstructor;
|
|
304
|
-
required: false;
|
|
305
|
-
};
|
|
306
|
-
}, {
|
|
307
|
-
props: {
|
|
308
|
-
iconClass: string;
|
|
309
|
-
title: string;
|
|
310
|
-
className?: string | undefined;
|
|
311
|
-
};
|
|
312
|
-
iconName: import("vue").ComputedRef<string>;
|
|
313
|
-
svgClass: import("vue").ComputedRef<string>;
|
|
314
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
315
|
-
iconClass: {
|
|
316
|
-
type: StringConstructor;
|
|
317
|
-
required: true;
|
|
318
|
-
default: string;
|
|
319
|
-
};
|
|
320
|
-
title: {
|
|
321
|
-
type: StringConstructor;
|
|
322
|
-
required: false;
|
|
323
|
-
default: string;
|
|
324
|
-
};
|
|
325
|
-
className: {
|
|
326
|
-
type: StringConstructor;
|
|
327
|
-
required: false;
|
|
328
|
-
};
|
|
329
|
-
}>>, {
|
|
330
|
-
title: string;
|
|
331
|
-
iconClass: string;
|
|
332
|
-
}>;
|
|
333
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSave" | "foldQuickSearch" | "handleReset" | "outSearchInit" | "getParam")[], "onSave" | "foldQuickSearch" | "handleReset" | "outSearchInit" | "getParam", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
263
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("foldQuickSearch" | "onFilterSearch" | "handleReset" | "getFilterParam")[], "foldQuickSearch" | "onFilterSearch" | "handleReset" | "getFilterParam", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
334
264
|
showSettings: {
|
|
335
265
|
type: import("vue").PropType<import("./src/types").IsettingsType>;
|
|
336
|
-
default: () => {
|
|
266
|
+
default: () => {
|
|
267
|
+
hideQuickSearch: number;
|
|
268
|
+
};
|
|
337
269
|
};
|
|
338
270
|
searchFieldList: {
|
|
339
271
|
type: import("vue").PropType<import("./src/types").IApiServerType[]>;
|
|
@@ -347,11 +279,10 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
347
279
|
default: number;
|
|
348
280
|
};
|
|
349
281
|
}>> & {
|
|
350
|
-
onOnSave?: ((...args: any[]) => any) | undefined;
|
|
351
282
|
onFoldQuickSearch?: ((...args: any[]) => any) | undefined;
|
|
283
|
+
onOnFilterSearch?: ((...args: any[]) => any) | undefined;
|
|
352
284
|
onHandleReset?: ((...args: any[]) => any) | undefined;
|
|
353
|
-
|
|
354
|
-
onGetParam?: ((...args: any[]) => any) | undefined;
|
|
285
|
+
onGetFilterParam?: ((...args: any[]) => any) | undefined;
|
|
355
286
|
}, {
|
|
356
287
|
showSettings: import("./src/types").IsettingsType;
|
|
357
288
|
searchFieldList: import("./src/types").IApiServerType[];
|
|
@@ -366,14 +297,6 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
366
297
|
type: StringConstructor;
|
|
367
298
|
default: string;
|
|
368
299
|
};
|
|
369
|
-
source: {
|
|
370
|
-
type: StringConstructor;
|
|
371
|
-
default: string;
|
|
372
|
-
};
|
|
373
|
-
quickSearchListObj: {
|
|
374
|
-
type: import("vue").PropType<import("./src/types").IConditionMapType>;
|
|
375
|
-
default: () => {};
|
|
376
|
-
};
|
|
377
300
|
filterApiConfig: {
|
|
378
301
|
type: ObjectConstructor;
|
|
379
302
|
};
|
|
@@ -385,7 +308,6 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
385
308
|
trigger: string[];
|
|
386
309
|
};
|
|
387
310
|
};
|
|
388
|
-
attrs: any;
|
|
389
311
|
$message: import("naive-ui").MessageApi;
|
|
390
312
|
handleGetConfigApi: (params: any, key: string, config: {} | undefined, filterApiConfigVal: any) => Promise<any>;
|
|
391
313
|
outQuickSearchFn: {
|
|
@@ -436,27 +358,15 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
436
358
|
type: StringConstructor;
|
|
437
359
|
default: string;
|
|
438
360
|
};
|
|
439
|
-
source: {
|
|
440
|
-
type: StringConstructor;
|
|
441
|
-
default: string;
|
|
442
|
-
};
|
|
443
|
-
quickSearchListObj: {
|
|
444
|
-
type: import("vue").PropType<import("./src/types").IConditionMapType>;
|
|
445
|
-
default: () => {};
|
|
446
|
-
};
|
|
447
361
|
filterApiConfig: {
|
|
448
362
|
type: ObjectConstructor;
|
|
449
363
|
};
|
|
450
364
|
}>> & {
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
onFilterCountChange?: ((...args: any[]) => any) | undefined;
|
|
454
|
-
onCloseModal?: ((...args: any[]) => any) | undefined;
|
|
455
|
-
onUpdateTableCondiTion?: ((...args: any[]) => any) | undefined;
|
|
365
|
+
onOnFilterSearch?: ((...args: any[]) => any) | undefined;
|
|
366
|
+
onGetFilterParam?: ((...args: any[]) => any) | undefined;
|
|
456
367
|
onClearQuickSearchConfig?: ((...args: any[]) => any) | undefined;
|
|
457
368
|
}>>;
|
|
458
|
-
emit: (event: "
|
|
459
|
-
ageAttrDomList: any;
|
|
369
|
+
emit: (event: "onFilterSearch" | "getFilterParam" | "clearQuickSearchConfig", ...args: any[]) => void;
|
|
460
370
|
formRef: any;
|
|
461
371
|
formValue: import("vue").Ref<{
|
|
462
372
|
classname: string;
|
|
@@ -472,32 +382,6 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
472
382
|
settingObj?: any;
|
|
473
383
|
placeholder?: string | undefined;
|
|
474
384
|
AGEAttr?: boolean | undefined;
|
|
475
|
-
BIRTHDAY?: {
|
|
476
|
-
con: any;
|
|
477
|
-
limit_date?: any;
|
|
478
|
-
start_val: any;
|
|
479
|
-
end_val: any;
|
|
480
|
-
unit?: string | undefined;
|
|
481
|
-
units?: {
|
|
482
|
-
con: string;
|
|
483
|
-
title: string;
|
|
484
|
-
name: string;
|
|
485
|
-
units?: number | undefined;
|
|
486
|
-
}[] | undefined;
|
|
487
|
-
} | undefined;
|
|
488
|
-
DATE?: {
|
|
489
|
-
con: any;
|
|
490
|
-
limit_date?: any;
|
|
491
|
-
start_val: any;
|
|
492
|
-
end_val: any;
|
|
493
|
-
unit?: string | undefined;
|
|
494
|
-
units?: {
|
|
495
|
-
con: string;
|
|
496
|
-
title: string;
|
|
497
|
-
name: string;
|
|
498
|
-
units?: number | undefined;
|
|
499
|
-
}[] | undefined;
|
|
500
|
-
} | undefined;
|
|
501
385
|
CL?: string | undefined;
|
|
502
386
|
CONVERT?: any;
|
|
503
387
|
EVALUATEAttr?: boolean | undefined;
|
|
@@ -521,12 +405,6 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
521
405
|
comAttr?: string | undefined;
|
|
522
406
|
con?: string | undefined;
|
|
523
407
|
dataSource?: any;
|
|
524
|
-
dateTeam?: {
|
|
525
|
-
con: string;
|
|
526
|
-
title: string;
|
|
527
|
-
name: string;
|
|
528
|
-
units?: number | undefined;
|
|
529
|
-
}[] | undefined;
|
|
530
408
|
dictionarieObj?: any;
|
|
531
409
|
explicitRequired?: number | undefined;
|
|
532
410
|
explicitDefaultVal?: string | undefined;
|
|
@@ -610,9 +488,6 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
610
488
|
hasFieldList?: any;
|
|
611
489
|
search_DefaultValue?: any;
|
|
612
490
|
}[]>;
|
|
613
|
-
isChangeWindow: import("vue").Ref<boolean>;
|
|
614
|
-
modalWidth: import("vue").Ref<string>;
|
|
615
|
-
modalHeight: import("vue").Ref<string>;
|
|
616
491
|
parentNames: import("vue").Ref<{
|
|
617
492
|
disabled: boolean;
|
|
618
493
|
isAdd?: boolean | undefined;
|
|
@@ -624,8 +499,7 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
624
499
|
parentNamesHasAdd: import("vue").ComputedRef<boolean>;
|
|
625
500
|
handleName: import("vue").ComputedRef<(item: import("./src/types").ISearchType, key?: string) => any>;
|
|
626
501
|
init: () => void;
|
|
627
|
-
|
|
628
|
-
onSave: () => {
|
|
502
|
+
onFilterSearch: () => {
|
|
629
503
|
columnName: string;
|
|
630
504
|
title: string;
|
|
631
505
|
fieldType?: string | undefined;
|
|
@@ -635,32 +509,6 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
635
509
|
settingObj?: any;
|
|
636
510
|
placeholder?: string | undefined;
|
|
637
511
|
AGEAttr?: boolean | undefined;
|
|
638
|
-
BIRTHDAY?: {
|
|
639
|
-
con: any;
|
|
640
|
-
limit_date?: any;
|
|
641
|
-
start_val: any;
|
|
642
|
-
end_val: any;
|
|
643
|
-
unit?: string | undefined;
|
|
644
|
-
units?: {
|
|
645
|
-
con: string;
|
|
646
|
-
title: string;
|
|
647
|
-
name: string;
|
|
648
|
-
units?: number | undefined;
|
|
649
|
-
}[] | undefined;
|
|
650
|
-
} | undefined;
|
|
651
|
-
DATE?: {
|
|
652
|
-
con: any;
|
|
653
|
-
limit_date?: any;
|
|
654
|
-
start_val: any;
|
|
655
|
-
end_val: any;
|
|
656
|
-
unit?: string | undefined;
|
|
657
|
-
units?: {
|
|
658
|
-
con: string;
|
|
659
|
-
title: string;
|
|
660
|
-
name: string;
|
|
661
|
-
units?: number | undefined;
|
|
662
|
-
}[] | undefined;
|
|
663
|
-
} | undefined;
|
|
664
512
|
CL?: string | undefined;
|
|
665
513
|
CONVERT?: any;
|
|
666
514
|
EVALUATEAttr?: boolean | undefined;
|
|
@@ -684,12 +532,6 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
684
532
|
comAttr?: string | undefined;
|
|
685
533
|
con?: string | undefined;
|
|
686
534
|
dataSource?: any;
|
|
687
|
-
dateTeam?: {
|
|
688
|
-
con: string;
|
|
689
|
-
title: string;
|
|
690
|
-
name: string;
|
|
691
|
-
units?: number | undefined;
|
|
692
|
-
}[] | undefined;
|
|
693
535
|
dictionarieObj?: any;
|
|
694
536
|
explicitRequired?: number | undefined;
|
|
695
537
|
explicitDefaultVal?: string | undefined;
|
|
@@ -775,8 +617,6 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
775
617
|
}[];
|
|
776
618
|
getMergeConObj: () => any;
|
|
777
619
|
getConObjParams: () => any;
|
|
778
|
-
closeModal: () => void;
|
|
779
|
-
resetChangeWindow: () => void;
|
|
780
620
|
openSaveToCalss: () => void;
|
|
781
621
|
getConObj: (arr: import("./src/types").ISearchType[]) => any;
|
|
782
622
|
saveToCalss: () => void;
|
|
@@ -1113,7 +953,7 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1113
953
|
[key: string]: any;
|
|
1114
954
|
}> | null;
|
|
1115
955
|
handleUpdate(val: any, widgetType: any, defValueUnit: any): void;
|
|
1116
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
956
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "outFilterChange")[], "update:modelValue" | "outFilterChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1117
957
|
cfg: {
|
|
1118
958
|
type: ObjectConstructor;
|
|
1119
959
|
required: true;
|
|
@@ -1123,8 +963,9 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1123
963
|
};
|
|
1124
964
|
}>> & {
|
|
1125
965
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
966
|
+
onOutFilterChange?: ((...args: any[]) => any) | undefined;
|
|
1126
967
|
}, {}>;
|
|
1127
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
968
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onFilterSearch" | "getFilterParam" | "clearQuickSearchConfig")[], "onFilterSearch" | "getFilterParam" | "clearQuickSearchConfig", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1128
969
|
searchFieldList: {
|
|
1129
970
|
type: import("vue").PropType<import("./src/types").IApiServerType[]>;
|
|
1130
971
|
default: () => never[];
|
|
@@ -1133,49 +974,41 @@ declare const CQuickSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1133
974
|
type: StringConstructor;
|
|
1134
975
|
default: string;
|
|
1135
976
|
};
|
|
1136
|
-
source: {
|
|
1137
|
-
type: StringConstructor;
|
|
1138
|
-
default: string;
|
|
1139
|
-
};
|
|
1140
|
-
quickSearchListObj: {
|
|
1141
|
-
type: import("vue").PropType<import("./src/types").IConditionMapType>;
|
|
1142
|
-
default: () => {};
|
|
1143
|
-
};
|
|
1144
977
|
filterApiConfig: {
|
|
1145
978
|
type: ObjectConstructor;
|
|
1146
979
|
};
|
|
1147
980
|
}>> & {
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
onFilterCountChange?: ((...args: any[]) => any) | undefined;
|
|
1151
|
-
onCloseModal?: ((...args: any[]) => any) | undefined;
|
|
1152
|
-
onUpdateTableCondiTion?: ((...args: any[]) => any) | undefined;
|
|
981
|
+
onOnFilterSearch?: ((...args: any[]) => any) | undefined;
|
|
982
|
+
onGetFilterParam?: ((...args: any[]) => any) | undefined;
|
|
1153
983
|
onClearQuickSearchConfig?: ((...args: any[]) => any) | undefined;
|
|
1154
984
|
}, {
|
|
1155
|
-
source: string;
|
|
1156
985
|
searchFieldList: import("./src/types").IApiServerType[];
|
|
1157
986
|
tableId: string;
|
|
1158
|
-
quickSearchListObj: import("./src/types").IConditionMapType;
|
|
1159
987
|
}>>;
|
|
1160
988
|
declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1161
989
|
tableId: {
|
|
1162
990
|
type: StringConstructor;
|
|
1163
991
|
default: string;
|
|
1164
992
|
};
|
|
993
|
+
searchFieldList: {
|
|
994
|
+
type: import("vue").PropType<any[]>;
|
|
995
|
+
default: () => never[];
|
|
996
|
+
};
|
|
997
|
+
conditionMap: {
|
|
998
|
+
type: import("vue").PropType<import("./src/types").IConditionMapType>;
|
|
999
|
+
default: () => void;
|
|
1000
|
+
};
|
|
1165
1001
|
conditionSid: {
|
|
1166
1002
|
type: import("vue").PropType<string[]>;
|
|
1167
1003
|
default: () => never[];
|
|
1168
1004
|
};
|
|
1169
1005
|
curClassificationIndex: {
|
|
1170
1006
|
type: NumberConstructor;
|
|
1007
|
+
default: number;
|
|
1171
1008
|
};
|
|
1172
1009
|
curClassificationWidth: {
|
|
1173
1010
|
type: NumberConstructor;
|
|
1174
1011
|
};
|
|
1175
|
-
conditionType: {
|
|
1176
|
-
type: StringConstructor;
|
|
1177
|
-
default: string;
|
|
1178
|
-
};
|
|
1179
1012
|
hideConditionChangeBtn: {
|
|
1180
1013
|
type: NumberConstructor;
|
|
1181
1014
|
default: number;
|
|
@@ -1188,30 +1021,14 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1188
1021
|
type: NumberConstructor;
|
|
1189
1022
|
default: number;
|
|
1190
1023
|
};
|
|
1191
|
-
countCondition: {
|
|
1192
|
-
type: NumberConstructor;
|
|
1193
|
-
default: number;
|
|
1194
|
-
};
|
|
1195
|
-
countTabCondition: {
|
|
1196
|
-
type: NumberConstructor;
|
|
1197
|
-
default: number;
|
|
1198
|
-
};
|
|
1199
1024
|
isShowResetButton: {
|
|
1200
1025
|
type: BooleanConstructor;
|
|
1201
1026
|
default: boolean;
|
|
1202
1027
|
};
|
|
1203
|
-
conditionMap: {
|
|
1204
|
-
type: import("vue").PropType<import("./src/types").IConditionMapType>;
|
|
1205
|
-
default: () => void;
|
|
1206
|
-
};
|
|
1207
1028
|
filterApiConfig: {
|
|
1208
1029
|
type: ObjectConstructor;
|
|
1209
1030
|
default: () => {};
|
|
1210
1031
|
};
|
|
1211
|
-
searchFieldList: {
|
|
1212
|
-
type: import("vue").PropType<any[]>;
|
|
1213
|
-
default: () => never[];
|
|
1214
|
-
};
|
|
1215
1032
|
}, {
|
|
1216
1033
|
handleGetConfigApi: (params: any, key: string, config: {} | undefined, filterApiConfigVal: any) => Promise<any>;
|
|
1217
1034
|
attrs: any;
|
|
@@ -1220,20 +1037,25 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1220
1037
|
type: StringConstructor;
|
|
1221
1038
|
default: string;
|
|
1222
1039
|
};
|
|
1040
|
+
searchFieldList: {
|
|
1041
|
+
type: import("vue").PropType<any[]>;
|
|
1042
|
+
default: () => never[];
|
|
1043
|
+
};
|
|
1044
|
+
conditionMap: {
|
|
1045
|
+
type: import("vue").PropType<import("./src/types").IConditionMapType>;
|
|
1046
|
+
default: () => void;
|
|
1047
|
+
};
|
|
1223
1048
|
conditionSid: {
|
|
1224
1049
|
type: import("vue").PropType<string[]>;
|
|
1225
1050
|
default: () => never[];
|
|
1226
1051
|
};
|
|
1227
1052
|
curClassificationIndex: {
|
|
1228
1053
|
type: NumberConstructor;
|
|
1054
|
+
default: number;
|
|
1229
1055
|
};
|
|
1230
1056
|
curClassificationWidth: {
|
|
1231
1057
|
type: NumberConstructor;
|
|
1232
1058
|
};
|
|
1233
|
-
conditionType: {
|
|
1234
|
-
type: StringConstructor;
|
|
1235
|
-
default: string;
|
|
1236
|
-
};
|
|
1237
1059
|
hideConditionChangeBtn: {
|
|
1238
1060
|
type: NumberConstructor;
|
|
1239
1061
|
default: number;
|
|
@@ -1246,41 +1068,20 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1246
1068
|
type: NumberConstructor;
|
|
1247
1069
|
default: number;
|
|
1248
1070
|
};
|
|
1249
|
-
countCondition: {
|
|
1250
|
-
type: NumberConstructor;
|
|
1251
|
-
default: number;
|
|
1252
|
-
};
|
|
1253
|
-
countTabCondition: {
|
|
1254
|
-
type: NumberConstructor;
|
|
1255
|
-
default: number;
|
|
1256
|
-
};
|
|
1257
1071
|
isShowResetButton: {
|
|
1258
1072
|
type: BooleanConstructor;
|
|
1259
1073
|
default: boolean;
|
|
1260
1074
|
};
|
|
1261
|
-
conditionMap: {
|
|
1262
|
-
type: import("vue").PropType<import("./src/types").IConditionMapType>;
|
|
1263
|
-
default: () => void;
|
|
1264
|
-
};
|
|
1265
1075
|
filterApiConfig: {
|
|
1266
1076
|
type: ObjectConstructor;
|
|
1267
1077
|
default: () => {};
|
|
1268
1078
|
};
|
|
1269
|
-
searchFieldList: {
|
|
1270
|
-
type: import("vue").PropType<any[]>;
|
|
1271
|
-
default: () => never[];
|
|
1272
|
-
};
|
|
1273
1079
|
}>> & {
|
|
1274
1080
|
onChangeSearch?: ((...args: any[]) => any) | undefined;
|
|
1275
|
-
onSetCurTreeData?: ((...args: any[]) => any) | undefined;
|
|
1276
1081
|
onSetClassificationIndex?: ((...args: any[]) => any) | undefined;
|
|
1277
|
-
onGetClassification?: ((...args: any[]) => any) | undefined;
|
|
1278
|
-
onReloadList?: ((...args: any[]) => any) | undefined;
|
|
1279
1082
|
onGetQuickSearchListObj?: ((...args: any[]) => any) | undefined;
|
|
1280
|
-
onSetConditionMap?: ((...args: any[]) => any) | undefined;
|
|
1281
|
-
onSetClassifyModal?: ((...args: any[]) => any) | undefined;
|
|
1282
1083
|
}>>;
|
|
1283
|
-
emit: (event: "changeSearch" | "
|
|
1084
|
+
emit: (event: "changeSearch" | "setClassificationIndex" | "getQuickSearchListObj", ...args: any[]) => void;
|
|
1284
1085
|
selectType: any;
|
|
1285
1086
|
classificationWidth: import("vue").Ref<number>;
|
|
1286
1087
|
selectShow: import("vue").Ref<boolean>;
|
|
@@ -1386,11 +1187,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1386
1187
|
}>;
|
|
1387
1188
|
titleName: import("vue").ComputedRef<string>;
|
|
1388
1189
|
tooltipTilte: import("vue").ComputedRef<(item: any) => string>;
|
|
1389
|
-
getCondiTionDigital: import("vue").ComputedRef<boolean>;
|
|
1390
1190
|
handleFold: (item: import("./src/types").ITreeDataType) => void;
|
|
1391
|
-
handleItemClick: (child: any, i?: number | undefined, p?:
|
|
1191
|
+
handleItemClick: (child: any, i?: number | undefined, p?: import("./src/types").ITreeDataType | undefined) => void;
|
|
1392
1192
|
initTree: (conditionSidTemp: string[]) => import("./src/types").IClassifyListType[];
|
|
1393
|
-
getConditionSid: (sid: string, conditionSidVal: string[], p
|
|
1193
|
+
getConditionSid: (sid: string, conditionSidVal: string[], p?: import("./src/types").ITreeDataType | undefined) => string[];
|
|
1394
1194
|
handleModeChange: () => void;
|
|
1395
1195
|
saveListPersonaSetting: (classificationIndexVal: number, classificationWidthVal?: number | undefined) => Promise<void>;
|
|
1396
1196
|
handleSettingShow: () => void;
|
|
@@ -1405,10 +1205,8 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1405
1205
|
updateTableCondiTion: () => Promise<void>;
|
|
1406
1206
|
saveGetTableCondiTionList: (options: any) => Promise<void>;
|
|
1407
1207
|
getTableCondiTionListRequest: (first?: boolean | undefined) => void;
|
|
1408
|
-
reloadList: (item: any) => void;
|
|
1409
1208
|
handleGetTableCondiTionList: (first?: boolean | undefined, conditionMapVal?: {}) => Promise<unknown>;
|
|
1410
1209
|
getTableCondiTionListNew: (tableIdVal: any) => Promise<any>;
|
|
1411
|
-
visibleDigital: (item: import("./src/types").ITreeDataType | import("./src/types").IClassifyListType) => number | boolean;
|
|
1412
1210
|
fmtChildName: (name: string, isPublic?: string | undefined) => string;
|
|
1413
1211
|
NIcon: any;
|
|
1414
1212
|
NTooltip: any;
|
|
@@ -1457,11 +1255,11 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1457
1255
|
default: boolean;
|
|
1458
1256
|
};
|
|
1459
1257
|
}>> & {
|
|
1460
|
-
onSetClassifyModal?: ((...args: any[]) => any) | undefined;
|
|
1461
1258
|
onCondiTionListInit?: ((...args: any[]) => any) | undefined;
|
|
1462
1259
|
onSaveGetTableCondiTionList?: ((...args: any[]) => any) | undefined;
|
|
1260
|
+
onSetClassifyModal?: ((...args: any[]) => any) | undefined;
|
|
1463
1261
|
}>>;
|
|
1464
|
-
emit: (event: "
|
|
1262
|
+
emit: (event: "CondiTionListInit" | "saveGetTableCondiTionList" | "setClassifyModal", ...args: any[]) => void;
|
|
1465
1263
|
$message: import("naive-ui").MessageApi;
|
|
1466
1264
|
handleGetConfigApi: (params: any, key: string, config: {} | undefined, filterApiConfigVal: any) => Promise<any>;
|
|
1467
1265
|
conditionList: import("vue").Ref<unknown[]>;
|
|
@@ -1614,48 +1412,6 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1614
1412
|
DocumentOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1615
1413
|
Brush: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1616
1414
|
ReorderTwo: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1617
|
-
SvgIcon: import("vue").DefineComponent<{
|
|
1618
|
-
iconClass: {
|
|
1619
|
-
type: StringConstructor;
|
|
1620
|
-
required: true;
|
|
1621
|
-
default: string;
|
|
1622
|
-
};
|
|
1623
|
-
title: {
|
|
1624
|
-
type: StringConstructor;
|
|
1625
|
-
required: false;
|
|
1626
|
-
default: string;
|
|
1627
|
-
};
|
|
1628
|
-
className: {
|
|
1629
|
-
type: StringConstructor;
|
|
1630
|
-
required: false;
|
|
1631
|
-
};
|
|
1632
|
-
}, {
|
|
1633
|
-
props: {
|
|
1634
|
-
iconClass: string;
|
|
1635
|
-
title: string;
|
|
1636
|
-
className?: string | undefined;
|
|
1637
|
-
};
|
|
1638
|
-
iconName: import("vue").ComputedRef<string>;
|
|
1639
|
-
svgClass: import("vue").ComputedRef<string>;
|
|
1640
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1641
|
-
iconClass: {
|
|
1642
|
-
type: StringConstructor;
|
|
1643
|
-
required: true;
|
|
1644
|
-
default: string;
|
|
1645
|
-
};
|
|
1646
|
-
title: {
|
|
1647
|
-
type: StringConstructor;
|
|
1648
|
-
required: false;
|
|
1649
|
-
default: string;
|
|
1650
|
-
};
|
|
1651
|
-
className: {
|
|
1652
|
-
type: StringConstructor;
|
|
1653
|
-
required: false;
|
|
1654
|
-
};
|
|
1655
|
-
}>>, {
|
|
1656
|
-
title: string;
|
|
1657
|
-
iconClass: string;
|
|
1658
|
-
}>;
|
|
1659
1415
|
Draggable: import("vue").DefineComponent<{
|
|
1660
1416
|
list: {
|
|
1661
1417
|
type: ArrayConstructor;
|
|
@@ -1963,48 +1719,6 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1963
1719
|
AddOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1964
1720
|
AddCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1965
1721
|
CloseOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1966
|
-
SvgIcon: import("vue").DefineComponent<{
|
|
1967
|
-
iconClass: {
|
|
1968
|
-
type: StringConstructor;
|
|
1969
|
-
required: true;
|
|
1970
|
-
default: string;
|
|
1971
|
-
};
|
|
1972
|
-
title: {
|
|
1973
|
-
type: StringConstructor;
|
|
1974
|
-
required: false;
|
|
1975
|
-
default: string;
|
|
1976
|
-
};
|
|
1977
|
-
className: {
|
|
1978
|
-
type: StringConstructor;
|
|
1979
|
-
required: false;
|
|
1980
|
-
};
|
|
1981
|
-
}, {
|
|
1982
|
-
props: {
|
|
1983
|
-
iconClass: string;
|
|
1984
|
-
title: string;
|
|
1985
|
-
className?: string | undefined;
|
|
1986
|
-
};
|
|
1987
|
-
iconName: import("vue").ComputedRef<string>;
|
|
1988
|
-
svgClass: import("vue").ComputedRef<string>;
|
|
1989
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1990
|
-
iconClass: {
|
|
1991
|
-
type: StringConstructor;
|
|
1992
|
-
required: true;
|
|
1993
|
-
default: string;
|
|
1994
|
-
};
|
|
1995
|
-
title: {
|
|
1996
|
-
type: StringConstructor;
|
|
1997
|
-
required: false;
|
|
1998
|
-
default: string;
|
|
1999
|
-
};
|
|
2000
|
-
className: {
|
|
2001
|
-
type: StringConstructor;
|
|
2002
|
-
required: false;
|
|
2003
|
-
};
|
|
2004
|
-
}>>, {
|
|
2005
|
-
title: string;
|
|
2006
|
-
iconClass: string;
|
|
2007
|
-
}>;
|
|
2008
1722
|
ValueCfg: import("vue").DefineComponent<{
|
|
2009
1723
|
paramCfg: {
|
|
2010
1724
|
type: ObjectConstructor;
|
|
@@ -2160,48 +1874,6 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2160
1874
|
showItemName: boolean;
|
|
2161
1875
|
hideAddBtn: boolean;
|
|
2162
1876
|
}>;
|
|
2163
|
-
SvgIcon: import("vue").DefineComponent<{
|
|
2164
|
-
iconClass: {
|
|
2165
|
-
type: StringConstructor;
|
|
2166
|
-
required: true;
|
|
2167
|
-
default: string;
|
|
2168
|
-
};
|
|
2169
|
-
title: {
|
|
2170
|
-
type: StringConstructor;
|
|
2171
|
-
required: false;
|
|
2172
|
-
default: string;
|
|
2173
|
-
};
|
|
2174
|
-
className: {
|
|
2175
|
-
type: StringConstructor;
|
|
2176
|
-
required: false;
|
|
2177
|
-
};
|
|
2178
|
-
}, {
|
|
2179
|
-
props: {
|
|
2180
|
-
iconClass: string;
|
|
2181
|
-
title: string;
|
|
2182
|
-
className?: string | undefined;
|
|
2183
|
-
};
|
|
2184
|
-
iconName: import("vue").ComputedRef<string>;
|
|
2185
|
-
svgClass: import("vue").ComputedRef<string>;
|
|
2186
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2187
|
-
iconClass: {
|
|
2188
|
-
type: StringConstructor;
|
|
2189
|
-
required: true;
|
|
2190
|
-
default: string;
|
|
2191
|
-
};
|
|
2192
|
-
title: {
|
|
2193
|
-
type: StringConstructor;
|
|
2194
|
-
required: false;
|
|
2195
|
-
default: string;
|
|
2196
|
-
};
|
|
2197
|
-
className: {
|
|
2198
|
-
type: StringConstructor;
|
|
2199
|
-
required: false;
|
|
2200
|
-
};
|
|
2201
|
-
}>>, {
|
|
2202
|
-
title: string;
|
|
2203
|
-
iconClass: string;
|
|
2204
|
-
}>;
|
|
2205
1877
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "cancelSaveAdd"[], "cancelSaveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2206
1878
|
visible: {
|
|
2207
1879
|
type: BooleanConstructor;
|
|
@@ -2232,7 +1904,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2232
1904
|
filterApiConfig: Record<string, any>;
|
|
2233
1905
|
conditionList: unknown[];
|
|
2234
1906
|
}>;
|
|
2235
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
1907
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("CondiTionListInit" | "saveGetTableCondiTionList" | "setClassifyModal")[], "CondiTionListInit" | "saveGetTableCondiTionList" | "setClassifyModal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2236
1908
|
searchFieldList: {
|
|
2237
1909
|
type: ArrayConstructor;
|
|
2238
1910
|
default: () => never[];
|
|
@@ -2251,9 +1923,9 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2251
1923
|
default: boolean;
|
|
2252
1924
|
};
|
|
2253
1925
|
}>> & {
|
|
2254
|
-
onSetClassifyModal?: ((...args: any[]) => any) | undefined;
|
|
2255
1926
|
onCondiTionListInit?: ((...args: any[]) => any) | undefined;
|
|
2256
1927
|
onSaveGetTableCondiTionList?: ((...args: any[]) => any) | undefined;
|
|
1928
|
+
onSetClassifyModal?: ((...args: any[]) => any) | undefined;
|
|
2257
1929
|
}, {
|
|
2258
1930
|
searchFieldList: unknown[];
|
|
2259
1931
|
filterApiConfig: Record<string, any>;
|
|
@@ -2264,67 +1936,30 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2264
1936
|
mounted(el: any, { value }: any): void;
|
|
2265
1937
|
beforeUnmount(el: any): void;
|
|
2266
1938
|
};
|
|
2267
|
-
|
|
2268
|
-
iconClass: {
|
|
2269
|
-
type: StringConstructor;
|
|
2270
|
-
required: true;
|
|
2271
|
-
default: string;
|
|
2272
|
-
};
|
|
2273
|
-
title: {
|
|
2274
|
-
type: StringConstructor;
|
|
2275
|
-
required: false;
|
|
2276
|
-
default: string;
|
|
2277
|
-
};
|
|
2278
|
-
className: {
|
|
2279
|
-
type: StringConstructor;
|
|
2280
|
-
required: false;
|
|
2281
|
-
};
|
|
2282
|
-
}, {
|
|
2283
|
-
props: {
|
|
2284
|
-
iconClass: string;
|
|
2285
|
-
title: string;
|
|
2286
|
-
className?: string | undefined;
|
|
2287
|
-
};
|
|
2288
|
-
iconName: import("vue").ComputedRef<string>;
|
|
2289
|
-
svgClass: import("vue").ComputedRef<string>;
|
|
2290
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2291
|
-
iconClass: {
|
|
2292
|
-
type: StringConstructor;
|
|
2293
|
-
required: true;
|
|
2294
|
-
default: string;
|
|
2295
|
-
};
|
|
2296
|
-
title: {
|
|
2297
|
-
type: StringConstructor;
|
|
2298
|
-
required: false;
|
|
2299
|
-
default: string;
|
|
2300
|
-
};
|
|
2301
|
-
className: {
|
|
2302
|
-
type: StringConstructor;
|
|
2303
|
-
required: false;
|
|
2304
|
-
};
|
|
2305
|
-
}>>, {
|
|
2306
|
-
title: string;
|
|
2307
|
-
iconClass: string;
|
|
2308
|
-
}>;
|
|
2309
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("changeSearch" | "setCurTreeData" | "setClassificationIndex" | "getClassification" | "reloadList" | "getQuickSearchListObj" | "setConditionMap" | "setClassifyModal")[], "changeSearch" | "setCurTreeData" | "setClassificationIndex" | "getClassification" | "reloadList" | "getQuickSearchListObj" | "setConditionMap" | "setClassifyModal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1939
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("changeSearch" | "setClassificationIndex" | "getQuickSearchListObj")[], "changeSearch" | "setClassificationIndex" | "getQuickSearchListObj", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2310
1940
|
tableId: {
|
|
2311
1941
|
type: StringConstructor;
|
|
2312
1942
|
default: string;
|
|
2313
1943
|
};
|
|
1944
|
+
searchFieldList: {
|
|
1945
|
+
type: import("vue").PropType<any[]>;
|
|
1946
|
+
default: () => never[];
|
|
1947
|
+
};
|
|
1948
|
+
conditionMap: {
|
|
1949
|
+
type: import("vue").PropType<import("./src/types").IConditionMapType>;
|
|
1950
|
+
default: () => void;
|
|
1951
|
+
};
|
|
2314
1952
|
conditionSid: {
|
|
2315
1953
|
type: import("vue").PropType<string[]>;
|
|
2316
1954
|
default: () => never[];
|
|
2317
1955
|
};
|
|
2318
1956
|
curClassificationIndex: {
|
|
2319
1957
|
type: NumberConstructor;
|
|
1958
|
+
default: number;
|
|
2320
1959
|
};
|
|
2321
1960
|
curClassificationWidth: {
|
|
2322
1961
|
type: NumberConstructor;
|
|
2323
1962
|
};
|
|
2324
|
-
conditionType: {
|
|
2325
|
-
type: StringConstructor;
|
|
2326
|
-
default: string;
|
|
2327
|
-
};
|
|
2328
1963
|
hideConditionChangeBtn: {
|
|
2329
1964
|
type: NumberConstructor;
|
|
2330
1965
|
default: number;
|
|
@@ -2337,51 +1972,28 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2337
1972
|
type: NumberConstructor;
|
|
2338
1973
|
default: number;
|
|
2339
1974
|
};
|
|
2340
|
-
countCondition: {
|
|
2341
|
-
type: NumberConstructor;
|
|
2342
|
-
default: number;
|
|
2343
|
-
};
|
|
2344
|
-
countTabCondition: {
|
|
2345
|
-
type: NumberConstructor;
|
|
2346
|
-
default: number;
|
|
2347
|
-
};
|
|
2348
1975
|
isShowResetButton: {
|
|
2349
1976
|
type: BooleanConstructor;
|
|
2350
1977
|
default: boolean;
|
|
2351
1978
|
};
|
|
2352
|
-
conditionMap: {
|
|
2353
|
-
type: import("vue").PropType<import("./src/types").IConditionMapType>;
|
|
2354
|
-
default: () => void;
|
|
2355
|
-
};
|
|
2356
1979
|
filterApiConfig: {
|
|
2357
1980
|
type: ObjectConstructor;
|
|
2358
1981
|
default: () => {};
|
|
2359
1982
|
};
|
|
2360
|
-
searchFieldList: {
|
|
2361
|
-
type: import("vue").PropType<any[]>;
|
|
2362
|
-
default: () => never[];
|
|
2363
|
-
};
|
|
2364
1983
|
}>> & {
|
|
2365
1984
|
onChangeSearch?: ((...args: any[]) => any) | undefined;
|
|
2366
|
-
onSetCurTreeData?: ((...args: any[]) => any) | undefined;
|
|
2367
1985
|
onSetClassificationIndex?: ((...args: any[]) => any) | undefined;
|
|
2368
|
-
onGetClassification?: ((...args: any[]) => any) | undefined;
|
|
2369
|
-
onReloadList?: ((...args: any[]) => any) | undefined;
|
|
2370
1986
|
onGetQuickSearchListObj?: ((...args: any[]) => any) | undefined;
|
|
2371
|
-
onSetConditionMap?: ((...args: any[]) => any) | undefined;
|
|
2372
|
-
onSetClassifyModal?: ((...args: any[]) => any) | undefined;
|
|
2373
1987
|
}, {
|
|
2374
1988
|
searchFieldList: any[];
|
|
2375
1989
|
tableId: string;
|
|
2376
1990
|
filterApiConfig: Record<string, any>;
|
|
1991
|
+
conditionMap: import("./src/types").IConditionMapType;
|
|
2377
1992
|
conditionSid: string[];
|
|
2378
|
-
|
|
1993
|
+
curClassificationIndex: number;
|
|
2379
1994
|
hideConditionChangeBtn: number;
|
|
2380
1995
|
hideConditionChangeSetting: number;
|
|
2381
1996
|
hideClearConditionChange: number;
|
|
2382
|
-
countCondition: number;
|
|
2383
|
-
countTabCondition: number;
|
|
2384
1997
|
isShowResetButton: boolean;
|
|
2385
|
-
conditionMap: import("./src/types").IConditionMapType;
|
|
2386
1998
|
}>>;
|
|
2387
1999
|
export { CBaseSearch, CQuickSearch, CClassification };
|