cnhis-design-vue 3.1.41-release.2 → 3.1.41-release.4
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/button-print/src/utils/print.d.ts +1 -1
- package/es/components/button-print/src/utils/print.js +1 -1
- 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 +0 -3
- 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 +43 -256
- 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 +385 -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 +353 -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 +4 -3
- package/es/components/table-filter/style/index.css +1 -1
- package/es/env.d.ts +24 -24
- package/package.json +2 -2
- package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
- package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
- package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
- package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
- package/es/components/fabric-chart/src/utils/index.d.ts +0 -6823
- package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +0 -86
- package/es/shared/utils/tapable/index.d.ts +0 -139
|
@@ -3,6 +3,7 @@ import moment from 'moment';
|
|
|
3
3
|
import 'moment/locale/zh-cn';
|
|
4
4
|
import { PropType } from 'vue';
|
|
5
5
|
import { DropdownOption } from 'naive-ui';
|
|
6
|
+
import { AnyObject } from '../../../../../es/shared/types';
|
|
6
7
|
import { ISearchType, IrelationType, IbtnType, IsettingsType, IrowBtnListObj, IPrintType, IPrintAboutType, IOriginConditionType } from '../../../../../es/components/table-filter/src/types';
|
|
7
8
|
declare const _default: import("vue").DefineComponent<{
|
|
8
9
|
width: {
|
|
@@ -17,7 +18,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
18
|
type: StringConstructor;
|
|
18
19
|
};
|
|
19
20
|
onSearch: {
|
|
20
|
-
type:
|
|
21
|
+
type: any;
|
|
21
22
|
};
|
|
22
23
|
rowBtnList: {
|
|
23
24
|
type: PropType<IbtnType[]>;
|
|
@@ -48,7 +49,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
48
49
|
default: () => {};
|
|
49
50
|
};
|
|
50
51
|
viewList: {
|
|
51
|
-
type:
|
|
52
|
+
type: any;
|
|
52
53
|
default: () => never[];
|
|
53
54
|
};
|
|
54
55
|
TypeOfDisplay: {
|
|
@@ -72,7 +73,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
72
73
|
type: ObjectConstructor;
|
|
73
74
|
};
|
|
74
75
|
onRelatedSearch: {
|
|
75
|
-
type:
|
|
76
|
+
type: any;
|
|
76
77
|
};
|
|
77
78
|
showResetFilterBtn: {
|
|
78
79
|
type: BooleanConstructor;
|
|
@@ -218,7 +219,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
218
219
|
'border-color': string;
|
|
219
220
|
color?: undefined;
|
|
220
221
|
};
|
|
221
|
-
getRowOperatorIdSetting(row: any, btn:
|
|
222
|
+
getRowOperatorIdSetting(row: any, btn: AnyObject): any;
|
|
222
223
|
getAlphafloat(a: any, alpha?: any): number;
|
|
223
224
|
hexToRGBA(hex: string, alpha?: any): "" | {
|
|
224
225
|
r: any;
|
|
@@ -286,7 +287,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
286
287
|
type: StringConstructor;
|
|
287
288
|
};
|
|
288
289
|
onSearch: {
|
|
289
|
-
type:
|
|
290
|
+
type: any;
|
|
290
291
|
};
|
|
291
292
|
rowBtnList: {
|
|
292
293
|
type: PropType<IbtnType[]>;
|
|
@@ -317,7 +318,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
317
318
|
default: () => {};
|
|
318
319
|
};
|
|
319
320
|
viewList: {
|
|
320
|
-
type:
|
|
321
|
+
type: any;
|
|
321
322
|
default: () => never[];
|
|
322
323
|
};
|
|
323
324
|
TypeOfDisplay: {
|
|
@@ -341,7 +342,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
341
342
|
type: ObjectConstructor;
|
|
342
343
|
};
|
|
343
344
|
onRelatedSearch: {
|
|
344
|
-
type:
|
|
345
|
+
type: any;
|
|
345
346
|
};
|
|
346
347
|
showResetFilterBtn: {
|
|
347
348
|
type: BooleanConstructor;
|
|
@@ -558,171 +559,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
558
559
|
updatedTime?: string | undefined;
|
|
559
560
|
__printConfig?: any;
|
|
560
561
|
}[]>;
|
|
561
|
-
rowFoldBtnList: import("vue").Ref<
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
icon: string;
|
|
565
|
-
id: string;
|
|
566
|
-
isShow: number;
|
|
567
|
-
name: string;
|
|
568
|
-
setting: string;
|
|
569
|
-
settingList: string;
|
|
570
|
-
settingObj: {
|
|
571
|
-
obj_id: string;
|
|
572
|
-
trigger_type: string;
|
|
573
|
-
isTips: string;
|
|
574
|
-
trigger_id?: string | undefined;
|
|
575
|
-
trigger_name?: string | undefined;
|
|
576
|
-
params?: {
|
|
577
|
-
p_name: string;
|
|
578
|
-
p_value: string;
|
|
579
|
-
}[] | undefined;
|
|
580
|
-
editAllRow?: number | undefined;
|
|
581
|
-
tipsMsg?: any;
|
|
582
|
-
newTitle?: string | undefined;
|
|
583
|
-
display?: string | undefined;
|
|
584
|
-
importComponentId?: string | undefined;
|
|
585
|
-
importComponentName?: string | undefined;
|
|
586
|
-
prevStepSetting?: any;
|
|
587
|
-
linkShowType?: string | undefined;
|
|
588
|
-
conditionExpression?: string | undefined;
|
|
589
|
-
conditionParams?: any;
|
|
590
|
-
}[];
|
|
591
|
-
showStyle: string;
|
|
592
|
-
sid: string;
|
|
593
|
-
tableId: string;
|
|
594
|
-
toggle: string;
|
|
595
|
-
type: string;
|
|
596
|
-
alias?: string | undefined;
|
|
597
|
-
buttonRemark?: string | undefined;
|
|
598
|
-
buttonGroup?: any;
|
|
599
|
-
canHandleUniline?: boolean | undefined;
|
|
600
|
-
chooseTwoData?: string | undefined;
|
|
601
|
-
createdTime?: string | undefined;
|
|
602
|
-
dataSource?: string | undefined;
|
|
603
|
-
isButtonGroup?: boolean | undefined;
|
|
604
|
-
isHide?: boolean | undefined;
|
|
605
|
-
isImportGuage?: boolean | undefined;
|
|
606
|
-
iconSetting?: string | undefined;
|
|
607
|
-
isShowFoldGroupBtn?: boolean | undefined;
|
|
608
|
-
isVisible?: boolean | undefined;
|
|
609
|
-
printType?: any;
|
|
610
|
-
quoteSetting?: string | undefined;
|
|
611
|
-
showStyleSetting?: string | undefined;
|
|
612
|
-
strategy?: string | undefined;
|
|
613
|
-
updatedTime?: string | undefined;
|
|
614
|
-
__printConfig?: any;
|
|
615
|
-
}[]>;
|
|
616
|
-
rowPrintBtnList: import("vue").Ref<{
|
|
617
|
-
buttonType: string;
|
|
618
|
-
color: string;
|
|
619
|
-
icon: string;
|
|
620
|
-
id: string;
|
|
621
|
-
isShow: number;
|
|
622
|
-
name: string;
|
|
623
|
-
setting: string;
|
|
624
|
-
settingList: string;
|
|
625
|
-
settingObj: {
|
|
626
|
-
obj_id: string;
|
|
627
|
-
trigger_type: string;
|
|
628
|
-
isTips: string;
|
|
629
|
-
trigger_id?: string | undefined;
|
|
630
|
-
trigger_name?: string | undefined;
|
|
631
|
-
params?: {
|
|
632
|
-
p_name: string;
|
|
633
|
-
p_value: string;
|
|
634
|
-
}[] | undefined;
|
|
635
|
-
editAllRow?: number | undefined;
|
|
636
|
-
tipsMsg?: any;
|
|
637
|
-
newTitle?: string | undefined;
|
|
638
|
-
display?: string | undefined;
|
|
639
|
-
importComponentId?: string | undefined;
|
|
640
|
-
importComponentName?: string | undefined;
|
|
641
|
-
prevStepSetting?: any;
|
|
642
|
-
linkShowType?: string | undefined;
|
|
643
|
-
conditionExpression?: string | undefined;
|
|
644
|
-
conditionParams?: any;
|
|
645
|
-
}[];
|
|
646
|
-
showStyle: string;
|
|
647
|
-
sid: string;
|
|
648
|
-
tableId: string;
|
|
649
|
-
toggle: string;
|
|
650
|
-
type: string;
|
|
651
|
-
alias?: string | undefined;
|
|
652
|
-
buttonRemark?: string | undefined;
|
|
653
|
-
buttonGroup?: any;
|
|
654
|
-
canHandleUniline?: boolean | undefined;
|
|
655
|
-
chooseTwoData?: string | undefined;
|
|
656
|
-
createdTime?: string | undefined;
|
|
657
|
-
dataSource?: string | undefined;
|
|
658
|
-
isButtonGroup?: boolean | undefined;
|
|
659
|
-
isHide?: boolean | undefined;
|
|
660
|
-
isImportGuage?: boolean | undefined;
|
|
661
|
-
iconSetting?: string | undefined;
|
|
662
|
-
isShowFoldGroupBtn?: boolean | undefined;
|
|
663
|
-
isVisible?: boolean | undefined;
|
|
664
|
-
printType?: any;
|
|
665
|
-
quoteSetting?: string | undefined;
|
|
666
|
-
showStyleSetting?: string | undefined;
|
|
667
|
-
strategy?: string | undefined;
|
|
668
|
-
updatedTime?: string | undefined;
|
|
669
|
-
__printConfig?: any;
|
|
670
|
-
}[]>;
|
|
671
|
-
rowFoldHideBtnList: import("vue").Ref<{
|
|
672
|
-
buttonType: string;
|
|
673
|
-
color: string;
|
|
674
|
-
icon: string;
|
|
675
|
-
id: string;
|
|
676
|
-
isShow: number;
|
|
677
|
-
name: string;
|
|
678
|
-
setting: string;
|
|
679
|
-
settingList: string;
|
|
680
|
-
settingObj: {
|
|
681
|
-
obj_id: string;
|
|
682
|
-
trigger_type: string;
|
|
683
|
-
isTips: string;
|
|
684
|
-
trigger_id?: string | undefined;
|
|
685
|
-
trigger_name?: string | undefined;
|
|
686
|
-
params?: {
|
|
687
|
-
p_name: string;
|
|
688
|
-
p_value: string;
|
|
689
|
-
}[] | undefined;
|
|
690
|
-
editAllRow?: number | undefined;
|
|
691
|
-
tipsMsg?: any;
|
|
692
|
-
newTitle?: string | undefined;
|
|
693
|
-
display?: string | undefined;
|
|
694
|
-
importComponentId?: string | undefined;
|
|
695
|
-
importComponentName?: string | undefined;
|
|
696
|
-
prevStepSetting?: any;
|
|
697
|
-
linkShowType?: string | undefined;
|
|
698
|
-
conditionExpression?: string | undefined;
|
|
699
|
-
conditionParams?: any;
|
|
700
|
-
}[];
|
|
701
|
-
showStyle: string;
|
|
702
|
-
sid: string;
|
|
703
|
-
tableId: string;
|
|
704
|
-
toggle: string;
|
|
705
|
-
type: string;
|
|
706
|
-
alias?: string | undefined;
|
|
707
|
-
buttonRemark?: string | undefined;
|
|
708
|
-
buttonGroup?: any;
|
|
709
|
-
canHandleUniline?: boolean | undefined;
|
|
710
|
-
chooseTwoData?: string | undefined;
|
|
711
|
-
createdTime?: string | undefined;
|
|
712
|
-
dataSource?: string | undefined;
|
|
713
|
-
isButtonGroup?: boolean | undefined;
|
|
714
|
-
isHide?: boolean | undefined;
|
|
715
|
-
isImportGuage?: boolean | undefined;
|
|
716
|
-
iconSetting?: string | undefined;
|
|
717
|
-
isShowFoldGroupBtn?: boolean | undefined;
|
|
718
|
-
isVisible?: boolean | undefined;
|
|
719
|
-
printType?: any;
|
|
720
|
-
quoteSetting?: string | undefined;
|
|
721
|
-
showStyleSetting?: string | undefined;
|
|
722
|
-
strategy?: string | undefined;
|
|
723
|
-
updatedTime?: string | undefined;
|
|
724
|
-
__printConfig?: any;
|
|
725
|
-
}[]>;
|
|
562
|
+
rowFoldBtnList: import("vue").Ref<AnyObject[]>;
|
|
563
|
+
rowPrintBtnList: import("vue").Ref<AnyObject[]>;
|
|
564
|
+
rowFoldHideBtnList: import("vue").Ref<AnyObject[]>;
|
|
726
565
|
rowFoldHideBtnListObj: import("vue").Ref<IrowBtnListObj | undefined>;
|
|
727
566
|
batchRelationBtnIds: import("vue").Ref<string[]>;
|
|
728
567
|
relationBtnBatchBtnIds: import("vue").Ref<string[]>;
|
|
@@ -740,61 +579,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
740
579
|
downloadDropdownWidth: import("vue").Ref<number>;
|
|
741
580
|
diffWidth: import("vue").Ref<number>;
|
|
742
581
|
resizeFlag: import("vue").Ref<boolean>;
|
|
743
|
-
rowTileBtnListTree: import("vue").Ref<
|
|
744
|
-
buttonType: string;
|
|
745
|
-
color: string;
|
|
746
|
-
icon: string;
|
|
747
|
-
id: string;
|
|
748
|
-
isShow: number;
|
|
749
|
-
name: string;
|
|
750
|
-
setting: string;
|
|
751
|
-
settingList: string;
|
|
752
|
-
settingObj: {
|
|
753
|
-
obj_id: string;
|
|
754
|
-
trigger_type: string;
|
|
755
|
-
isTips: string;
|
|
756
|
-
trigger_id?: string | undefined;
|
|
757
|
-
trigger_name?: string | undefined;
|
|
758
|
-
params?: {
|
|
759
|
-
p_name: string;
|
|
760
|
-
p_value: string;
|
|
761
|
-
}[] | undefined;
|
|
762
|
-
editAllRow?: number | undefined;
|
|
763
|
-
tipsMsg?: any;
|
|
764
|
-
newTitle?: string | undefined;
|
|
765
|
-
display?: string | undefined;
|
|
766
|
-
importComponentId?: string | undefined;
|
|
767
|
-
importComponentName?: string | undefined;
|
|
768
|
-
prevStepSetting?: any;
|
|
769
|
-
linkShowType?: string | undefined;
|
|
770
|
-
conditionExpression?: string | undefined;
|
|
771
|
-
conditionParams?: any;
|
|
772
|
-
}[];
|
|
773
|
-
showStyle: string;
|
|
774
|
-
sid: string;
|
|
775
|
-
tableId: string;
|
|
776
|
-
toggle: string;
|
|
777
|
-
type: string;
|
|
778
|
-
alias?: string | undefined;
|
|
779
|
-
buttonRemark?: string | undefined;
|
|
780
|
-
buttonGroup?: any;
|
|
781
|
-
canHandleUniline?: boolean | undefined;
|
|
782
|
-
chooseTwoData?: string | undefined;
|
|
783
|
-
createdTime?: string | undefined;
|
|
784
|
-
dataSource?: string | undefined;
|
|
785
|
-
isButtonGroup?: boolean | undefined;
|
|
786
|
-
isHide?: boolean | undefined;
|
|
787
|
-
isImportGuage?: boolean | undefined;
|
|
788
|
-
iconSetting?: string | undefined;
|
|
789
|
-
isShowFoldGroupBtn?: boolean | undefined;
|
|
790
|
-
isVisible?: boolean | undefined;
|
|
791
|
-
printType?: any;
|
|
792
|
-
quoteSetting?: string | undefined;
|
|
793
|
-
showStyleSetting?: string | undefined;
|
|
794
|
-
strategy?: string | undefined;
|
|
795
|
-
updatedTime?: string | undefined;
|
|
796
|
-
__printConfig?: any;
|
|
797
|
-
}[]>;
|
|
582
|
+
rowTileBtnListTree: import("vue").Ref<AnyObject[]>;
|
|
798
583
|
outSearchFieldList: import("vue").Ref<{
|
|
799
584
|
columnName: string;
|
|
800
585
|
title: string;
|
|
@@ -996,11 +781,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
996
781
|
showPlaceholderPrefix: import("vue").Ref<boolean>;
|
|
997
782
|
isOrgAdmin: import("vue").ComputedRef<boolean>;
|
|
998
783
|
currentValue: import("vue").ComputedRef<string | undefined>;
|
|
999
|
-
allBtn: import("vue").ComputedRef<
|
|
784
|
+
allBtn: import("vue").ComputedRef<AnyObject[]>;
|
|
1000
785
|
isButtonFolding: import("vue").ComputedRef<boolean>;
|
|
1001
786
|
isShowSettingBtn: import("vue").ComputedRef<boolean | undefined>;
|
|
1002
787
|
showDownCurSelectData: import("vue").ComputedRef<any>;
|
|
1003
|
-
showRowFoldBtnList: import("vue").ComputedRef<(list:
|
|
788
|
+
showRowFoldBtnList: import("vue").ComputedRef<(list: AnyObject[], key?: string) => boolean>;
|
|
1004
789
|
initPageResize: import("vue").ComputedRef<{
|
|
1005
790
|
showSettings: IsettingsType;
|
|
1006
791
|
TypeOfDisplay: string;
|
|
@@ -1012,9 +797,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1012
797
|
defaultValue: moment.Moment[];
|
|
1013
798
|
}>;
|
|
1014
799
|
isShowGroupBtn: import("vue").ComputedRef<boolean>;
|
|
1015
|
-
showLi: import("vue").ComputedRef<(item:
|
|
1016
|
-
showLiAdd: import("vue").ComputedRef<(b:
|
|
1017
|
-
showLiFold: import("vue").ComputedRef<(b:
|
|
800
|
+
showLi: import("vue").ComputedRef<(item: AnyObject) => any>;
|
|
801
|
+
showLiAdd: import("vue").ComputedRef<(b: AnyObject) => any>;
|
|
802
|
+
showLiFold: import("vue").ComputedRef<(b: AnyObject) => any>;
|
|
1018
803
|
getIsTile: import("vue").ComputedRef<any>;
|
|
1019
804
|
selectRowObj: import("vue").ComputedRef<any>;
|
|
1020
805
|
isInlineOperating: import("vue").ComputedRef<any>;
|
|
@@ -1049,9 +834,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1049
834
|
editTableGetConObj: () => any;
|
|
1050
835
|
clearData: () => void;
|
|
1051
836
|
handlePrint: (clickBtn: any, btn: IbtnType, type: any, j: number) => void;
|
|
1052
|
-
showDrawer: (btn:
|
|
1053
|
-
getUnilineBtn: (BatchBtn:
|
|
1054
|
-
handleBtnEvent: (btn:
|
|
837
|
+
showDrawer: (btn: AnyObject, j: number) => void;
|
|
838
|
+
getUnilineBtn: (BatchBtn: AnyObject) => any;
|
|
839
|
+
handleBtnEvent: (btn: AnyObject, j: number) => void;
|
|
1055
840
|
updateTableCondiTion: () => Promise<void>;
|
|
1056
841
|
CondiTionListInit: () => Promise<void>;
|
|
1057
842
|
saveGetTableCondiTionList: (options: any) => Promise<void>;
|
|
@@ -1059,9 +844,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1059
844
|
changeSearchTile: (val: boolean) => void;
|
|
1060
845
|
openSetting: () => void;
|
|
1061
846
|
reloadList: (item: string) => void;
|
|
1062
|
-
clickBtn: (data: any, item:
|
|
1063
|
-
handleDropdown: (key: string, item:
|
|
1064
|
-
handlerOperate: (key: string, item:
|
|
847
|
+
clickBtn: (data: any, item: AnyObject, index: number, skip: boolean, j: number) => void;
|
|
848
|
+
handleDropdown: (key: string, item: AnyObject) => void;
|
|
849
|
+
handlerOperate: (key: string, item: AnyObject) => void;
|
|
1065
850
|
handlerBtnlist: (key: string, item: IbtnType, list: IbtnType[]) => void;
|
|
1066
851
|
clickGroupBtn: (btn: IbtnType, j: number) => void;
|
|
1067
852
|
handlerSetting: () => void;
|
|
@@ -1073,14 +858,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1073
858
|
handleButtonGroup: (buttonList: IbtnType[]) => void;
|
|
1074
859
|
formatRowBtnList: () => Promise<void>;
|
|
1075
860
|
hideInlineOperationBtn: () => void;
|
|
1076
|
-
isPrintBtn: (btn:
|
|
861
|
+
isPrintBtn: (btn: AnyObject) => boolean;
|
|
1077
862
|
handleTileBtnWidth: () => void;
|
|
1078
863
|
resetCheckStatus: () => void;
|
|
1079
864
|
handleReset: () => void;
|
|
1080
865
|
changeCardNewBatch: (val: boolean) => void;
|
|
1081
866
|
handleUploadChange: (info: any) => void;
|
|
1082
867
|
handleOtherConfigInit: () => void;
|
|
1083
|
-
handleAddType: (key: string, btn:
|
|
868
|
+
handleAddType: (key: string, btn: AnyObject) => void;
|
|
1084
869
|
getRowTileBtnList: (btnList: IbtnType[]) => void;
|
|
1085
870
|
relatedSearchInputBlur: () => void;
|
|
1086
871
|
handleRequestedLabel: (v: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
@@ -1089,8 +874,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1089
874
|
outFilterChange: (config?: {}) => void;
|
|
1090
875
|
getConObj: (arr: any) => any;
|
|
1091
876
|
getConObjParams: () => any;
|
|
1092
|
-
visibleBtn: (btn:
|
|
1093
|
-
getPrintBtnParams: (btn:
|
|
877
|
+
visibleBtn: (btn: AnyObject) => boolean;
|
|
878
|
+
getPrintBtnParams: (btn: AnyObject) => any;
|
|
1094
879
|
setPrintNumberToBtnList: (printNumberList?: IPrintType[], btnList?: IbtnType[]) => IbtnType[];
|
|
1095
880
|
getPrintNumber: (list: IbtnType[]) => Promise<any>;
|
|
1096
881
|
receivePrintSuccessAboutPrint: (res: any, info: IPrintAboutType) => Promise<void>;
|
|
@@ -1098,7 +883,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1098
883
|
receivePrintError: (res: any) => void;
|
|
1099
884
|
resetAllPrintFnWatch: () => void;
|
|
1100
885
|
printBtnPrevFnWatchSetTimeout: (reject: any) => void;
|
|
1101
|
-
printBtnPrevFn: (clickBtn: any, btn:
|
|
886
|
+
printBtnPrevFn: (clickBtn: any, btn: AnyObject, type: number, j: number) => Promise<unknown>;
|
|
1102
887
|
inlineEditClick: () => void;
|
|
1103
888
|
handleGetOutSearchInitValue: () => any;
|
|
1104
889
|
getFiledRandom_key: (el: ISearchType) => string;
|
|
@@ -1115,13 +900,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1115
900
|
vPreventReClick: {
|
|
1116
901
|
mounted(el: any, binding: any): void;
|
|
1117
902
|
};
|
|
1118
|
-
PrintBtn: import("
|
|
903
|
+
PrintBtn: import("../../../../../es/shared/types").SFCWithInstall<import("vue").DefineComponent<{
|
|
1119
904
|
printParams: {
|
|
1120
|
-
type: PropType<
|
|
905
|
+
type: PropType<AnyObject[]>;
|
|
1121
906
|
};
|
|
1122
907
|
params: {
|
|
1123
908
|
default: () => never[];
|
|
1124
|
-
type: PropType<
|
|
909
|
+
type: PropType<AnyObject[]>;
|
|
1125
910
|
};
|
|
1126
911
|
btnText: {
|
|
1127
912
|
default: string;
|
|
@@ -1187,11 +972,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1187
972
|
printInstance: import("../../../../../es/components/button-print").Print | null;
|
|
1188
973
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1189
974
|
printParams: {
|
|
1190
|
-
type: PropType<
|
|
975
|
+
type: PropType<AnyObject[]>;
|
|
1191
976
|
};
|
|
1192
977
|
params: {
|
|
1193
978
|
default: () => never[];
|
|
1194
|
-
type: PropType<
|
|
979
|
+
type: PropType<AnyObject[]>;
|
|
1195
980
|
};
|
|
1196
981
|
btnText: {
|
|
1197
982
|
default: string;
|
|
@@ -1729,7 +1514,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1729
1514
|
file: import("naive-ui").UploadFileInfo;
|
|
1730
1515
|
fileList: import("naive-ui").UploadFileInfo[];
|
|
1731
1516
|
}) => Promise<unknown>;
|
|
1732
|
-
submit: (datas:
|
|
1517
|
+
submit: (datas: AnyObject) => Promise<unknown>;
|
|
1733
1518
|
validateFormat: () => boolean;
|
|
1734
1519
|
NForm: any;
|
|
1735
1520
|
NFormItem: import("vue").DefineComponent<{
|
|
@@ -2941,11 +2726,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2941
2726
|
}>;
|
|
2942
2727
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("success" | "error" | "clickoutside")[], "error" | "success" | "clickoutside", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2943
2728
|
printParams: {
|
|
2944
|
-
type: PropType<
|
|
2729
|
+
type: PropType<AnyObject[]>;
|
|
2945
2730
|
};
|
|
2946
2731
|
params: {
|
|
2947
2732
|
default: () => never[];
|
|
2948
|
-
type: PropType<
|
|
2733
|
+
type: PropType<AnyObject[]>;
|
|
2949
2734
|
};
|
|
2950
2735
|
btnText: {
|
|
2951
2736
|
default: string;
|
|
@@ -3011,7 +2796,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3011
2796
|
onSuccess?: ((...args: any[]) => any) | undefined;
|
|
3012
2797
|
onClickoutside?: ((...args: any[]) => any) | undefined;
|
|
3013
2798
|
}, {
|
|
3014
|
-
params:
|
|
2799
|
+
params: AnyObject[];
|
|
3015
2800
|
btnText: string;
|
|
3016
2801
|
printText: string;
|
|
3017
2802
|
previewText: string;
|
|
@@ -3596,7 +3381,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3596
3381
|
type: StringConstructor;
|
|
3597
3382
|
};
|
|
3598
3383
|
onSearch: {
|
|
3599
|
-
type:
|
|
3384
|
+
type: any;
|
|
3600
3385
|
};
|
|
3601
3386
|
rowBtnList: {
|
|
3602
3387
|
type: PropType<IbtnType[]>;
|
|
@@ -3627,7 +3412,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3627
3412
|
default: () => {};
|
|
3628
3413
|
};
|
|
3629
3414
|
viewList: {
|
|
3630
|
-
type:
|
|
3415
|
+
type: any;
|
|
3631
3416
|
default: () => never[];
|
|
3632
3417
|
};
|
|
3633
3418
|
TypeOfDisplay: {
|
|
@@ -3651,7 +3436,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3651
3436
|
type: ObjectConstructor;
|
|
3652
3437
|
};
|
|
3653
3438
|
onRelatedSearch: {
|
|
3654
|
-
type:
|
|
3439
|
+
type: any;
|
|
3655
3440
|
};
|
|
3656
3441
|
showResetFilterBtn: {
|
|
3657
3442
|
type: BooleanConstructor;
|
|
@@ -3809,15 +3594,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3809
3594
|
isBatchSelect: string | number | boolean;
|
|
3810
3595
|
width: string;
|
|
3811
3596
|
searchInputWidth: number;
|
|
3597
|
+
onSearch: any;
|
|
3812
3598
|
rowBtnList: IbtnType[];
|
|
3813
3599
|
paramsData: any;
|
|
3814
3600
|
searchFieldList: ISearchType[];
|
|
3815
3601
|
searchFieldLimit: Record<string, any>;
|
|
3816
|
-
viewList:
|
|
3602
|
+
viewList: any;
|
|
3817
3603
|
TypeOfDisplay: string;
|
|
3818
3604
|
tableAllCheck: boolean;
|
|
3819
3605
|
editTableSource: string;
|
|
3820
3606
|
showRelatedTreeBtn: boolean;
|
|
3607
|
+
onRelatedSearch: any;
|
|
3821
3608
|
showResetFilterBtn: boolean;
|
|
3822
3609
|
qqConObjCount: number;
|
|
3823
3610
|
tabConditionNumObj: Record<string, any>;
|