cnhis-design-vue 3.1.41-release.1 → 3.1.41-release.3
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/button-print/src/utils/print.js +1 -1
- package/es/components/fabric-chart/src/utils/index.d.ts +6823 -0
- package/es/components/form-config/index.d.ts +7 -0
- package/es/components/form-config/src/FormConfig.vue.d.ts +7 -0
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +3 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +4 -0
- package/es/components/form-render/index.d.ts +3 -0
- package/es/components/form-render/src/FormRender.vue.d.ts +3 -0
- package/es/components/form-render/src/FormRender.vue.js +1 -1
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +3 -0
- package/es/components/form-render/src/components/renderer/date.d.ts +2 -0
- package/es/components/form-render/src/components/renderer/formItem.d.ts +7 -0
- package/es/components/form-render/src/components/renderer/formItem.js +1 -1
- package/es/components/form-render/src/components/renderer/select.d.ts +3 -0
- package/es/components/form-render/src/components/renderer/select.js +1 -1
- package/es/components/form-render/src/constants/index.d.ts +2 -0
- package/es/components/form-render/src/constants/index.js +1 -1
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
- package/es/components/form-render/src/hooks/useFormEvent.js +1 -1
- package/es/components/form-render/src/hooks/useFormGraph.d.ts +6 -0
- package/es/components/form-render/src/hooks/useFormGraph.js +1 -0
- package/es/components/form-render/src/types/fieldItem.d.ts +3 -1
- package/es/components/index.css +1 -1
- package/es/components/info-header/src/InfoHeader.vue.js +1 -1
- package/es/components/scale-view/src/ScaleView.vue.d.ts +3 -0
- package/es/components/scale-view/src/ScaleView.vue.js +1 -1
- package/es/components/shortcut-setter/index.d.ts +4 -0
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +4 -0
- package/es/components/table-filter/index.d.ts +418 -251
- package/es/components/table-filter/src/base-search-com/BaseSearch.vue.d.ts +46 -260
- 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 +388 -4
- package/es/components/table-filter/src/classification/Classification-com.vue.js +1 -1
- package/es/components/table-filter/src/classification/search-class-name.vue.d.ts +19 -0
- package/es/components/table-filter/src/classification/search-class-name.vue.js +1 -1
- package/es/components/table-filter/src/classification/search-professional-model.vue.d.ts +356 -3
- package/es/components/table-filter/src/classification/search-professional-model.vue.js +1 -1
- package/es/components/table-filter/src/components/classify-filter/hooks/useDisplayCategory.d.ts +1 -1
- package/es/components/table-filter/src/components/classify-filter/hooks/useDisplayCategory.js +1 -1
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +27 -0
- package/es/components/table-filter/src/components/classify-filter/index.vue.js +1 -1
- package/es/components/table-filter/src/components/out-quick-search/out-quick-search.vue.js +1 -1
- package/es/components/table-filter/src/components/render-widget/index.vue.js +1 -1
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.js +1 -1
- package/es/components/table-filter/src/components/search-filter/SearchFilter.vue.d.ts +28 -1
- package/es/components/table-filter/src/components/search-modal/set-classification.vue.d.ts +28 -1
- package/es/components/table-filter/src/hooks/useAdvanced.d.ts +1 -1
- package/es/components/table-filter/src/hooks/useAdvanced.js +1 -1
- package/es/components/table-filter/src/hooks/useMixins.d.ts +2 -1
- package/es/components/table-filter/src/hooks/useRenderWidget.js +1 -1
- package/es/components/table-filter/src/quick-search/QuickSearch.vue.d.ts +3 -4
- package/es/components/table-filter/style/index.css +1 -1
- 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 +64 -65
|
@@ -15,7 +15,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
15
15
|
type: StringConstructor;
|
|
16
16
|
};
|
|
17
17
|
onSearch: {
|
|
18
|
-
type:
|
|
18
|
+
type: any;
|
|
19
19
|
};
|
|
20
20
|
rowBtnList: {
|
|
21
21
|
type: import("vue").PropType<import("./src/types").IbtnType[]>;
|
|
@@ -46,7 +46,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
46
46
|
default: () => {};
|
|
47
47
|
};
|
|
48
48
|
viewList: {
|
|
49
|
-
type:
|
|
49
|
+
type: any;
|
|
50
50
|
default: () => never[];
|
|
51
51
|
};
|
|
52
52
|
TypeOfDisplay: {
|
|
@@ -70,7 +70,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
70
70
|
type: ObjectConstructor;
|
|
71
71
|
};
|
|
72
72
|
onRelatedSearch: {
|
|
73
|
-
type:
|
|
73
|
+
type: any;
|
|
74
74
|
};
|
|
75
75
|
showResetFilterBtn: {
|
|
76
76
|
type: BooleanConstructor;
|
|
@@ -204,7 +204,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
204
204
|
'border-color': string;
|
|
205
205
|
color?: undefined;
|
|
206
206
|
};
|
|
207
|
-
getRowOperatorIdSetting(row: any, btn: import("
|
|
207
|
+
getRowOperatorIdSetting(row: any, btn: import("../../../es/shared/types").AnyObject): any;
|
|
208
208
|
getAlphafloat(a: any, alpha?: any): number;
|
|
209
209
|
hexToRGBA(hex: string, alpha?: any): "" | {
|
|
210
210
|
r: any;
|
|
@@ -272,7 +272,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
272
272
|
type: StringConstructor;
|
|
273
273
|
};
|
|
274
274
|
onSearch: {
|
|
275
|
-
type:
|
|
275
|
+
type: any;
|
|
276
276
|
};
|
|
277
277
|
rowBtnList: {
|
|
278
278
|
type: import("vue").PropType<import("./src/types").IbtnType[]>;
|
|
@@ -303,7 +303,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
303
303
|
default: () => {};
|
|
304
304
|
};
|
|
305
305
|
viewList: {
|
|
306
|
-
type:
|
|
306
|
+
type: any;
|
|
307
307
|
default: () => never[];
|
|
308
308
|
};
|
|
309
309
|
TypeOfDisplay: {
|
|
@@ -327,7 +327,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
327
327
|
type: ObjectConstructor;
|
|
328
328
|
};
|
|
329
329
|
onRelatedSearch: {
|
|
330
|
-
type:
|
|
330
|
+
type: any;
|
|
331
331
|
};
|
|
332
332
|
showResetFilterBtn: {
|
|
333
333
|
type: BooleanConstructor;
|
|
@@ -532,171 +532,9 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
532
532
|
updatedTime?: string | undefined;
|
|
533
533
|
__printConfig?: any;
|
|
534
534
|
}[]>;
|
|
535
|
-
rowFoldBtnList: import("vue").Ref<
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
icon: string;
|
|
539
|
-
id: string;
|
|
540
|
-
isShow: number;
|
|
541
|
-
name: string;
|
|
542
|
-
setting: string;
|
|
543
|
-
settingList: string;
|
|
544
|
-
settingObj: {
|
|
545
|
-
obj_id: string;
|
|
546
|
-
trigger_type: string;
|
|
547
|
-
isTips: string;
|
|
548
|
-
trigger_id?: string | undefined;
|
|
549
|
-
trigger_name?: string | undefined;
|
|
550
|
-
params?: {
|
|
551
|
-
p_name: string;
|
|
552
|
-
p_value: string;
|
|
553
|
-
}[] | undefined;
|
|
554
|
-
editAllRow?: number | undefined;
|
|
555
|
-
tipsMsg?: any;
|
|
556
|
-
newTitle?: string | undefined;
|
|
557
|
-
display?: string | undefined;
|
|
558
|
-
importComponentId?: string | undefined;
|
|
559
|
-
importComponentName?: string | undefined;
|
|
560
|
-
prevStepSetting?: any;
|
|
561
|
-
linkShowType?: string | undefined;
|
|
562
|
-
conditionExpression?: string | undefined;
|
|
563
|
-
conditionParams?: any;
|
|
564
|
-
}[];
|
|
565
|
-
showStyle: string;
|
|
566
|
-
sid: string;
|
|
567
|
-
tableId: string;
|
|
568
|
-
toggle: string;
|
|
569
|
-
type: string;
|
|
570
|
-
alias?: string | undefined;
|
|
571
|
-
buttonRemark?: string | undefined;
|
|
572
|
-
buttonGroup?: any;
|
|
573
|
-
canHandleUniline?: boolean | undefined;
|
|
574
|
-
chooseTwoData?: string | undefined;
|
|
575
|
-
createdTime?: string | undefined;
|
|
576
|
-
dataSource?: string | undefined;
|
|
577
|
-
isButtonGroup?: boolean | undefined;
|
|
578
|
-
isHide?: boolean | undefined;
|
|
579
|
-
isImportGuage?: boolean | undefined;
|
|
580
|
-
iconSetting?: string | undefined;
|
|
581
|
-
isShowFoldGroupBtn?: boolean | undefined;
|
|
582
|
-
isVisible?: boolean | undefined;
|
|
583
|
-
printType?: any;
|
|
584
|
-
quoteSetting?: string | undefined;
|
|
585
|
-
showStyleSetting?: string | undefined;
|
|
586
|
-
strategy?: string | undefined;
|
|
587
|
-
updatedTime?: string | undefined;
|
|
588
|
-
__printConfig?: any;
|
|
589
|
-
}[]>;
|
|
590
|
-
rowPrintBtnList: import("vue").Ref<{
|
|
591
|
-
buttonType: string;
|
|
592
|
-
color: string;
|
|
593
|
-
icon: string;
|
|
594
|
-
id: string;
|
|
595
|
-
isShow: number;
|
|
596
|
-
name: string;
|
|
597
|
-
setting: string;
|
|
598
|
-
settingList: string;
|
|
599
|
-
settingObj: {
|
|
600
|
-
obj_id: string;
|
|
601
|
-
trigger_type: string;
|
|
602
|
-
isTips: string;
|
|
603
|
-
trigger_id?: string | undefined;
|
|
604
|
-
trigger_name?: string | undefined;
|
|
605
|
-
params?: {
|
|
606
|
-
p_name: string;
|
|
607
|
-
p_value: string;
|
|
608
|
-
}[] | undefined;
|
|
609
|
-
editAllRow?: number | undefined;
|
|
610
|
-
tipsMsg?: any;
|
|
611
|
-
newTitle?: string | undefined;
|
|
612
|
-
display?: string | undefined;
|
|
613
|
-
importComponentId?: string | undefined;
|
|
614
|
-
importComponentName?: string | undefined;
|
|
615
|
-
prevStepSetting?: any;
|
|
616
|
-
linkShowType?: string | undefined;
|
|
617
|
-
conditionExpression?: string | undefined;
|
|
618
|
-
conditionParams?: any;
|
|
619
|
-
}[];
|
|
620
|
-
showStyle: string;
|
|
621
|
-
sid: string;
|
|
622
|
-
tableId: string;
|
|
623
|
-
toggle: string;
|
|
624
|
-
type: string;
|
|
625
|
-
alias?: string | undefined;
|
|
626
|
-
buttonRemark?: string | undefined;
|
|
627
|
-
buttonGroup?: any;
|
|
628
|
-
canHandleUniline?: boolean | undefined;
|
|
629
|
-
chooseTwoData?: string | undefined;
|
|
630
|
-
createdTime?: string | undefined;
|
|
631
|
-
dataSource?: string | undefined;
|
|
632
|
-
isButtonGroup?: boolean | undefined;
|
|
633
|
-
isHide?: boolean | undefined;
|
|
634
|
-
isImportGuage?: boolean | undefined;
|
|
635
|
-
iconSetting?: string | undefined;
|
|
636
|
-
isShowFoldGroupBtn?: boolean | undefined;
|
|
637
|
-
isVisible?: boolean | undefined;
|
|
638
|
-
printType?: any;
|
|
639
|
-
quoteSetting?: string | undefined;
|
|
640
|
-
showStyleSetting?: string | undefined;
|
|
641
|
-
strategy?: string | undefined;
|
|
642
|
-
updatedTime?: string | undefined;
|
|
643
|
-
__printConfig?: any;
|
|
644
|
-
}[]>;
|
|
645
|
-
rowFoldHideBtnList: import("vue").Ref<{
|
|
646
|
-
buttonType: string;
|
|
647
|
-
color: string;
|
|
648
|
-
icon: string;
|
|
649
|
-
id: string;
|
|
650
|
-
isShow: number;
|
|
651
|
-
name: string;
|
|
652
|
-
setting: string;
|
|
653
|
-
settingList: string;
|
|
654
|
-
settingObj: {
|
|
655
|
-
obj_id: string;
|
|
656
|
-
trigger_type: string;
|
|
657
|
-
isTips: string;
|
|
658
|
-
trigger_id?: string | undefined;
|
|
659
|
-
trigger_name?: string | undefined;
|
|
660
|
-
params?: {
|
|
661
|
-
p_name: string;
|
|
662
|
-
p_value: string;
|
|
663
|
-
}[] | undefined;
|
|
664
|
-
editAllRow?: number | undefined;
|
|
665
|
-
tipsMsg?: any;
|
|
666
|
-
newTitle?: string | undefined;
|
|
667
|
-
display?: string | undefined;
|
|
668
|
-
importComponentId?: string | undefined;
|
|
669
|
-
importComponentName?: string | undefined;
|
|
670
|
-
prevStepSetting?: any;
|
|
671
|
-
linkShowType?: string | undefined;
|
|
672
|
-
conditionExpression?: string | undefined;
|
|
673
|
-
conditionParams?: any;
|
|
674
|
-
}[];
|
|
675
|
-
showStyle: string;
|
|
676
|
-
sid: string;
|
|
677
|
-
tableId: string;
|
|
678
|
-
toggle: string;
|
|
679
|
-
type: string;
|
|
680
|
-
alias?: string | undefined;
|
|
681
|
-
buttonRemark?: string | undefined;
|
|
682
|
-
buttonGroup?: any;
|
|
683
|
-
canHandleUniline?: boolean | undefined;
|
|
684
|
-
chooseTwoData?: string | undefined;
|
|
685
|
-
createdTime?: string | undefined;
|
|
686
|
-
dataSource?: string | undefined;
|
|
687
|
-
isButtonGroup?: boolean | undefined;
|
|
688
|
-
isHide?: boolean | undefined;
|
|
689
|
-
isImportGuage?: boolean | undefined;
|
|
690
|
-
iconSetting?: string | undefined;
|
|
691
|
-
isShowFoldGroupBtn?: boolean | undefined;
|
|
692
|
-
isVisible?: boolean | undefined;
|
|
693
|
-
printType?: any;
|
|
694
|
-
quoteSetting?: string | undefined;
|
|
695
|
-
showStyleSetting?: string | undefined;
|
|
696
|
-
strategy?: string | undefined;
|
|
697
|
-
updatedTime?: string | undefined;
|
|
698
|
-
__printConfig?: any;
|
|
699
|
-
}[]>;
|
|
535
|
+
rowFoldBtnList: import("vue").Ref<import("../../../es/shared/types").AnyObject[]>;
|
|
536
|
+
rowPrintBtnList: import("vue").Ref<import("../../../es/shared/types").AnyObject[]>;
|
|
537
|
+
rowFoldHideBtnList: import("vue").Ref<import("../../../es/shared/types").AnyObject[]>;
|
|
700
538
|
rowFoldHideBtnListObj: import("vue").Ref<import("./src/types").IrowBtnListObj | undefined>;
|
|
701
539
|
batchRelationBtnIds: import("vue").Ref<string[]>;
|
|
702
540
|
relationBtnBatchBtnIds: import("vue").Ref<string[]>;
|
|
@@ -714,61 +552,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
714
552
|
downloadDropdownWidth: import("vue").Ref<number>;
|
|
715
553
|
diffWidth: import("vue").Ref<number>;
|
|
716
554
|
resizeFlag: import("vue").Ref<boolean>;
|
|
717
|
-
rowTileBtnListTree: import("vue").Ref<
|
|
718
|
-
buttonType: string;
|
|
719
|
-
color: string;
|
|
720
|
-
icon: string;
|
|
721
|
-
id: string;
|
|
722
|
-
isShow: number;
|
|
723
|
-
name: string;
|
|
724
|
-
setting: string;
|
|
725
|
-
settingList: string;
|
|
726
|
-
settingObj: {
|
|
727
|
-
obj_id: string;
|
|
728
|
-
trigger_type: string;
|
|
729
|
-
isTips: string;
|
|
730
|
-
trigger_id?: string | undefined;
|
|
731
|
-
trigger_name?: string | undefined;
|
|
732
|
-
params?: {
|
|
733
|
-
p_name: string;
|
|
734
|
-
p_value: string;
|
|
735
|
-
}[] | undefined;
|
|
736
|
-
editAllRow?: number | undefined;
|
|
737
|
-
tipsMsg?: any;
|
|
738
|
-
newTitle?: string | undefined;
|
|
739
|
-
display?: string | undefined;
|
|
740
|
-
importComponentId?: string | undefined;
|
|
741
|
-
importComponentName?: string | undefined;
|
|
742
|
-
prevStepSetting?: any;
|
|
743
|
-
linkShowType?: string | undefined;
|
|
744
|
-
conditionExpression?: string | undefined;
|
|
745
|
-
conditionParams?: any;
|
|
746
|
-
}[];
|
|
747
|
-
showStyle: string;
|
|
748
|
-
sid: string;
|
|
749
|
-
tableId: string;
|
|
750
|
-
toggle: string;
|
|
751
|
-
type: string;
|
|
752
|
-
alias?: string | undefined;
|
|
753
|
-
buttonRemark?: string | undefined;
|
|
754
|
-
buttonGroup?: any;
|
|
755
|
-
canHandleUniline?: boolean | undefined;
|
|
756
|
-
chooseTwoData?: string | undefined;
|
|
757
|
-
createdTime?: string | undefined;
|
|
758
|
-
dataSource?: string | undefined;
|
|
759
|
-
isButtonGroup?: boolean | undefined;
|
|
760
|
-
isHide?: boolean | undefined;
|
|
761
|
-
isImportGuage?: boolean | undefined;
|
|
762
|
-
iconSetting?: string | undefined;
|
|
763
|
-
isShowFoldGroupBtn?: boolean | undefined;
|
|
764
|
-
isVisible?: boolean | undefined;
|
|
765
|
-
printType?: any;
|
|
766
|
-
quoteSetting?: string | undefined;
|
|
767
|
-
showStyleSetting?: string | undefined;
|
|
768
|
-
strategy?: string | undefined;
|
|
769
|
-
updatedTime?: string | undefined;
|
|
770
|
-
__printConfig?: any;
|
|
771
|
-
}[]>;
|
|
555
|
+
rowTileBtnListTree: import("vue").Ref<import("../../../es/shared/types").AnyObject[]>;
|
|
772
556
|
outSearchFieldList: import("vue").Ref<{
|
|
773
557
|
columnName: string;
|
|
774
558
|
title: string;
|
|
@@ -970,11 +754,11 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
970
754
|
showPlaceholderPrefix: import("vue").Ref<boolean>;
|
|
971
755
|
isOrgAdmin: import("vue").ComputedRef<boolean>;
|
|
972
756
|
currentValue: import("vue").ComputedRef<string | undefined>;
|
|
973
|
-
allBtn: import("vue").ComputedRef<import("
|
|
757
|
+
allBtn: import("vue").ComputedRef<import("../../../es/shared/types").AnyObject[]>;
|
|
974
758
|
isButtonFolding: import("vue").ComputedRef<boolean>;
|
|
975
759
|
isShowSettingBtn: import("vue").ComputedRef<boolean | undefined>;
|
|
976
760
|
showDownCurSelectData: import("vue").ComputedRef<any>;
|
|
977
|
-
showRowFoldBtnList: import("vue").ComputedRef<(list: import("
|
|
761
|
+
showRowFoldBtnList: import("vue").ComputedRef<(list: import("../../../es/shared/types").AnyObject[], key?: string | undefined) => boolean>;
|
|
978
762
|
initPageResize: import("vue").ComputedRef<{
|
|
979
763
|
showSettings: import("./src/types").IsettingsType;
|
|
980
764
|
TypeOfDisplay: string;
|
|
@@ -986,9 +770,9 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
986
770
|
defaultValue: import("moment").Moment[];
|
|
987
771
|
}>;
|
|
988
772
|
isShowGroupBtn: import("vue").ComputedRef<boolean>;
|
|
989
|
-
showLi: import("vue").ComputedRef<(item: import("
|
|
990
|
-
showLiAdd: import("vue").ComputedRef<(b: import("
|
|
991
|
-
showLiFold: import("vue").ComputedRef<(b: import("
|
|
773
|
+
showLi: import("vue").ComputedRef<(item: import("../../../es/shared/types").AnyObject) => any>;
|
|
774
|
+
showLiAdd: import("vue").ComputedRef<(b: import("../../../es/shared/types").AnyObject) => any>;
|
|
775
|
+
showLiFold: import("vue").ComputedRef<(b: import("../../../es/shared/types").AnyObject) => any>;
|
|
992
776
|
getIsTile: import("vue").ComputedRef<any>;
|
|
993
777
|
selectRowObj: import("vue").ComputedRef<any>;
|
|
994
778
|
isInlineOperating: import("vue").ComputedRef<any>;
|
|
@@ -1023,9 +807,9 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1023
807
|
editTableGetConObj: () => any;
|
|
1024
808
|
clearData: () => void;
|
|
1025
809
|
handlePrint: (clickBtn: any, btn: import("./src/types").IbtnType, type: any, j: number) => void;
|
|
1026
|
-
showDrawer: (btn: import("
|
|
1027
|
-
getUnilineBtn: (BatchBtn: import("
|
|
1028
|
-
handleBtnEvent: (btn: import("
|
|
810
|
+
showDrawer: (btn: import("../../../es/shared/types").AnyObject, j: number) => void;
|
|
811
|
+
getUnilineBtn: (BatchBtn: import("../../../es/shared/types").AnyObject) => any;
|
|
812
|
+
handleBtnEvent: (btn: import("../../../es/shared/types").AnyObject, j: number) => void;
|
|
1029
813
|
updateTableCondiTion: () => Promise<void>;
|
|
1030
814
|
CondiTionListInit: () => Promise<void>;
|
|
1031
815
|
saveGetTableCondiTionList: (options: any) => Promise<void>;
|
|
@@ -1033,9 +817,9 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1033
817
|
changeSearchTile: (val: boolean) => void;
|
|
1034
818
|
openSetting: () => void;
|
|
1035
819
|
reloadList: (item: string) => void;
|
|
1036
|
-
clickBtn: (data: any, item: import("
|
|
1037
|
-
handleDropdown: (key: string, item: import("
|
|
1038
|
-
handlerOperate: (key: string, item: import("
|
|
820
|
+
clickBtn: (data: any, item: import("../../../es/shared/types").AnyObject, index: number, skip: boolean, j: number) => void;
|
|
821
|
+
handleDropdown: (key: string, item: import("../../../es/shared/types").AnyObject) => void;
|
|
822
|
+
handlerOperate: (key: string, item: import("../../../es/shared/types").AnyObject) => void;
|
|
1039
823
|
handlerBtnlist: (key: string, item: import("./src/types").IbtnType, list: import("./src/types").IbtnType[]) => void;
|
|
1040
824
|
clickGroupBtn: (btn: import("./src/types").IbtnType, j: number) => void;
|
|
1041
825
|
handlerSetting: () => void;
|
|
@@ -1047,14 +831,14 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1047
831
|
handleButtonGroup: (buttonList: import("./src/types").IbtnType[]) => void;
|
|
1048
832
|
formatRowBtnList: () => Promise<void>;
|
|
1049
833
|
hideInlineOperationBtn: () => void;
|
|
1050
|
-
isPrintBtn: (btn: import("
|
|
834
|
+
isPrintBtn: (btn: import("../../../es/shared/types").AnyObject) => boolean;
|
|
1051
835
|
handleTileBtnWidth: () => void;
|
|
1052
836
|
resetCheckStatus: () => void;
|
|
1053
837
|
handleReset: () => void;
|
|
1054
838
|
changeCardNewBatch: (val: boolean) => void;
|
|
1055
839
|
handleUploadChange: (info: any) => void;
|
|
1056
840
|
handleOtherConfigInit: () => void;
|
|
1057
|
-
handleAddType: (key: string, btn: import("
|
|
841
|
+
handleAddType: (key: string, btn: import("../../../es/shared/types").AnyObject) => void;
|
|
1058
842
|
getRowTileBtnList: (btnList: import("./src/types").IbtnType[]) => void;
|
|
1059
843
|
relatedSearchInputBlur: () => void;
|
|
1060
844
|
handleRequestedLabel: (v: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
@@ -1063,8 +847,8 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1063
847
|
outFilterChange: (config?: {}) => void;
|
|
1064
848
|
getConObj: (arr: any) => any;
|
|
1065
849
|
getConObjParams: () => any;
|
|
1066
|
-
visibleBtn: (btn: import("
|
|
1067
|
-
getPrintBtnParams: (btn: import("
|
|
850
|
+
visibleBtn: (btn: import("../../../es/shared/types").AnyObject) => boolean;
|
|
851
|
+
getPrintBtnParams: (btn: import("../../../es/shared/types").AnyObject) => any;
|
|
1068
852
|
setPrintNumberToBtnList: (printNumberList?: import("./src/types").IPrintType[], btnList?: import("./src/types").IbtnType[]) => import("./src/types").IbtnType[];
|
|
1069
853
|
getPrintNumber: (list: import("./src/types").IbtnType[]) => Promise<any>;
|
|
1070
854
|
receivePrintSuccessAboutPrint: (res: any, info: import("./src/types").IPrintAboutType) => Promise<void>;
|
|
@@ -1072,7 +856,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1072
856
|
receivePrintError: (res: any) => void;
|
|
1073
857
|
resetAllPrintFnWatch: () => void;
|
|
1074
858
|
printBtnPrevFnWatchSetTimeout: (reject: any) => void;
|
|
1075
|
-
printBtnPrevFn: (clickBtn: any, btn: import("
|
|
859
|
+
printBtnPrevFn: (clickBtn: any, btn: import("../../../es/shared/types").AnyObject, type: number, j: number) => Promise<unknown>;
|
|
1076
860
|
inlineEditClick: () => void;
|
|
1077
861
|
handleGetOutSearchInitValue: () => any;
|
|
1078
862
|
getFiledRandom_key: (el: import("./src/types").ISearchType) => string;
|
|
@@ -3570,7 +3354,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3570
3354
|
type: StringConstructor;
|
|
3571
3355
|
};
|
|
3572
3356
|
onSearch: {
|
|
3573
|
-
type:
|
|
3357
|
+
type: any;
|
|
3574
3358
|
};
|
|
3575
3359
|
rowBtnList: {
|
|
3576
3360
|
type: import("vue").PropType<import("./src/types").IbtnType[]>;
|
|
@@ -3601,7 +3385,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3601
3385
|
default: () => {};
|
|
3602
3386
|
};
|
|
3603
3387
|
viewList: {
|
|
3604
|
-
type:
|
|
3388
|
+
type: any;
|
|
3605
3389
|
default: () => never[];
|
|
3606
3390
|
};
|
|
3607
3391
|
TypeOfDisplay: {
|
|
@@ -3625,7 +3409,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3625
3409
|
type: ObjectConstructor;
|
|
3626
3410
|
};
|
|
3627
3411
|
onRelatedSearch: {
|
|
3628
|
-
type:
|
|
3412
|
+
type: any;
|
|
3629
3413
|
};
|
|
3630
3414
|
showResetFilterBtn: {
|
|
3631
3415
|
type: BooleanConstructor;
|
|
@@ -3771,15 +3555,17 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3771
3555
|
isBatchSelect: string | number | boolean;
|
|
3772
3556
|
width: string;
|
|
3773
3557
|
searchInputWidth: number;
|
|
3558
|
+
onSearch: any;
|
|
3774
3559
|
rowBtnList: import("./src/types").IbtnType[];
|
|
3775
3560
|
paramsData: any;
|
|
3776
3561
|
searchFieldList: import("./src/types").ISearchType[];
|
|
3777
3562
|
searchFieldLimit: Record<string, any>;
|
|
3778
|
-
viewList:
|
|
3563
|
+
viewList: any;
|
|
3779
3564
|
TypeOfDisplay: string;
|
|
3780
3565
|
tableAllCheck: boolean;
|
|
3781
3566
|
editTableSource: string;
|
|
3782
3567
|
showRelatedTreeBtn: boolean;
|
|
3568
|
+
onRelatedSearch: any;
|
|
3783
3569
|
showResetFilterBtn: boolean;
|
|
3784
3570
|
qqConObjCount: number;
|
|
3785
3571
|
tabConditionNumObj: Record<string, any>;
|
|
@@ -6055,6 +5841,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6055
5841
|
ChevronForward: 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<{}>>, {}>;
|
|
6056
5842
|
Close: 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<{}>>, {}>;
|
|
6057
5843
|
searchProfessionalModel: import("vue").DefineComponent<{
|
|
5844
|
+
tableDataType: {
|
|
5845
|
+
type: StringConstructor;
|
|
5846
|
+
default: string;
|
|
5847
|
+
};
|
|
6058
5848
|
originConditionList: {
|
|
6059
5849
|
type: import("vue").PropType<import("./src/types").IClassifyListType[]>;
|
|
6060
5850
|
default: () => never[];
|
|
@@ -6071,9 +5861,18 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6071
5861
|
type: import("vue").PropType<import("./src/types").ITreeDataType[]>;
|
|
6072
5862
|
default: () => never[];
|
|
6073
5863
|
};
|
|
5864
|
+
filterApiConfig: {
|
|
5865
|
+
type: ObjectConstructor;
|
|
5866
|
+
default: () => {};
|
|
5867
|
+
};
|
|
6074
5868
|
}, {
|
|
6075
5869
|
validConObj: (conObj: any, fieldList: import("./src/types").ISearchType[], fieldSearchLimit: any) => any;
|
|
5870
|
+
handleGetConfigApi: (params: any, key: string, config: {} | undefined, filterApiConfigVal: any) => Promise<any>;
|
|
6076
5871
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
5872
|
+
tableDataType: {
|
|
5873
|
+
type: StringConstructor;
|
|
5874
|
+
default: string;
|
|
5875
|
+
};
|
|
6077
5876
|
originConditionList: {
|
|
6078
5877
|
type: import("vue").PropType<import("./src/types").IClassifyListType[]>;
|
|
6079
5878
|
default: () => never[];
|
|
@@ -6090,6 +5889,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6090
5889
|
type: import("vue").PropType<import("./src/types").ITreeDataType[]>;
|
|
6091
5890
|
default: () => never[];
|
|
6092
5891
|
};
|
|
5892
|
+
filterApiConfig: {
|
|
5893
|
+
type: ObjectConstructor;
|
|
5894
|
+
default: () => {};
|
|
5895
|
+
};
|
|
6093
5896
|
}>> & {
|
|
6094
5897
|
onChangeSearch?: ((...args: any[]) => any) | undefined;
|
|
6095
5898
|
onChangeShowName?: ((...args: any[]) => any) | undefined;
|
|
@@ -6101,8 +5904,9 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6101
5904
|
instance: import("axios").AxiosInstance;
|
|
6102
5905
|
$message: import("naive-ui").MessageApi;
|
|
6103
5906
|
comWrap: any;
|
|
6104
|
-
|
|
6105
|
-
|
|
5907
|
+
conditionApiRef: any;
|
|
5908
|
+
conditionSqlRef: any;
|
|
5909
|
+
searchClsName: any;
|
|
6106
5910
|
actionList_prop: import("vue").Ref<import("./src/types").IClassifyListType | undefined>;
|
|
6107
5911
|
conOjbConfig: import("vue").Ref<import("./src/types").IClassifyListType | undefined>;
|
|
6108
5912
|
showInnerModal: import("vue").Ref<boolean>;
|
|
@@ -6118,6 +5922,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6118
5922
|
conObjLen: import("vue").ComputedRef<any>;
|
|
6119
5923
|
showConditionList: import("vue").ComputedRef<import("./src/types").IClassifyListType[]>;
|
|
6120
5924
|
saveBtnName: import("vue").ComputedRef<"保存模板" | "另存为模板">;
|
|
5925
|
+
isApiFilter: import("vue").ComputedRef<boolean>;
|
|
6121
5926
|
init: () => void;
|
|
6122
5927
|
handleAddCondition: () => void;
|
|
6123
5928
|
handleSearch: () => void;
|
|
@@ -6137,7 +5942,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6137
5942
|
handleFiltrationCancel: () => void;
|
|
6138
5943
|
handleConditionFiltration: () => void;
|
|
6139
5944
|
onSearch: () => void;
|
|
6140
|
-
handleSaveAdd: (params: import("./src/types").ISaveType) => void
|
|
5945
|
+
handleSaveAdd: (params: import("./src/types").ISaveType) => Promise<void>;
|
|
6141
5946
|
NIcon: any;
|
|
6142
5947
|
NButton: any;
|
|
6143
5948
|
NInputGroup: import("vue").DefineComponent<{
|
|
@@ -6987,6 +6792,308 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6987
6792
|
showCompareField: boolean;
|
|
6988
6793
|
hideAddBtn: boolean;
|
|
6989
6794
|
}>;
|
|
6795
|
+
SearchConditionByApi: import("vue").DefineComponent<{
|
|
6796
|
+
actionList_prop: {
|
|
6797
|
+
type: import("vue").PropType<import("./src/types").IClassifyListType>;
|
|
6798
|
+
default: () => {};
|
|
6799
|
+
};
|
|
6800
|
+
conditionList: {
|
|
6801
|
+
type: ArrayConstructor;
|
|
6802
|
+
default: () => never[];
|
|
6803
|
+
};
|
|
6804
|
+
tableId: {
|
|
6805
|
+
type: StringConstructor;
|
|
6806
|
+
default: string;
|
|
6807
|
+
};
|
|
6808
|
+
showItemName: {
|
|
6809
|
+
type: BooleanConstructor;
|
|
6810
|
+
default: boolean;
|
|
6811
|
+
};
|
|
6812
|
+
hideAddBtn: {
|
|
6813
|
+
type: BooleanConstructor;
|
|
6814
|
+
default: boolean;
|
|
6815
|
+
};
|
|
6816
|
+
}, {
|
|
6817
|
+
$message: import("naive-ui").MessageApi;
|
|
6818
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
6819
|
+
actionList_prop: {
|
|
6820
|
+
type: import("vue").PropType<import("./src/types").IClassifyListType>;
|
|
6821
|
+
default: () => {};
|
|
6822
|
+
};
|
|
6823
|
+
conditionList: {
|
|
6824
|
+
type: ArrayConstructor;
|
|
6825
|
+
default: () => never[];
|
|
6826
|
+
};
|
|
6827
|
+
tableId: {
|
|
6828
|
+
type: StringConstructor;
|
|
6829
|
+
default: string;
|
|
6830
|
+
};
|
|
6831
|
+
showItemName: {
|
|
6832
|
+
type: BooleanConstructor;
|
|
6833
|
+
default: boolean;
|
|
6834
|
+
};
|
|
6835
|
+
hideAddBtn: {
|
|
6836
|
+
type: BooleanConstructor;
|
|
6837
|
+
default: boolean;
|
|
6838
|
+
};
|
|
6839
|
+
}>> & {
|
|
6840
|
+
onSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
6841
|
+
onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
6842
|
+
}>>;
|
|
6843
|
+
emit: (event: "saveAdd" | "cancelSaveAdd", ...args: any[]) => void;
|
|
6844
|
+
$attrs: {
|
|
6845
|
+
[x: string]: unknown;
|
|
6846
|
+
};
|
|
6847
|
+
FormState: {
|
|
6848
|
+
className: string;
|
|
6849
|
+
displayCategory: string;
|
|
6850
|
+
filterConditions: {
|
|
6851
|
+
value: string;
|
|
6852
|
+
key: string;
|
|
6853
|
+
condition: string;
|
|
6854
|
+
presetVal: string;
|
|
6855
|
+
}[];
|
|
6856
|
+
};
|
|
6857
|
+
loading: import("vue").Ref<boolean>;
|
|
6858
|
+
DisplayCategoryState: {
|
|
6859
|
+
addDisplayCategory: string;
|
|
6860
|
+
displayCategories: {
|
|
6861
|
+
disabled: boolean;
|
|
6862
|
+
value: string;
|
|
6863
|
+
}[];
|
|
6864
|
+
displayCategoryOriginLen: number;
|
|
6865
|
+
showAdd: boolean;
|
|
6866
|
+
};
|
|
6867
|
+
isEnableAddDisplayCategory: import("vue").ComputedRef<boolean>;
|
|
6868
|
+
editDisplayCategory: (e: any, item: import("./src/types").ICategoryItemType) => void;
|
|
6869
|
+
handleDisplayCategorySelect: (item: import("./src/types").ICategoryItemType) => void;
|
|
6870
|
+
handleDisplayCategoryRemove: (index: number, item: import("./src/types").ICategoryItemType) => void;
|
|
6871
|
+
handleDisplayCategoryAdd: (e: any) => void;
|
|
6872
|
+
handlerBlur: () => void;
|
|
6873
|
+
initDisplayCategories: (rawDataDisplayCategories: any, displayCategory: any) => void;
|
|
6874
|
+
FilterConditionsState: any;
|
|
6875
|
+
paramOptions: import("vue").ComputedRef<any>;
|
|
6876
|
+
addFilterCondition: () => void;
|
|
6877
|
+
delFilterCondition: (index: number) => void;
|
|
6878
|
+
updateKey: (index: number, val: any) => void;
|
|
6879
|
+
updateCondition: (index: number, val: any) => void;
|
|
6880
|
+
getParamCfg: (key: string) => any;
|
|
6881
|
+
initFilterConditions: (tableId: string, rawConditions: import("./src/types").ISearchConfigType) => Promise<void>;
|
|
6882
|
+
getRawFilterConditions: () => {
|
|
6883
|
+
field_key: any;
|
|
6884
|
+
con: any;
|
|
6885
|
+
value: any;
|
|
6886
|
+
unit: any;
|
|
6887
|
+
}[];
|
|
6888
|
+
findConditionByDisplayCategory: (displayCategory: string) => unknown;
|
|
6889
|
+
handleDisplayCategorySelectProxy: (item: import("./src/types").ICategoryItemType) => void;
|
|
6890
|
+
clearFormData: () => void;
|
|
6891
|
+
handleInitConditions: () => Promise<void>;
|
|
6892
|
+
validate: () => Promise<unknown>;
|
|
6893
|
+
saveAdd: () => void;
|
|
6894
|
+
cancelSaveAdd: () => void;
|
|
6895
|
+
checkActionList: () => boolean;
|
|
6896
|
+
NSpin: any;
|
|
6897
|
+
NIcon: any;
|
|
6898
|
+
NInput: any;
|
|
6899
|
+
NButton: any;
|
|
6900
|
+
NTooltip: any;
|
|
6901
|
+
NSelect: any;
|
|
6902
|
+
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<{}>>, {}>;
|
|
6903
|
+
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<{}>>, {}>;
|
|
6904
|
+
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<{}>>, {}>;
|
|
6905
|
+
SvgIcon: import("vue").DefineComponent<{
|
|
6906
|
+
iconClass: {
|
|
6907
|
+
type: StringConstructor;
|
|
6908
|
+
required: true;
|
|
6909
|
+
default: string;
|
|
6910
|
+
};
|
|
6911
|
+
title: {
|
|
6912
|
+
type: StringConstructor;
|
|
6913
|
+
required: false;
|
|
6914
|
+
default: string;
|
|
6915
|
+
};
|
|
6916
|
+
className: {
|
|
6917
|
+
type: StringConstructor;
|
|
6918
|
+
required: false;
|
|
6919
|
+
};
|
|
6920
|
+
}, {
|
|
6921
|
+
props: {
|
|
6922
|
+
iconClass: string;
|
|
6923
|
+
title: string;
|
|
6924
|
+
className?: string | undefined;
|
|
6925
|
+
};
|
|
6926
|
+
iconName: import("vue").ComputedRef<string>;
|
|
6927
|
+
svgClass: import("vue").ComputedRef<string>;
|
|
6928
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6929
|
+
iconClass: {
|
|
6930
|
+
type: StringConstructor;
|
|
6931
|
+
required: true;
|
|
6932
|
+
default: string;
|
|
6933
|
+
};
|
|
6934
|
+
title: {
|
|
6935
|
+
type: StringConstructor;
|
|
6936
|
+
required: false;
|
|
6937
|
+
default: string;
|
|
6938
|
+
};
|
|
6939
|
+
className: {
|
|
6940
|
+
type: StringConstructor;
|
|
6941
|
+
required: false;
|
|
6942
|
+
};
|
|
6943
|
+
}>>, {
|
|
6944
|
+
title: string;
|
|
6945
|
+
iconClass: string;
|
|
6946
|
+
}>;
|
|
6947
|
+
ValueCfg: import("vue").DefineComponent<{
|
|
6948
|
+
paramCfg: {
|
|
6949
|
+
type: ObjectConstructor;
|
|
6950
|
+
default: null;
|
|
6951
|
+
};
|
|
6952
|
+
modelValue: {
|
|
6953
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
6954
|
+
default: null;
|
|
6955
|
+
};
|
|
6956
|
+
presetVal: {
|
|
6957
|
+
type: StringConstructor;
|
|
6958
|
+
default: null;
|
|
6959
|
+
};
|
|
6960
|
+
}, {
|
|
6961
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
6962
|
+
paramCfg: {
|
|
6963
|
+
type: ObjectConstructor;
|
|
6964
|
+
default: null;
|
|
6965
|
+
};
|
|
6966
|
+
modelValue: {
|
|
6967
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
6968
|
+
default: null;
|
|
6969
|
+
};
|
|
6970
|
+
presetVal: {
|
|
6971
|
+
type: StringConstructor;
|
|
6972
|
+
default: null;
|
|
6973
|
+
};
|
|
6974
|
+
}>> & {
|
|
6975
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6976
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
|
6977
|
+
}>>;
|
|
6978
|
+
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
|
6979
|
+
valueCp: import("vue").WritableComputedRef<unknown>;
|
|
6980
|
+
presetValCp: import("vue").WritableComputedRef<unknown>;
|
|
6981
|
+
widgetType: import("vue").ComputedRef<any>;
|
|
6982
|
+
optionSetting: import("vue").ComputedRef<any>;
|
|
6983
|
+
mappingConfig: import("vue").ComputedRef<any>;
|
|
6984
|
+
widgetOptions: import("vue").ComputedRef<{
|
|
6985
|
+
label: string;
|
|
6986
|
+
value: string;
|
|
6987
|
+
}[]>;
|
|
6988
|
+
NInputNumber: any;
|
|
6989
|
+
NInput: any;
|
|
6990
|
+
NSelect: any;
|
|
6991
|
+
NDatePicker: any;
|
|
6992
|
+
WidgetTypeEnums: {
|
|
6993
|
+
INPUT_NUMBER: string;
|
|
6994
|
+
INPUT: string;
|
|
6995
|
+
SELECT: string;
|
|
6996
|
+
DATE: string;
|
|
6997
|
+
DATE_TIME: string;
|
|
6998
|
+
};
|
|
6999
|
+
WidgetValEnums: {
|
|
7000
|
+
CUSTOM: string;
|
|
7001
|
+
FIRST_VAL: string;
|
|
7002
|
+
NOW: string;
|
|
7003
|
+
TODAY: string;
|
|
7004
|
+
TODAY_START: string;
|
|
7005
|
+
TODAY_END: string;
|
|
7006
|
+
TOMORROW: string;
|
|
7007
|
+
TOMORROW_START: string;
|
|
7008
|
+
TOMORROW_END: string;
|
|
7009
|
+
YESTERDAY: string;
|
|
7010
|
+
YESTERDAY_START: string;
|
|
7011
|
+
YESTERDAY_END: string;
|
|
7012
|
+
THIS_WEEK: string;
|
|
7013
|
+
WEEK_START: string;
|
|
7014
|
+
WEEK_END: string;
|
|
7015
|
+
NEXT_WEEK: string;
|
|
7016
|
+
LAST_WEEK: string;
|
|
7017
|
+
THIS_MONTH: string;
|
|
7018
|
+
MONTH_START: string;
|
|
7019
|
+
MONTH_END: string;
|
|
7020
|
+
NEXT_MONTH: string;
|
|
7021
|
+
LAST_MONTH: string;
|
|
7022
|
+
THIS_QUARTER: string;
|
|
7023
|
+
NEXT_QUARTER: string;
|
|
7024
|
+
LAST_QUARTER: string;
|
|
7025
|
+
THIS_YEAR: string;
|
|
7026
|
+
NEXT_YEAR: string;
|
|
7027
|
+
LAST_YEAR: string;
|
|
7028
|
+
};
|
|
7029
|
+
WidgetOptionEnums: {
|
|
7030
|
+
RADIO: string;
|
|
7031
|
+
MULTIPLE: string;
|
|
7032
|
+
ALL: string;
|
|
7033
|
+
SELECT_TIME: string;
|
|
7034
|
+
PAST_TIME: string;
|
|
7035
|
+
FUTURE_TIME: string;
|
|
7036
|
+
};
|
|
7037
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal")[], "update:modelValue" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7038
|
+
paramCfg: {
|
|
7039
|
+
type: ObjectConstructor;
|
|
7040
|
+
default: null;
|
|
7041
|
+
};
|
|
7042
|
+
modelValue: {
|
|
7043
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
7044
|
+
default: null;
|
|
7045
|
+
};
|
|
7046
|
+
presetVal: {
|
|
7047
|
+
type: StringConstructor;
|
|
7048
|
+
default: null;
|
|
7049
|
+
};
|
|
7050
|
+
}>> & {
|
|
7051
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7052
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
|
7053
|
+
}, {
|
|
7054
|
+
modelValue: string | number | unknown[];
|
|
7055
|
+
presetVal: string;
|
|
7056
|
+
paramCfg: Record<string, any>;
|
|
7057
|
+
}>;
|
|
7058
|
+
ConditionEnums: {
|
|
7059
|
+
NULL: string;
|
|
7060
|
+
EQUAL: string;
|
|
7061
|
+
};
|
|
7062
|
+
conditionOptions: {
|
|
7063
|
+
label: string;
|
|
7064
|
+
value: string;
|
|
7065
|
+
}[];
|
|
7066
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("saveAdd" | "cancelSaveAdd")[], "saveAdd" | "cancelSaveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7067
|
+
actionList_prop: {
|
|
7068
|
+
type: import("vue").PropType<import("./src/types").IClassifyListType>;
|
|
7069
|
+
default: () => {};
|
|
7070
|
+
};
|
|
7071
|
+
conditionList: {
|
|
7072
|
+
type: ArrayConstructor;
|
|
7073
|
+
default: () => never[];
|
|
7074
|
+
};
|
|
7075
|
+
tableId: {
|
|
7076
|
+
type: StringConstructor;
|
|
7077
|
+
default: string;
|
|
7078
|
+
};
|
|
7079
|
+
showItemName: {
|
|
7080
|
+
type: BooleanConstructor;
|
|
7081
|
+
default: boolean;
|
|
7082
|
+
};
|
|
7083
|
+
hideAddBtn: {
|
|
7084
|
+
type: BooleanConstructor;
|
|
7085
|
+
default: boolean;
|
|
7086
|
+
};
|
|
7087
|
+
}>> & {
|
|
7088
|
+
onSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
7089
|
+
onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
7090
|
+
}, {
|
|
7091
|
+
tableId: string;
|
|
7092
|
+
actionList_prop: import("./src/types").IClassifyListType;
|
|
7093
|
+
showItemName: boolean;
|
|
7094
|
+
conditionList: unknown[];
|
|
7095
|
+
hideAddBtn: boolean;
|
|
7096
|
+
}>;
|
|
6990
7097
|
TextOverTooltip: import("vue").DefineComponent<{
|
|
6991
7098
|
content: {
|
|
6992
7099
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -7086,6 +7193,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7086
7193
|
type: ObjectConstructor;
|
|
7087
7194
|
default: () => {};
|
|
7088
7195
|
};
|
|
7196
|
+
conditionList: {
|
|
7197
|
+
type: ArrayConstructor;
|
|
7198
|
+
default: () => never[];
|
|
7199
|
+
};
|
|
7089
7200
|
}, {
|
|
7090
7201
|
attrs: any;
|
|
7091
7202
|
$message: import("naive-ui").MessageApi;
|
|
@@ -7102,6 +7213,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7102
7213
|
type: ObjectConstructor;
|
|
7103
7214
|
default: () => {};
|
|
7104
7215
|
};
|
|
7216
|
+
conditionList: {
|
|
7217
|
+
type: ArrayConstructor;
|
|
7218
|
+
default: () => never[];
|
|
7219
|
+
};
|
|
7105
7220
|
}>> & {}>>;
|
|
7106
7221
|
showAdd: import("vue").Ref<boolean>;
|
|
7107
7222
|
className: import("vue").Ref<string>;
|
|
@@ -7121,9 +7236,15 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7121
7236
|
handleParentNameSelect: (item: import("./src/types").IParentNamesType, index: number) => void;
|
|
7122
7237
|
handleParentNamesRemove: (index: number, item: import("./src/types").IParentNamesType) => void;
|
|
7123
7238
|
handleParent: (index: number, item: import("./src/types").IParentNamesType) => void;
|
|
7239
|
+
handleGetParams: () => {
|
|
7240
|
+
displayCategory: string;
|
|
7241
|
+
name: string;
|
|
7242
|
+
} | undefined;
|
|
7243
|
+
NIcon: any;
|
|
7124
7244
|
NButton: any;
|
|
7125
7245
|
NInput: any;
|
|
7126
7246
|
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<{}>>, {}>;
|
|
7247
|
+
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<{}>>, {}>;
|
|
7127
7248
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7128
7249
|
showItemName: {
|
|
7129
7250
|
type: BooleanConstructor;
|
|
@@ -7137,12 +7258,21 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7137
7258
|
type: ObjectConstructor;
|
|
7138
7259
|
default: () => {};
|
|
7139
7260
|
};
|
|
7261
|
+
conditionList: {
|
|
7262
|
+
type: ArrayConstructor;
|
|
7263
|
+
default: () => never[];
|
|
7264
|
+
};
|
|
7140
7265
|
}>>, {
|
|
7141
7266
|
tableId: string;
|
|
7142
7267
|
actionList_prop: Record<string, any>;
|
|
7143
7268
|
showItemName: boolean;
|
|
7269
|
+
conditionList: unknown[];
|
|
7144
7270
|
}>;
|
|
7145
7271
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("changeSearch" | "changeShowName" | "handleItemClick" | "reloadClassification")[], "changeSearch" | "changeShowName" | "handleItemClick" | "reloadClassification", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7272
|
+
tableDataType: {
|
|
7273
|
+
type: StringConstructor;
|
|
7274
|
+
default: string;
|
|
7275
|
+
};
|
|
7146
7276
|
originConditionList: {
|
|
7147
7277
|
type: import("vue").PropType<import("./src/types").IClassifyListType[]>;
|
|
7148
7278
|
default: () => never[];
|
|
@@ -7159,6 +7289,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7159
7289
|
type: import("vue").PropType<import("./src/types").ITreeDataType[]>;
|
|
7160
7290
|
default: () => never[];
|
|
7161
7291
|
};
|
|
7292
|
+
filterApiConfig: {
|
|
7293
|
+
type: ObjectConstructor;
|
|
7294
|
+
default: () => {};
|
|
7295
|
+
};
|
|
7162
7296
|
}>> & {
|
|
7163
7297
|
onChangeSearch?: ((...args: any[]) => any) | undefined;
|
|
7164
7298
|
onChangeShowName?: ((...args: any[]) => any) | undefined;
|
|
@@ -7167,7 +7301,9 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7167
7301
|
}, {
|
|
7168
7302
|
searchFieldList: import("./src/types").ISearchType[];
|
|
7169
7303
|
searchFieldLimit: Record<string, any>;
|
|
7304
|
+
filterApiConfig: Record<string, any>;
|
|
7170
7305
|
originConditionList: import("./src/types").IClassifyListType[];
|
|
7306
|
+
tableDataType: string;
|
|
7171
7307
|
treeData: import("./src/types").ITreeDataType[];
|
|
7172
7308
|
}>;
|
|
7173
7309
|
setClassification: import("vue").DefineComponent<{
|
|
@@ -8415,6 +8551,14 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8415
8551
|
type: StringConstructor;
|
|
8416
8552
|
default: string;
|
|
8417
8553
|
};
|
|
8554
|
+
showItemName: {
|
|
8555
|
+
type: BooleanConstructor;
|
|
8556
|
+
default: boolean;
|
|
8557
|
+
};
|
|
8558
|
+
hideAddBtn: {
|
|
8559
|
+
type: BooleanConstructor;
|
|
8560
|
+
default: boolean;
|
|
8561
|
+
};
|
|
8418
8562
|
}, {
|
|
8419
8563
|
$message: import("naive-ui").MessageApi;
|
|
8420
8564
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -8430,6 +8574,14 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8430
8574
|
type: StringConstructor;
|
|
8431
8575
|
default: string;
|
|
8432
8576
|
};
|
|
8577
|
+
showItemName: {
|
|
8578
|
+
type: BooleanConstructor;
|
|
8579
|
+
default: boolean;
|
|
8580
|
+
};
|
|
8581
|
+
hideAddBtn: {
|
|
8582
|
+
type: BooleanConstructor;
|
|
8583
|
+
default: boolean;
|
|
8584
|
+
};
|
|
8433
8585
|
}>> & {
|
|
8434
8586
|
onSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
8435
8587
|
onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
@@ -8486,6 +8638,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8486
8638
|
validate: () => Promise<unknown>;
|
|
8487
8639
|
saveAdd: () => void;
|
|
8488
8640
|
cancelSaveAdd: () => void;
|
|
8641
|
+
checkActionList: () => boolean;
|
|
8489
8642
|
NSpin: any;
|
|
8490
8643
|
NIcon: any;
|
|
8491
8644
|
NInput: any;
|
|
@@ -8669,13 +8822,23 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8669
8822
|
type: StringConstructor;
|
|
8670
8823
|
default: string;
|
|
8671
8824
|
};
|
|
8825
|
+
showItemName: {
|
|
8826
|
+
type: BooleanConstructor;
|
|
8827
|
+
default: boolean;
|
|
8828
|
+
};
|
|
8829
|
+
hideAddBtn: {
|
|
8830
|
+
type: BooleanConstructor;
|
|
8831
|
+
default: boolean;
|
|
8832
|
+
};
|
|
8672
8833
|
}>> & {
|
|
8673
8834
|
onSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
8674
8835
|
onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
8675
8836
|
}, {
|
|
8676
8837
|
tableId: string;
|
|
8677
8838
|
actionList_prop: import("./src/types").IClassifyListType;
|
|
8839
|
+
showItemName: boolean;
|
|
8678
8840
|
conditionList: unknown[];
|
|
8841
|
+
hideAddBtn: boolean;
|
|
8679
8842
|
}>;
|
|
8680
8843
|
SvgIcon: import("vue").DefineComponent<{
|
|
8681
8844
|
iconClass: {
|
|
@@ -8751,8 +8914,8 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8751
8914
|
modalTitle: string;
|
|
8752
8915
|
searchFieldList: unknown[];
|
|
8753
8916
|
filterApiConfig: Record<string, any>;
|
|
8754
|
-
conditionList: unknown[];
|
|
8755
8917
|
tableDataType: string;
|
|
8918
|
+
conditionList: unknown[];
|
|
8756
8919
|
}>;
|
|
8757
8920
|
DataTypeEnums: {
|
|
8758
8921
|
SQL: string;
|
|
@@ -8796,6 +8959,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8796
8959
|
mounted(el: any, { value }: any): void;
|
|
8797
8960
|
beforeUnmount(el: any): void;
|
|
8798
8961
|
};
|
|
8962
|
+
DataTypeEnums: {
|
|
8963
|
+
SQL: string;
|
|
8964
|
+
API: string;
|
|
8965
|
+
};
|
|
8799
8966
|
SvgIcon: import("vue").DefineComponent<{
|
|
8800
8967
|
iconClass: {
|
|
8801
8968
|
type: StringConstructor;
|