@qqt-product/system 7.0.1 → 8.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +31446 -27955
- package/dist/index.umd.js +319 -45
- package/dist/lib/components/QAccountList/src/QAccountCreate.vue.d.ts +40 -0
- package/dist/lib/components/QAccountList/src/QAccountDetail.vue.d.ts +33 -0
- package/dist/lib/components/QAccountList/src/QAccountEdit.vue.d.ts +40 -0
- package/dist/lib/components/QCostCustomConfigEdit/component/AddDictCodeModal.vue.d.ts +25 -0
- package/dist/lib/components/QCostCustomConfigEdit/component/TempalePreviewModal.vue.d.ts +31 -0
- package/dist/lib/components/QCostCustomConfigEdit/component/dataFormatComponent.d.ts +46 -0
- package/dist/lib/components/QCostCustomConfigEdit/component/regexComponent.d.ts +40 -0
- package/dist/lib/components/QCostCustomConfigEdit/src/QCostCustomConfigEdit.vue.d.ts +1209 -0
- package/dist/lib/components/QCostCustomConfigEdit/src/QcustomConfigRender.d.ts +12 -0
- package/dist/lib/components/QCostCustomConfigEdit/src/types.d.ts +61 -0
- package/dist/lib/components/QCostCustomConfigEdit/src/useConfigComputed.d.ts +7 -0
- package/dist/lib/components/QCostCustomConfigEdit/src/useConfigData.d.ts +86 -0
- package/dist/lib/components/QCostCustomConfigEdit/src/useConfigMethods.d.ts +16 -0
- package/dist/lib/components/QCostCustomConfigEdit/src/useConstant.d.ts +18 -0
- package/dist/lib/components/QCostCustomConfigList/src/QCostCustomConfigList.vue.d.ts +105 -0
- package/dist/lib/components/QCostCustomConfigList/src/useConfigData.d.ts +17 -0
- package/dist/lib/components/QCostCustomConfigList/src/useMethods.d.ts +15 -0
- package/dist/lib/components/QElsMsgRecordList/src/QElsMsgRecordDetail.vue.d.ts +33 -0
- package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsDetail.vue.d.ts +33 -0
- package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsEdit.vue.d.ts +40 -0
- package/dist/lib/components/QPermissionDataList/src/QPermissionDataEdit.vue.d.ts +40 -0
- package/dist/lib/components/QPermissionDataList/src/QPermissionDataList.vue.d.ts +1 -0
- package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeDetail.vue.d.ts +33 -0
- package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeEdit.vue.d.ts +37 -0
- package/dist/lib/components/QcustomConfigEdit/src/QcustomConfigEdit.vue.d.ts +10 -1
- package/dist/lib/components/index.d.ts +3 -1
- package/dist/lib/components/integratedNodesList/src/QIntegratedNodesDetail.vue.d.ts +33 -0
- package/dist/lib/components/integratedNodesList/src/QIntegratedNodesEdit.vue.d.ts +40 -0
- package/dist/lib/components/integratedReportSearchList/src/index.vue.d.ts +10 -0
- package/dist/style.css +1 -1
- package/package.json +9 -9
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { SizeType, VxeTableDataRow, VxePagerPropTypes, VxeColumnSlotTypes, SlotVNodeType, VxeColumnPropTypes, VxeTablePropTypes, VxeTooltipPropTypes, VxeTableDefines, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
|
|
2
|
+
import type { FileDataType } from '@qqt-product/ui/dist/lib/components/upload-file';
|
|
2
3
|
import type { DefineComponent, ShallowRef, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
|
|
3
4
|
import type { GlobalPageLayoutTypes } from '@qqt-product/ui';
|
|
4
5
|
import * as customConfigEdits from '../../../utils/global.types';
|
|
@@ -12,6 +13,12 @@ declare const _sfc_main: DefineComponent<{
|
|
|
12
13
|
required: true;
|
|
13
14
|
};
|
|
14
15
|
}, {
|
|
16
|
+
router: {
|
|
17
|
+
go: (num: number) => void;
|
|
18
|
+
push: (obj: {
|
|
19
|
+
path: string;
|
|
20
|
+
}) => void;
|
|
21
|
+
};
|
|
15
22
|
props: any;
|
|
16
23
|
qHttp: customConfigEdits.HttpClient;
|
|
17
24
|
showEdit: ShallowRef<boolean>;
|
|
@@ -84,6 +91,38 @@ declare const _sfc_main: DefineComponent<{
|
|
|
84
91
|
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
85
92
|
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
86
93
|
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
94
|
+
}[] | {
|
|
95
|
+
onConfirmBeforeUpload?: ((formData: FileDataType) => boolean) | undefined;
|
|
96
|
+
title: string;
|
|
97
|
+
i18nKey?: string | undefined;
|
|
98
|
+
key: string | symbol;
|
|
99
|
+
args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
|
|
100
|
+
[x: string]: unknown;
|
|
101
|
+
url: string;
|
|
102
|
+
};
|
|
103
|
+
authorityCode?: string | undefined;
|
|
104
|
+
attrs?: GlobalPageLayoutTypes.RecordString | undefined;
|
|
105
|
+
icon?: {
|
|
106
|
+
type: string;
|
|
107
|
+
size: number;
|
|
108
|
+
color?: string | undefined;
|
|
109
|
+
} | undefined;
|
|
110
|
+
emit?: boolean | undefined;
|
|
111
|
+
emitKey?: string | undefined;
|
|
112
|
+
showMessage?: boolean | undefined;
|
|
113
|
+
checkBefore?: boolean | undefined;
|
|
114
|
+
confirm?: {
|
|
115
|
+
title: string;
|
|
116
|
+
content: string;
|
|
117
|
+
} | undefined;
|
|
118
|
+
dropdown?: boolean | undefined;
|
|
119
|
+
isExistFrozenSource?: boolean | undefined;
|
|
120
|
+
isExistFrozenSourceUrl?: string | undefined;
|
|
121
|
+
isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordString) => GlobalPageLayoutTypes.RecordString) | undefined;
|
|
122
|
+
disabled?: ((pageData: GlobalPageLayoutTypes.RecordString) => boolean) | undefined;
|
|
123
|
+
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
124
|
+
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
125
|
+
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
87
126
|
}[] | undefined;
|
|
88
127
|
extend?: {
|
|
89
128
|
[x: string]: any;
|
|
@@ -2873,6 +2912,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2873
2912
|
handleValidateSuccess: (button: GlobalPageLayoutTypes.PageButton) => void;
|
|
2874
2913
|
getRoleOptains: () => Promise<void>;
|
|
2875
2914
|
getGroupOptains: () => Promise<void>;
|
|
2915
|
+
handlePageBack: () => void;
|
|
2876
2916
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
2877
2917
|
currentRow: {
|
|
2878
2918
|
type: null;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { SizeType, VxeTableDataRow, VxePagerPropTypes, VxeColumnSlotTypes, SlotVNodeType, VxeColumnPropTypes, VxeTablePropTypes, VxeTooltipPropTypes, VxeTableDefines, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
|
|
2
|
+
import type { FileDataType } from '@qqt-product/ui/dist/lib/components/upload-file';
|
|
2
3
|
import * as customConfigEdits from '../../../utils/global.types';
|
|
3
4
|
import type { DefineComponent, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
|
|
4
5
|
import type { GlobalPageLayoutTypes } from '@qqt-product/ui';
|
|
@@ -84,6 +85,38 @@ declare const _sfc_main: DefineComponent<{
|
|
|
84
85
|
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
85
86
|
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
86
87
|
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
88
|
+
}[] | {
|
|
89
|
+
onConfirmBeforeUpload?: ((formData: FileDataType) => boolean) | undefined;
|
|
90
|
+
title: string;
|
|
91
|
+
i18nKey?: string | undefined;
|
|
92
|
+
key: string | symbol;
|
|
93
|
+
args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
|
|
94
|
+
[x: string]: unknown;
|
|
95
|
+
url: string;
|
|
96
|
+
};
|
|
97
|
+
authorityCode?: string | undefined;
|
|
98
|
+
attrs?: GlobalPageLayoutTypes.RecordString | undefined;
|
|
99
|
+
icon?: {
|
|
100
|
+
type: string;
|
|
101
|
+
size: number;
|
|
102
|
+
color?: string | undefined;
|
|
103
|
+
} | undefined;
|
|
104
|
+
emit?: boolean | undefined;
|
|
105
|
+
emitKey?: string | undefined;
|
|
106
|
+
showMessage?: boolean | undefined;
|
|
107
|
+
checkBefore?: boolean | undefined;
|
|
108
|
+
confirm?: {
|
|
109
|
+
title: string;
|
|
110
|
+
content: string;
|
|
111
|
+
} | undefined;
|
|
112
|
+
dropdown?: boolean | undefined;
|
|
113
|
+
isExistFrozenSource?: boolean | undefined;
|
|
114
|
+
isExistFrozenSourceUrl?: string | undefined;
|
|
115
|
+
isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordString) => GlobalPageLayoutTypes.RecordString) | undefined;
|
|
116
|
+
disabled?: ((pageData: GlobalPageLayoutTypes.RecordString) => boolean) | undefined;
|
|
117
|
+
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
118
|
+
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
119
|
+
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
87
120
|
}[] | undefined;
|
|
88
121
|
extend?: {
|
|
89
122
|
[x: string]: any;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { SizeType, VxeTableDataRow, VxePagerPropTypes, VxeColumnSlotTypes, SlotVNodeType, VxeColumnPropTypes, VxeTablePropTypes, VxeTooltipPropTypes, VxeTableDefines, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
|
|
2
|
+
import type { FileDataType } from '@qqt-product/ui/dist/lib/components/upload-file';
|
|
2
3
|
import type { DefineComponent, ShallowRef, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
|
|
3
4
|
import type { GlobalPageLayoutTypes } from '@qqt-product/ui';
|
|
4
5
|
import * as customConfigEdits from '../../../utils/global.types';
|
|
@@ -13,6 +14,12 @@ declare const _sfc_main: DefineComponent<{
|
|
|
13
14
|
};
|
|
14
15
|
}, {
|
|
15
16
|
props: any;
|
|
17
|
+
router: {
|
|
18
|
+
go: (num: number) => void;
|
|
19
|
+
push: (obj: {
|
|
20
|
+
path: string;
|
|
21
|
+
}) => void;
|
|
22
|
+
};
|
|
16
23
|
qHttp: customConfigEdits.HttpClient;
|
|
17
24
|
showEdit: ShallowRef<boolean>;
|
|
18
25
|
currentRow: any;
|
|
@@ -84,6 +91,38 @@ declare const _sfc_main: DefineComponent<{
|
|
|
84
91
|
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
85
92
|
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
86
93
|
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
94
|
+
}[] | {
|
|
95
|
+
onConfirmBeforeUpload?: ((formData: FileDataType) => boolean) | undefined;
|
|
96
|
+
title: string;
|
|
97
|
+
i18nKey?: string | undefined;
|
|
98
|
+
key: string | symbol;
|
|
99
|
+
args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
|
|
100
|
+
[x: string]: unknown;
|
|
101
|
+
url: string;
|
|
102
|
+
};
|
|
103
|
+
authorityCode?: string | undefined;
|
|
104
|
+
attrs?: GlobalPageLayoutTypes.RecordString | undefined;
|
|
105
|
+
icon?: {
|
|
106
|
+
type: string;
|
|
107
|
+
size: number;
|
|
108
|
+
color?: string | undefined;
|
|
109
|
+
} | undefined;
|
|
110
|
+
emit?: boolean | undefined;
|
|
111
|
+
emitKey?: string | undefined;
|
|
112
|
+
showMessage?: boolean | undefined;
|
|
113
|
+
checkBefore?: boolean | undefined;
|
|
114
|
+
confirm?: {
|
|
115
|
+
title: string;
|
|
116
|
+
content: string;
|
|
117
|
+
} | undefined;
|
|
118
|
+
dropdown?: boolean | undefined;
|
|
119
|
+
isExistFrozenSource?: boolean | undefined;
|
|
120
|
+
isExistFrozenSourceUrl?: string | undefined;
|
|
121
|
+
isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordString) => GlobalPageLayoutTypes.RecordString) | undefined;
|
|
122
|
+
disabled?: ((pageData: GlobalPageLayoutTypes.RecordString) => boolean) | undefined;
|
|
123
|
+
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
124
|
+
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
125
|
+
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
87
126
|
}[] | undefined;
|
|
88
127
|
extend?: {
|
|
89
128
|
[x: string]: any;
|
|
@@ -2874,6 +2913,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2874
2913
|
getRoleOptains: () => Promise<void>;
|
|
2875
2914
|
getGroupOptains: () => Promise<void>;
|
|
2876
2915
|
subAccountDis: () => boolean;
|
|
2916
|
+
handlePageBack: () => void;
|
|
2877
2917
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
2878
2918
|
currentRow: {
|
|
2879
2919
|
type: null;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
+
import { MapObjectNoneType } from '../../../utils/global.types';
|
|
3
|
+
import type { VxeTableDataRow, VxeGridPropTypes, VxeTableDefines } from 'vxe-table';
|
|
4
|
+
declare const _sfc_main: DefineComponent<{}, {}, {
|
|
5
|
+
visible: boolean;
|
|
6
|
+
loading: boolean;
|
|
7
|
+
confirmLoading: boolean;
|
|
8
|
+
inputType: string;
|
|
9
|
+
dataSource: string;
|
|
10
|
+
keyWord: string;
|
|
11
|
+
columns: VxeTableDefines.ColumnOptions<VxeTableDataRow>[];
|
|
12
|
+
url: string;
|
|
13
|
+
queryParams: {};
|
|
14
|
+
tableData: never[];
|
|
15
|
+
tablePage: VxeGridPropTypes.PagerConfig;
|
|
16
|
+
}, {}, {
|
|
17
|
+
hanldeRadioChange(e: MapObjectNoneType): void;
|
|
18
|
+
loadData(): void;
|
|
19
|
+
open(): void;
|
|
20
|
+
close(): void;
|
|
21
|
+
selectedOk(): void;
|
|
22
|
+
handlePageChange({ currentPage, pageSize }: MapObjectNoneType): void;
|
|
23
|
+
onSearch(keyWord: string): void;
|
|
24
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
25
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
+
declare const _sfc_main: DefineComponent<{
|
|
3
|
+
currentEditRow: {
|
|
4
|
+
type: ObjectConstructor;
|
|
5
|
+
default(): {};
|
|
6
|
+
};
|
|
7
|
+
openTure: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
}, unknown, {
|
|
12
|
+
visible: boolean;
|
|
13
|
+
loading: boolean;
|
|
14
|
+
remoteJsFilePath: string;
|
|
15
|
+
modelLayout: string;
|
|
16
|
+
}, {}, {}, never, ComponentOptionsMixin, "update:openTure"[], "update:openTure", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
17
|
+
currentEditRow: {
|
|
18
|
+
type: ObjectConstructor;
|
|
19
|
+
default(): {};
|
|
20
|
+
};
|
|
21
|
+
openTure: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
}>> & {
|
|
26
|
+
"onUpdate:openTure"?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
}, {
|
|
28
|
+
openTure: boolean;
|
|
29
|
+
currentEditRow: Record<string, any>;
|
|
30
|
+
}, {}>;
|
|
31
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{
|
|
3
|
+
value: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
configData: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
default: () => {};
|
|
10
|
+
};
|
|
11
|
+
dictCode: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
}, unknown, {
|
|
16
|
+
dataFormatOptions: string[];
|
|
17
|
+
dataFloatOptions: {
|
|
18
|
+
key: number;
|
|
19
|
+
value: string;
|
|
20
|
+
}[];
|
|
21
|
+
realVue: string;
|
|
22
|
+
}, {}, {
|
|
23
|
+
inputChange(e: Event): void;
|
|
24
|
+
selectChange(val: string | number): void;
|
|
25
|
+
floatChange(val: string | number): void;
|
|
26
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, "change"[], "change", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
27
|
+
value: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
configData: {
|
|
32
|
+
type: ObjectConstructor;
|
|
33
|
+
default: () => {};
|
|
34
|
+
};
|
|
35
|
+
dictCode: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
}>> & {
|
|
40
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
}, {
|
|
42
|
+
value: string;
|
|
43
|
+
dictCode: string;
|
|
44
|
+
configData: Record<string, any>;
|
|
45
|
+
}, {}>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
configData: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
default: () => {};
|
|
10
|
+
};
|
|
11
|
+
dictCode: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
}, {
|
|
16
|
+
realVal: Ref<string>;
|
|
17
|
+
selectChange: (val: string | number) => void;
|
|
18
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "updateInfo" | "update:modelValue")[], "change" | "updateInfo" | "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
19
|
+
modelValue: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
configData: {
|
|
24
|
+
type: ObjectConstructor;
|
|
25
|
+
default: () => {};
|
|
26
|
+
};
|
|
27
|
+
dictCode: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
}>> & {
|
|
32
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
onUpdateInfo?: ((...args: any[]) => any) | undefined;
|
|
34
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
35
|
+
}, {
|
|
36
|
+
dictCode: string;
|
|
37
|
+
configData: Record<string, any>;
|
|
38
|
+
modelValue: string;
|
|
39
|
+
}, {}>;
|
|
40
|
+
export default _default;
|