@qqt-product/ui 0.0.11 → 0.0.13
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 +16 -16
- package/dist/components/ComponentsDemo.vue.d.ts +13 -0
- package/dist/components/EditPage.vue.d.ts +6011 -0
- package/dist/components/PreviewList.vue.d.ts +218 -0
- package/dist/components/hook/use-field-select-modal-hook.d.ts +288 -0
- package/dist/components/login.vue.d.ts +19 -0
- package/dist/components/mock.d.ts +260 -0
- package/dist/components/mockList.d.ts +44 -0
- package/dist/index.es.js +79530 -57898
- package/dist/index.umd.js +15319 -54
- package/dist/lib/components/breadcrumb/index.d.ts +10 -0
- package/dist/lib/components/breadcrumb/src/breadcrumb.vue.d.ts +7 -0
- package/dist/lib/components/card-list-layout/index.d.ts +147 -0
- package/dist/lib/components/card-list-layout/src/card-content.vue.d.ts +70 -0
- package/dist/lib/components/card-list-layout/src/cardItem.vue.d.ts +79 -0
- package/dist/lib/components/card-list-layout/src/index.vue.d.ts +144 -0
- package/dist/lib/components/card-list-layout/src/sidebar.vue.d.ts +30 -0
- package/dist/lib/components/card-list-layout/src/types.d.ts +41 -0
- package/dist/lib/components/cascader/index.d.ts +63 -62
- package/dist/lib/components/cascader/src/cascader-types.d.ts +18 -24
- package/dist/lib/components/cascader/src/cascader.vue.d.ts +86 -0
- package/dist/lib/components/cascader/src/use-cascader.d.ts +2 -2
- package/dist/lib/components/checkbox/index.d.ts +113 -0
- package/dist/lib/components/checkbox/src/checkbox-types.d.ts +62 -0
- package/dist/lib/components/{select/src/select.d.ts → checkbox/src/checkbox.vue.d.ts} +53 -48
- package/dist/lib/components/checkbox/src/use-checkbox.d.ts +2 -0
- package/dist/lib/components/codeEditorModel/index.d.ts +187 -0
- package/dist/lib/components/codeEditorModel/src/codeEditorModel.vue.d.ts +184 -0
- package/dist/lib/components/collapse-transition/index.d.ts +16 -0
- package/dist/lib/components/collapse-transition/src/collapse-transition.vue.d.ts +15 -0
- package/dist/lib/components/coutdown/index.d.ts +94 -0
- package/dist/lib/components/coutdown/src/coutdown.d.ts +56 -0
- package/dist/lib/components/coutdown/src/coutdown.vue.d.ts +99 -0
- package/dist/lib/components/currency/index.d.ts +109 -0
- package/dist/lib/components/currency/src/currency-type.d.ts +47 -0
- package/dist/lib/components/currency/src/currency.vue.d.ts +105 -0
- package/dist/lib/components/currency/src/use-currency.d.ts +2 -0
- package/dist/lib/components/currency/src/use-methods.d.ts +14 -0
- package/dist/lib/components/detail-form/index.d.ts +102 -0
- package/dist/lib/components/detail-form/src/detail-form.vue.d.ts +99 -0
- package/dist/lib/components/detail-form/src/use-detail-form.d.ts +2 -0
- package/dist/lib/components/detail-grid/index.d.ts +2633 -0
- package/dist/lib/components/detail-grid/src/detail-grid.vue.d.ts +2630 -0
- package/dist/lib/components/detail-grid/src/hook/use-grid-config-hook.d.ts +10 -0
- package/dist/lib/components/detail-grid/src/use-detail-grid.d.ts +2 -0
- package/dist/lib/components/detail-page-layout/index.d.ts +186 -0
- package/dist/lib/components/detail-page-layout/src/detail-page-layout.vue.d.ts +183 -0
- package/dist/lib/components/detail-page-layout/src/use-detail-page-layout.d.ts +2 -0
- package/dist/lib/components/edit-form/index.d.ts +103 -62
- package/dist/lib/components/edit-form/src/edit-form-types.d.ts +29 -25
- package/dist/lib/components/edit-form/src/edit-form.vue.d.ts +104 -62
- package/dist/lib/components/edit-form/src/hook/use-callback-hook.d.ts +11 -0
- package/dist/lib/components/edit-form/src/hook/use-form-config-hook.d.ts +8 -0
- package/dist/lib/components/edit-form/src/use-edit-form.d.ts +1 -1
- package/dist/lib/components/edit-grid/index.d.ts +126 -89
- package/dist/lib/components/edit-grid/src/components/empty/index.d.ts +8 -0
- package/dist/lib/components/edit-grid/src/edit-grid-types.d.ts +34 -25
- package/dist/lib/components/edit-grid/src/edit-grid.vue.d.ts +126 -89
- package/dist/lib/components/edit-grid/src/hook/use-grid-config-hook.d.ts +10 -0
- package/dist/lib/components/edit-grid/src/hook/use-grid-height-hook.d.ts +4 -0
- package/dist/lib/components/edit-grid/src/use-edit-grid.d.ts +1 -1
- package/dist/lib/components/edit-page-layout/index.d.ts +66 -10
- package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +210 -42
- package/dist/lib/components/edit-page-layout/src/edit-page-layout.vue.d.ts +66 -10
- package/dist/lib/components/edit-page-layout/src/types.d.ts +1 -0
- package/dist/lib/components/editor/index.d.ts +31 -0
- package/dist/lib/components/editor/src/index.vue.d.ts +28 -0
- package/dist/lib/components/field-select-modal/index.d.ts +150 -0
- package/dist/lib/components/field-select-modal/src/field-select-modal-types.d.ts +85 -0
- package/dist/lib/components/field-select-modal/src/field-select-modal.vue.d.ts +146 -0
- package/dist/lib/components/field-select-modal/src/use-field-select-modal.d.ts +6 -0
- package/dist/lib/components/index.d.ts +23 -3
- package/dist/lib/components/item-wrap/index.d.ts +57 -0
- package/dist/lib/components/item-wrap/src/item-wrap-types.d.ts +27 -0
- package/dist/lib/components/item-wrap/src/item-wrap.vue.d.ts +53 -0
- package/dist/lib/components/item-wrap/src/use-item-wrap.d.ts +2 -0
- package/dist/lib/components/layout/index.d.ts +93 -12
- package/dist/lib/components/layout/src/header/index.vue.d.ts +223 -0
- package/dist/lib/components/layout/src/header/navRight/customMessage.vue.d.ts +8 -17
- package/dist/lib/components/layout/src/header/navRight/customPerson.vue.d.ts +19 -0
- package/dist/lib/components/layout/src/header/navRight/index.vue.d.ts +176 -0
- package/dist/lib/components/layout/src/header/navRight/langSwitch.vue.d.ts +26 -6
- package/dist/lib/components/layout/src/header/navRight/rightTool.vue.d.ts +27 -45
- package/dist/lib/components/layout/src/header/navRight/settingDrawer.vue.d.ts +34 -0
- package/dist/lib/components/layout/src/index.vue.d.ts +93 -26
- package/dist/lib/components/layout/src/menu/deepCycleSubMenu.vue.d.ts +4 -1
- package/dist/lib/components/layout/src/menu/menu.vue.d.ts +56 -72
- package/dist/lib/components/layout/src/menu/secondLevelMenu.vue.d.ts +4 -22
- package/dist/lib/components/layout/src/menu/subSecondMenu.vue.d.ts +3 -21
- package/dist/lib/components/layout/src/sider/index.vue.d.ts +23 -24
- package/dist/lib/components/layout/src/sider/logo.vue.d.ts +1 -10
- package/dist/lib/components/layout/src/sider/search.vue.d.ts +77 -2
- package/dist/lib/components/layout/src/types.d.ts +68 -0
- package/dist/lib/components/{layout-auchor → layout-anchor}/index.d.ts +9 -6
- package/dist/lib/components/{layout-auchor/src/layout-auchor-types.d.ts → layout-anchor/src/layout-anchor-types.d.ts} +3 -3
- package/dist/lib/components/{layout-auchor → layout-anchor}/src/layout-auchor.vue.d.ts +6 -3
- package/dist/lib/components/layout-anchor/src/use-layout-anchor.d.ts +2 -0
- package/dist/lib/components/layout-buttons/index.d.ts +38 -1
- package/dist/lib/components/layout-buttons/src/layout-buttons-types.d.ts +17 -1
- package/dist/lib/components/layout-buttons/src/layout-buttons.vue.d.ts +38 -1
- package/dist/lib/components/layout-buttons/src/use-layout-buttons.d.ts +1 -1
- package/dist/lib/components/layout-pattern/index.d.ts +7 -13
- package/dist/lib/components/layout-pattern/src/components/vertical.vue.d.ts +34 -4
- package/dist/lib/components/layout-pattern/src/layout-pattern-types.d.ts +4 -6
- package/dist/lib/components/layout-pattern/src/layout-pattern.vue.d.ts +7 -13
- package/dist/lib/components/list-page-layout/index.d.ts +244 -0
- package/dist/lib/components/list-page-layout/src/components/common/add-modal/add-modal.vue.d.ts +21 -0
- package/dist/lib/components/list-page-layout/src/components/common/columnSetting/columnSetting.vue.d.ts +293 -0
- package/dist/lib/components/list-page-layout/src/components/common/columnSetting/use-grid-slot-hook.d.ts +22 -0
- package/dist/lib/components/list-page-layout/src/components/common/edit-nav-modal/edit-nav-modal.vue.d.ts +16 -0
- package/dist/lib/components/list-page-layout/src/components/common/edit-nav-modal/types.d.ts +4 -0
- package/dist/lib/components/list-page-layout/src/components/common/help-text-modal/help-text-modal.vue.d.ts +8 -0
- package/dist/lib/components/list-page-layout/src/components/common/import-modal/import-modal.vue.d.ts +40 -0
- package/dist/lib/components/list-page-layout/src/components/common/record-modal/mock.d.ts +48 -0
- package/dist/lib/components/list-page-layout/src/components/common/record-modal/record-modal.vue.d.ts +5088 -0
- package/dist/lib/components/list-page-layout/src/components/list-content/events-helper.d.ts +13 -0
- package/dist/lib/components/list-page-layout/src/components/list-content/list-content.vue.d.ts +95 -0
- package/dist/lib/components/list-page-layout/src/components/list-content-buttons/events-helper.d.ts +6 -0
- package/dist/lib/components/list-page-layout/src/components/list-content-buttons/list-content-buttons.vue.d.ts +33 -0
- package/dist/lib/components/list-page-layout/src/components/list-header/list-header.vue.d.ts +27 -0
- package/dist/lib/components/list-page-layout/src/components/list-header/module/query/index.vue.d.ts +15 -0
- package/dist/lib/components/list-page-layout/src/components/list-header/module/quick-nav/index.vue.d.ts +9 -0
- package/dist/lib/components/list-page-layout/src/components/list-header/module/searchExtend/index.vue.d.ts +103 -0
- package/dist/lib/components/list-page-layout/src/components/list-header/module/tabs/index.vue.d.ts +56 -0
- package/dist/lib/components/list-page-layout/src/hooks/export-xls-hook.d.ts +4 -0
- package/dist/lib/components/list-page-layout/src/hooks/fetch-data-hook.d.ts +5 -0
- package/dist/lib/components/list-page-layout/src/hooks/fetch-head-data-hook.d.ts +6 -0
- package/dist/lib/components/list-page-layout/src/hooks/get-columns-hook.d.ts +6 -0
- package/dist/lib/components/list-page-layout/src/hooks/list-slot-hook.d.ts +9 -0
- package/dist/lib/components/list-page-layout/src/hooks/use-button-function-hook.d.ts +13 -0
- package/dist/lib/components/list-page-layout/src/layout.vue.d.ts +238 -0
- package/dist/lib/components/list-page-layout/src/list-page-layout-types.d.ts +358 -0
- package/dist/lib/components/list-page-layout/src/symbol.d.ts +11 -0
- package/dist/lib/components/list-page-layout/src/tokens.d.ts +12 -0
- package/dist/lib/components/list-page-layout/src/types.d.ts +1 -0
- package/dist/lib/components/list-page-layout/src/utils/gridConfig.d.ts +174 -0
- package/dist/lib/components/page-layout/index.d.ts +11 -1
- package/dist/lib/components/page-layout/src/constant/buttons.d.ts +10 -0
- package/dist/lib/components/page-layout/src/constant/index.d.ts +3 -0
- package/dist/lib/components/page-layout/src/constant/items.d.ts +3 -0
- package/dist/lib/components/page-layout/src/constant/symbol.d.ts +15 -0
- package/dist/lib/components/page-layout/src/hook/use-merge-defaultValues-hook.d.ts +6 -0
- package/dist/lib/components/page-layout/src/hook/use-page-data-hook.d.ts +6 -0
- package/dist/lib/components/page-layout/src/hook/use-promise-step.d.ts +26 -0
- package/dist/lib/components/page-layout/src/hook/use-ref-instance-hook.d.ts +7 -0
- package/dist/lib/components/page-layout/src/hook/use-remote-config-hook.d.ts +5 -2
- package/dist/lib/components/page-layout/src/page-layout-types.d.ts +1 -1
- package/dist/lib/components/page-layout/src/page-layout.vue.d.ts +6 -1
- package/dist/lib/components/page-layout/src/token.d.ts +7 -1
- package/dist/lib/components/page-layout/src/util.d.ts +10 -35
- package/dist/lib/components/radio/index.d.ts +104 -0
- package/dist/lib/components/radio/src/radio-types.d.ts +56 -0
- package/dist/lib/components/radio/src/radio.vue.d.ts +100 -0
- package/dist/lib/components/radio/src/use-radio.d.ts +2 -0
- package/dist/lib/components/remote-select/index.d.ts +122 -0
- package/dist/lib/components/remote-select/src/remote-select-types.d.ts +50 -0
- package/dist/lib/components/remote-select/src/remote-select.vue.d.ts +118 -0
- package/dist/lib/components/remote-select/src/use-remote-select.d.ts +6 -0
- package/dist/lib/components/select/index.d.ts +29 -42
- package/dist/lib/components/select/src/select-types.d.ts +6 -17
- package/dist/lib/components/select/src/select.vue.d.ts +91 -0
- package/dist/lib/components/select/src/use-select.d.ts +2 -2
- package/dist/lib/components/select-modal/index.d.ts +329 -0
- package/dist/lib/components/select-modal/src/select-modal-types.d.ts +51 -0
- package/dist/lib/components/select-modal/src/select-modal.vue.d.ts +325 -0
- package/dist/lib/components/select-modal/src/use-select-modal.d.ts +6 -0
- package/dist/lib/components/shared/hooks/use-namespace-last.d.ts +23 -0
- package/dist/lib/components/shared/hooks/use-namespace.d.ts +4 -4
- package/dist/lib/components/switch/index.d.ts +8 -7
- package/dist/lib/components/switch/src/switch-types.d.ts +1 -3
- package/dist/lib/components/switch/src/{switch.d.ts → switch.vue.d.ts} +9 -8
- package/dist/lib/components/tree-select/index.d.ts +114 -0
- package/dist/lib/components/tree-select/src/tree-select-types.d.ts +60 -0
- package/dist/lib/components/tree-select/src/tree-select.vue.d.ts +110 -0
- package/dist/lib/components/tree-select/src/use-tree-select.d.ts +2 -0
- package/dist/lib/components/upload-file/index.d.ts +266 -0
- package/dist/lib/components/upload-file/src/hook/use-file-column-hook.d.ts +20 -0
- package/dist/lib/components/upload-file/src/hook/use-operation-column-button-hook.d.ts +11 -0
- package/dist/lib/components/upload-file/src/hook/use-operation-column-hook.d.ts +15 -0
- package/dist/lib/components/upload-file/src/upload-file-types.d.ts +154 -0
- package/dist/lib/components/upload-file/src/upload-file.vue.d.ts +258 -0
- package/dist/lib/components/upload-image/index.d.ts +191 -0
- package/dist/lib/components/upload-image/src/upload-image-type.d.ts +53 -0
- package/dist/lib/components/upload-image/src/upload-image.vue.d.ts +187 -0
- package/dist/lib/components/vxe-select/index.d.ts +116 -0
- package/dist/lib/components/vxe-select/src/use-vxe-select.d.ts +2 -0
- package/dist/lib/components/vxe-select/src/vxe-select-types.d.ts +58 -0
- package/dist/lib/components/vxe-select/src/vxe-select.vue.d.ts +112 -0
- package/dist/lib/index.d.ts +16 -2
- package/dist/lib/plugins/table/pro/vxe-table-pro.es6.min.d.ts +7 -7
- package/dist/lib/setting/vxe-table/config.d.ts +3 -0
- package/dist/lib/utils/event.d.ts +37 -0
- package/dist/router/index.d.ts +4 -0
- package/dist/stores/user.d.ts +25 -0
- package/dist/style.css +6 -8
- package/dist/utils/qApiPlugin.d.ts +6 -0
- package/dist/views/dashboard/workspace.vue.d.ts +6972 -0
- package/dist/vite-env.d.ts +23 -8
- package/package.json +25 -12
- package/dist/lib/components/cascader/src/cascader.d.ts +0 -85
- package/dist/lib/components/layout/src/menu/icon.d.ts +0 -6
- package/dist/lib/components/layout-auchor/src/use-layout-auchor.d.ts +0 -2
- package/dist/lib/components/layout-header/index.d.ts +0 -17
- package/dist/lib/components/layout-header/src/layout-header-types.d.ts +0 -8
- package/dist/lib/components/layout-header/src/layout-header.vue.d.ts +0 -13
- package/dist/lib/components/layout-header/src/use-layout-header.d.ts +0 -2
- package/dist/lib/constant/constant.d.ts +0 -1
- package/dist/lib/types/ComponentCustomProperties .d.ts +0 -6
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
1
|
+
import type { Menu, UserInfoType } from './src/types';
|
|
2
|
+
import type { DefineComponent, PropType, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
3
3
|
import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
|
|
4
4
|
import QQTLayout from './src/index.vue';
|
|
5
5
|
export { QQTLayout };
|
|
6
6
|
declare const _default: SFCWithInstall<DefineComponent<{
|
|
7
|
+
internalOrExternal: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
7
11
|
version: {
|
|
8
12
|
type: StringConstructor;
|
|
9
13
|
};
|
|
@@ -27,10 +31,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
27
31
|
};
|
|
28
32
|
menus: {
|
|
29
33
|
type: {
|
|
30
|
-
(arrayLength: number):
|
|
31
|
-
(...items:
|
|
32
|
-
new (arrayLength: number):
|
|
33
|
-
new (...items:
|
|
34
|
+
(arrayLength: number): Menu[];
|
|
35
|
+
(...items: Menu[]): Menu[];
|
|
36
|
+
new (arrayLength: number): Menu[];
|
|
37
|
+
new (...items: Menu[]): Menu[];
|
|
34
38
|
isArray(arg: any): arg is any[];
|
|
35
39
|
readonly prototype: any[];
|
|
36
40
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
@@ -46,6 +50,42 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
46
50
|
type: StringConstructor;
|
|
47
51
|
default: string;
|
|
48
52
|
};
|
|
53
|
+
logoutEvent: {
|
|
54
|
+
type: FunctionConstructor;
|
|
55
|
+
};
|
|
56
|
+
userInfo: {
|
|
57
|
+
type: PropType<UserInfoType>;
|
|
58
|
+
};
|
|
59
|
+
defaultLanguage: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
};
|
|
62
|
+
switchLanguageEvent: {
|
|
63
|
+
type: FunctionConstructor;
|
|
64
|
+
};
|
|
65
|
+
msgRecord: {
|
|
66
|
+
type: FunctionConstructor;
|
|
67
|
+
};
|
|
68
|
+
personalSetting: {
|
|
69
|
+
type: FunctionConstructor;
|
|
70
|
+
};
|
|
71
|
+
tanentPageHome: {
|
|
72
|
+
type: FunctionConstructor;
|
|
73
|
+
};
|
|
74
|
+
shoppingMall: {
|
|
75
|
+
type: FunctionConstructor;
|
|
76
|
+
};
|
|
77
|
+
webFinancialCloud: {
|
|
78
|
+
type: FunctionConstructor;
|
|
79
|
+
};
|
|
80
|
+
webProcurement: {
|
|
81
|
+
type: FunctionConstructor;
|
|
82
|
+
};
|
|
83
|
+
chat: {
|
|
84
|
+
type: FunctionConstructor;
|
|
85
|
+
};
|
|
86
|
+
kefu: {
|
|
87
|
+
type: FunctionConstructor;
|
|
88
|
+
};
|
|
49
89
|
}, {
|
|
50
90
|
menuSelect: (obj: any) => void;
|
|
51
91
|
scheduleClick: () => void;
|
|
@@ -53,10 +93,14 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
53
93
|
layoutAreaClick: (e: {
|
|
54
94
|
target: Node | null;
|
|
55
95
|
}) => void;
|
|
56
|
-
updateMenuShow: () => void;
|
|
96
|
+
updateMenuShow: (flag: boolean) => void;
|
|
57
97
|
secondMenuShow: Ref<boolean>;
|
|
58
98
|
siderRef: Ref<any>;
|
|
59
99
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("menuSelect" | "schedule-click" | "services-click")[], "menuSelect" | "schedule-click" | "services-click", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
100
|
+
internalOrExternal: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
60
104
|
version: {
|
|
61
105
|
type: StringConstructor;
|
|
62
106
|
};
|
|
@@ -80,10 +124,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
80
124
|
};
|
|
81
125
|
menus: {
|
|
82
126
|
type: {
|
|
83
|
-
(arrayLength: number):
|
|
84
|
-
(...items:
|
|
85
|
-
new (arrayLength: number):
|
|
86
|
-
new (...items:
|
|
127
|
+
(arrayLength: number): Menu[];
|
|
128
|
+
(...items: Menu[]): Menu[];
|
|
129
|
+
new (arrayLength: number): Menu[];
|
|
130
|
+
new (...items: Menu[]): Menu[];
|
|
87
131
|
isArray(arg: any): arg is any[];
|
|
88
132
|
readonly prototype: any[];
|
|
89
133
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
@@ -99,13 +143,50 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
99
143
|
type: StringConstructor;
|
|
100
144
|
default: string;
|
|
101
145
|
};
|
|
146
|
+
logoutEvent: {
|
|
147
|
+
type: FunctionConstructor;
|
|
148
|
+
};
|
|
149
|
+
userInfo: {
|
|
150
|
+
type: PropType<UserInfoType>;
|
|
151
|
+
};
|
|
152
|
+
defaultLanguage: {
|
|
153
|
+
type: StringConstructor;
|
|
154
|
+
};
|
|
155
|
+
switchLanguageEvent: {
|
|
156
|
+
type: FunctionConstructor;
|
|
157
|
+
};
|
|
158
|
+
msgRecord: {
|
|
159
|
+
type: FunctionConstructor;
|
|
160
|
+
};
|
|
161
|
+
personalSetting: {
|
|
162
|
+
type: FunctionConstructor;
|
|
163
|
+
};
|
|
164
|
+
tanentPageHome: {
|
|
165
|
+
type: FunctionConstructor;
|
|
166
|
+
};
|
|
167
|
+
shoppingMall: {
|
|
168
|
+
type: FunctionConstructor;
|
|
169
|
+
};
|
|
170
|
+
webFinancialCloud: {
|
|
171
|
+
type: FunctionConstructor;
|
|
172
|
+
};
|
|
173
|
+
webProcurement: {
|
|
174
|
+
type: FunctionConstructor;
|
|
175
|
+
};
|
|
176
|
+
chat: {
|
|
177
|
+
type: FunctionConstructor;
|
|
178
|
+
};
|
|
179
|
+
kefu: {
|
|
180
|
+
type: FunctionConstructor;
|
|
181
|
+
};
|
|
102
182
|
}>> & {
|
|
103
183
|
onMenuSelect?: ((...args: any[]) => any) | undefined;
|
|
104
184
|
"onSchedule-click"?: ((...args: any[]) => any) | undefined;
|
|
105
185
|
"onServices-click"?: ((...args: any[]) => any) | undefined;
|
|
106
186
|
}, {
|
|
187
|
+
menus: Menu[];
|
|
107
188
|
layoutMode: string;
|
|
108
|
-
|
|
189
|
+
internalOrExternal: boolean;
|
|
109
190
|
collapsible: boolean;
|
|
110
191
|
}>>;
|
|
111
192
|
export default _default;
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
import type { CheckOutlinedIconType } from '@ant-design/icons-vue/lib/icons/CheckOutlined';
|
|
2
|
+
import type { ColorListType } from '../types';
|
|
3
|
+
import type { LogoutOutlinedIconType } from '@ant-design/icons-vue/lib/icons/LogoutOutlined';
|
|
4
|
+
import type { SettingOutlinedIconType } from '@ant-design/icons-vue/lib/icons/SettingOutlined';
|
|
5
|
+
import type { DefaultOptionType } from 'ant-design-vue/lib/select';
|
|
6
|
+
import type { Request } from '@qqt-product/api/dist/utils/request';
|
|
7
|
+
import type { DefineComponent, Ref, PropType, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
8
|
+
declare const _sfc_main: DefineComponent<{}, {
|
|
9
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number) => string;
|
|
10
|
+
tanentPageHome: () => void;
|
|
11
|
+
shoppingMall: () => void;
|
|
12
|
+
webFinancialCloud: () => void;
|
|
13
|
+
webProcurement: () => void;
|
|
14
|
+
btns: Ref<{
|
|
15
|
+
title: string;
|
|
16
|
+
icon: string;
|
|
17
|
+
type: string;
|
|
18
|
+
color?: string | undefined;
|
|
19
|
+
}[]>;
|
|
20
|
+
linkHandle: (type: string) => void;
|
|
21
|
+
readonly QIcon: DefineComponent<{
|
|
22
|
+
type: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
size: {
|
|
27
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
28
|
+
};
|
|
29
|
+
color: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
};
|
|
32
|
+
}, {
|
|
33
|
+
fontSize: ComputedRef<{
|
|
34
|
+
fontSize: string;
|
|
35
|
+
}>;
|
|
36
|
+
iconType: ComputedRef<string>;
|
|
37
|
+
iconColor: ComputedRef<{
|
|
38
|
+
color: string;
|
|
39
|
+
}>;
|
|
40
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
41
|
+
type: {
|
|
42
|
+
type: PropType<string>;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
size: {
|
|
46
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
47
|
+
};
|
|
48
|
+
color: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
};
|
|
51
|
+
}>>, {
|
|
52
|
+
type: string;
|
|
53
|
+
}>;
|
|
54
|
+
navRight: DefineComponent<{}, {
|
|
55
|
+
showDrawer: Ref<boolean>;
|
|
56
|
+
showGlobalStyleDrawer: () => void;
|
|
57
|
+
handleDrawerClosed: () => void;
|
|
58
|
+
rightTool: DefineComponent<{}, {
|
|
59
|
+
lightTheme: Ref<"dark" | "light">;
|
|
60
|
+
darkTheme: Ref<"dark" | "light">;
|
|
61
|
+
Q_APPLICATION_CONFIG: {
|
|
62
|
+
updateTheme: () => void;
|
|
63
|
+
theme: string;
|
|
64
|
+
};
|
|
65
|
+
handleChat: () => void;
|
|
66
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
|
|
67
|
+
handleKefu: () => void;
|
|
68
|
+
theme: string;
|
|
69
|
+
updateTheme: () => void;
|
|
70
|
+
list: Ref<{
|
|
71
|
+
title: string;
|
|
72
|
+
icon: string;
|
|
73
|
+
type: string;
|
|
74
|
+
color?: string | undefined;
|
|
75
|
+
}[]>;
|
|
76
|
+
iconToolClick: (type: string) => void;
|
|
77
|
+
openChat: () => void;
|
|
78
|
+
fetchCustomer: () => void;
|
|
79
|
+
readonly QSymbolIcon: DefineComponent<{
|
|
80
|
+
type: {
|
|
81
|
+
type: PropType<string>;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
size: {
|
|
85
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
86
|
+
};
|
|
87
|
+
color: {
|
|
88
|
+
type: StringConstructor;
|
|
89
|
+
};
|
|
90
|
+
}, {
|
|
91
|
+
fontSize: ComputedRef<string>;
|
|
92
|
+
iconType: ComputedRef<string>;
|
|
93
|
+
iconColor: ComputedRef<string>;
|
|
94
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
95
|
+
type: {
|
|
96
|
+
type: PropType<string>;
|
|
97
|
+
default: string;
|
|
98
|
+
};
|
|
99
|
+
size: {
|
|
100
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
101
|
+
};
|
|
102
|
+
color: {
|
|
103
|
+
type: StringConstructor;
|
|
104
|
+
};
|
|
105
|
+
}>>, {
|
|
106
|
+
type: string;
|
|
107
|
+
}>;
|
|
108
|
+
message: DefineComponent<{}, {
|
|
109
|
+
handleMsgRecord: () => void;
|
|
110
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
|
|
111
|
+
msgTotal: Ref<number>;
|
|
112
|
+
toElsMsgRecord: () => void;
|
|
113
|
+
readonly QSymbolIcon: DefineComponent<{
|
|
114
|
+
type: {
|
|
115
|
+
type: PropType<string>;
|
|
116
|
+
default: string;
|
|
117
|
+
};
|
|
118
|
+
size: {
|
|
119
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
120
|
+
};
|
|
121
|
+
color: {
|
|
122
|
+
type: StringConstructor;
|
|
123
|
+
};
|
|
124
|
+
}, {
|
|
125
|
+
fontSize: ComputedRef<string>;
|
|
126
|
+
iconType: ComputedRef<string>;
|
|
127
|
+
iconColor: ComputedRef<string>;
|
|
128
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
129
|
+
type: {
|
|
130
|
+
type: PropType<string>;
|
|
131
|
+
default: string;
|
|
132
|
+
};
|
|
133
|
+
size: {
|
|
134
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
135
|
+
};
|
|
136
|
+
color: {
|
|
137
|
+
type: StringConstructor;
|
|
138
|
+
};
|
|
139
|
+
}>>, {
|
|
140
|
+
type: string;
|
|
141
|
+
}>;
|
|
142
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
143
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
144
|
+
langSwitch: DefineComponent<{}, {
|
|
145
|
+
request: Request;
|
|
146
|
+
defaultLanguage: string;
|
|
147
|
+
switchLanguage: (lang: string) => void;
|
|
148
|
+
userInfo: {
|
|
149
|
+
token: string;
|
|
150
|
+
srmVersion: string;
|
|
151
|
+
userInfo: {
|
|
152
|
+
id: string;
|
|
153
|
+
elsAccount: string;
|
|
154
|
+
subAccount: string;
|
|
155
|
+
realname: string;
|
|
156
|
+
avatar: string;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
langs: Ref<{
|
|
160
|
+
[x: string]: any;
|
|
161
|
+
label?: any;
|
|
162
|
+
value?: string | number | null | undefined;
|
|
163
|
+
children?: Omit<DefaultOptionType, "children">[] | undefined;
|
|
164
|
+
disabled?: boolean | undefined;
|
|
165
|
+
}[] | undefined>;
|
|
166
|
+
getData: () => void;
|
|
167
|
+
currentLang: Ref<string>;
|
|
168
|
+
changeLangHandle: () => void;
|
|
169
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
170
|
+
customPerson: DefineComponent<{}, {
|
|
171
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
|
|
172
|
+
userInfo: {
|
|
173
|
+
token: string;
|
|
174
|
+
srmVersion: string;
|
|
175
|
+
userInfo: {
|
|
176
|
+
id: string;
|
|
177
|
+
elsAccount: string;
|
|
178
|
+
subAccount: string;
|
|
179
|
+
realname: string;
|
|
180
|
+
avatar: string;
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
personalSetting: () => void;
|
|
184
|
+
handleLogout: () => void;
|
|
185
|
+
nickname: Ref<string>;
|
|
186
|
+
avatarUrl: Ref<string>;
|
|
187
|
+
handlePersonalSettings: () => void;
|
|
188
|
+
readonly SettingOutlined: SettingOutlinedIconType;
|
|
189
|
+
readonly LogoutOutlined: LogoutOutlinedIconType;
|
|
190
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
191
|
+
settingDrawer: DefineComponent<{
|
|
192
|
+
visible: {
|
|
193
|
+
type: BooleanConstructor;
|
|
194
|
+
required: true;
|
|
195
|
+
};
|
|
196
|
+
}, {
|
|
197
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
|
|
198
|
+
props: any;
|
|
199
|
+
emit: (event: "handleClosed", ...args: any[]) => void;
|
|
200
|
+
drawerVisible: Ref<boolean>;
|
|
201
|
+
primaryColor: Ref<string>;
|
|
202
|
+
colorList: ColorListType[];
|
|
203
|
+
changeColor: (color: string) => void;
|
|
204
|
+
close: () => void;
|
|
205
|
+
colorState: {
|
|
206
|
+
primaryColor: string;
|
|
207
|
+
errorColor: string;
|
|
208
|
+
warningColor: string;
|
|
209
|
+
successColor: string;
|
|
210
|
+
infoColor: string;
|
|
211
|
+
};
|
|
212
|
+
readonly CheckOutlined: CheckOutlinedIconType;
|
|
213
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "handleClosed"[], "handleClosed", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
214
|
+
visible: {
|
|
215
|
+
type: BooleanConstructor;
|
|
216
|
+
required: true;
|
|
217
|
+
};
|
|
218
|
+
}>> & {
|
|
219
|
+
onHandleClosed?: ((...args: any[]) => any) | undefined;
|
|
220
|
+
}, {}>;
|
|
221
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
222
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
223
|
+
export default _sfc_main;
|
|
@@ -1,46 +1,37 @@
|
|
|
1
|
-
import type { iconTypes } from '@qqt-product/icons';
|
|
2
1
|
import type { DefineComponent, Ref, PropType, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
3
2
|
declare const _sfc_main: DefineComponent<{}, {
|
|
3
|
+
handleMsgRecord: () => void;
|
|
4
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number) => string;
|
|
4
5
|
msgTotal: Ref<number>;
|
|
5
6
|
toElsMsgRecord: () => void;
|
|
6
|
-
readonly
|
|
7
|
+
readonly QSymbolIcon: DefineComponent<{
|
|
7
8
|
type: {
|
|
8
|
-
type: PropType<
|
|
9
|
+
type: PropType<string>;
|
|
9
10
|
default: string;
|
|
10
11
|
};
|
|
11
12
|
size: {
|
|
12
13
|
type: (StringConstructor | NumberConstructor)[];
|
|
13
|
-
default: number;
|
|
14
14
|
};
|
|
15
15
|
color: {
|
|
16
16
|
type: StringConstructor;
|
|
17
|
-
default: string;
|
|
18
17
|
};
|
|
19
18
|
}, {
|
|
20
|
-
fontSize: ComputedRef<
|
|
21
|
-
fontSize: string;
|
|
22
|
-
}>;
|
|
19
|
+
fontSize: ComputedRef<string>;
|
|
23
20
|
iconType: ComputedRef<string>;
|
|
24
|
-
iconColor: ComputedRef<
|
|
25
|
-
color: string;
|
|
26
|
-
}>;
|
|
21
|
+
iconColor: ComputedRef<string>;
|
|
27
22
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
28
23
|
type: {
|
|
29
|
-
type: PropType<
|
|
24
|
+
type: PropType<string>;
|
|
30
25
|
default: string;
|
|
31
26
|
};
|
|
32
27
|
size: {
|
|
33
28
|
type: (StringConstructor | NumberConstructor)[];
|
|
34
|
-
default: number;
|
|
35
29
|
};
|
|
36
30
|
color: {
|
|
37
31
|
type: StringConstructor;
|
|
38
|
-
default: string;
|
|
39
32
|
};
|
|
40
33
|
}>>, {
|
|
41
|
-
type:
|
|
42
|
-
size: string | number;
|
|
43
|
-
color: string;
|
|
34
|
+
type: string;
|
|
44
35
|
}>;
|
|
45
36
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
46
37
|
export default _sfc_main;
|
|
@@ -1,6 +1,25 @@
|
|
|
1
|
+
import type { LogoutOutlinedIconType } from '@ant-design/icons-vue/lib/icons/LogoutOutlined';
|
|
2
|
+
import type { SettingOutlinedIconType } from '@ant-design/icons-vue/lib/icons/SettingOutlined';
|
|
1
3
|
import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
4
|
declare const _sfc_main: DefineComponent<{}, {
|
|
5
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number) => string;
|
|
6
|
+
userInfo: {
|
|
7
|
+
token: string;
|
|
8
|
+
srmVersion: string;
|
|
9
|
+
userInfo: {
|
|
10
|
+
id: string;
|
|
11
|
+
elsAccount: string;
|
|
12
|
+
subAccount: string;
|
|
13
|
+
realname: string;
|
|
14
|
+
avatar: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
personalSetting: () => void;
|
|
18
|
+
handleLogout: () => void;
|
|
3
19
|
nickname: Ref<string>;
|
|
4
20
|
avatarUrl: Ref<string>;
|
|
21
|
+
handlePersonalSettings: () => void;
|
|
22
|
+
readonly SettingOutlined: SettingOutlinedIconType;
|
|
23
|
+
readonly LogoutOutlined: LogoutOutlinedIconType;
|
|
5
24
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
6
25
|
export default _sfc_main;
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
import type { CheckOutlinedIconType } from '@ant-design/icons-vue/lib/icons/CheckOutlined';
|
|
2
|
+
import type { ColorListType } from '../../types';
|
|
3
|
+
import type { LogoutOutlinedIconType } from '@ant-design/icons-vue/lib/icons/LogoutOutlined';
|
|
4
|
+
import type { SettingOutlinedIconType } from '@ant-design/icons-vue/lib/icons/SettingOutlined';
|
|
5
|
+
import type { DefaultOptionType } from 'ant-design-vue/lib/select';
|
|
6
|
+
import type { Request } from '@qqt-product/api/dist/utils/request';
|
|
7
|
+
import type { DefineComponent, Ref, PropType, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
8
|
+
declare const _sfc_main: DefineComponent<{}, {
|
|
9
|
+
showDrawer: Ref<boolean>;
|
|
10
|
+
showGlobalStyleDrawer: () => void;
|
|
11
|
+
handleDrawerClosed: () => void;
|
|
12
|
+
rightTool: DefineComponent<{}, {
|
|
13
|
+
lightTheme: Ref<"dark" | "light">;
|
|
14
|
+
darkTheme: Ref<"dark" | "light">;
|
|
15
|
+
Q_APPLICATION_CONFIG: {
|
|
16
|
+
updateTheme: () => void;
|
|
17
|
+
theme: string;
|
|
18
|
+
};
|
|
19
|
+
handleChat: () => void;
|
|
20
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
|
|
21
|
+
handleKefu: () => void;
|
|
22
|
+
theme: string;
|
|
23
|
+
updateTheme: () => void;
|
|
24
|
+
list: Ref<{
|
|
25
|
+
title: string;
|
|
26
|
+
icon: string;
|
|
27
|
+
type: string;
|
|
28
|
+
color?: string | undefined;
|
|
29
|
+
}[]>;
|
|
30
|
+
iconToolClick: (type: string) => void;
|
|
31
|
+
openChat: () => void;
|
|
32
|
+
fetchCustomer: () => void;
|
|
33
|
+
readonly QSymbolIcon: DefineComponent<{
|
|
34
|
+
type: {
|
|
35
|
+
type: PropType<string>;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
size: {
|
|
39
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
40
|
+
};
|
|
41
|
+
color: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
};
|
|
44
|
+
}, {
|
|
45
|
+
fontSize: ComputedRef<string>;
|
|
46
|
+
iconType: ComputedRef<string>;
|
|
47
|
+
iconColor: ComputedRef<string>;
|
|
48
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
49
|
+
type: {
|
|
50
|
+
type: PropType<string>;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
size: {
|
|
54
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
55
|
+
};
|
|
56
|
+
color: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
};
|
|
59
|
+
}>>, {
|
|
60
|
+
type: string;
|
|
61
|
+
}>;
|
|
62
|
+
message: DefineComponent<{}, {
|
|
63
|
+
handleMsgRecord: () => void;
|
|
64
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
|
|
65
|
+
msgTotal: Ref<number>;
|
|
66
|
+
toElsMsgRecord: () => void;
|
|
67
|
+
readonly QSymbolIcon: DefineComponent<{
|
|
68
|
+
type: {
|
|
69
|
+
type: PropType<string>;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
size: {
|
|
73
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
74
|
+
};
|
|
75
|
+
color: {
|
|
76
|
+
type: StringConstructor;
|
|
77
|
+
};
|
|
78
|
+
}, {
|
|
79
|
+
fontSize: ComputedRef<string>;
|
|
80
|
+
iconType: ComputedRef<string>;
|
|
81
|
+
iconColor: ComputedRef<string>;
|
|
82
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
83
|
+
type: {
|
|
84
|
+
type: PropType<string>;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
87
|
+
size: {
|
|
88
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
89
|
+
};
|
|
90
|
+
color: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
};
|
|
93
|
+
}>>, {
|
|
94
|
+
type: string;
|
|
95
|
+
}>;
|
|
96
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
97
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
98
|
+
langSwitch: DefineComponent<{}, {
|
|
99
|
+
request: Request;
|
|
100
|
+
defaultLanguage: string;
|
|
101
|
+
switchLanguage: (lang: string) => void;
|
|
102
|
+
userInfo: {
|
|
103
|
+
token: string;
|
|
104
|
+
srmVersion: string;
|
|
105
|
+
userInfo: {
|
|
106
|
+
id: string;
|
|
107
|
+
elsAccount: string;
|
|
108
|
+
subAccount: string;
|
|
109
|
+
realname: string;
|
|
110
|
+
avatar: string;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
langs: Ref<{
|
|
114
|
+
[x: string]: any;
|
|
115
|
+
label?: any;
|
|
116
|
+
value?: string | number | null | undefined;
|
|
117
|
+
children?: Omit<DefaultOptionType, "children">[] | undefined;
|
|
118
|
+
disabled?: boolean | undefined;
|
|
119
|
+
}[] | undefined>;
|
|
120
|
+
getData: () => void;
|
|
121
|
+
currentLang: Ref<string>;
|
|
122
|
+
changeLangHandle: () => void;
|
|
123
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
124
|
+
customPerson: DefineComponent<{}, {
|
|
125
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
|
|
126
|
+
userInfo: {
|
|
127
|
+
token: string;
|
|
128
|
+
srmVersion: string;
|
|
129
|
+
userInfo: {
|
|
130
|
+
id: string;
|
|
131
|
+
elsAccount: string;
|
|
132
|
+
subAccount: string;
|
|
133
|
+
realname: string;
|
|
134
|
+
avatar: string;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
personalSetting: () => void;
|
|
138
|
+
handleLogout: () => void;
|
|
139
|
+
nickname: Ref<string>;
|
|
140
|
+
avatarUrl: Ref<string>;
|
|
141
|
+
handlePersonalSettings: () => void;
|
|
142
|
+
readonly SettingOutlined: SettingOutlinedIconType;
|
|
143
|
+
readonly LogoutOutlined: LogoutOutlinedIconType;
|
|
144
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
145
|
+
settingDrawer: DefineComponent<{
|
|
146
|
+
visible: {
|
|
147
|
+
type: BooleanConstructor;
|
|
148
|
+
required: true;
|
|
149
|
+
};
|
|
150
|
+
}, {
|
|
151
|
+
srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
|
|
152
|
+
props: any;
|
|
153
|
+
emit: (event: "handleClosed", ...args: any[]) => void;
|
|
154
|
+
drawerVisible: Ref<boolean>;
|
|
155
|
+
primaryColor: Ref<string>;
|
|
156
|
+
colorList: ColorListType[];
|
|
157
|
+
changeColor: (color: string) => void;
|
|
158
|
+
close: () => void;
|
|
159
|
+
colorState: {
|
|
160
|
+
primaryColor: string;
|
|
161
|
+
errorColor: string;
|
|
162
|
+
warningColor: string;
|
|
163
|
+
successColor: string;
|
|
164
|
+
infoColor: string;
|
|
165
|
+
};
|
|
166
|
+
readonly CheckOutlined: CheckOutlinedIconType;
|
|
167
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "handleClosed"[], "handleClosed", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
168
|
+
visible: {
|
|
169
|
+
type: BooleanConstructor;
|
|
170
|
+
required: true;
|
|
171
|
+
};
|
|
172
|
+
}>> & {
|
|
173
|
+
onHandleClosed?: ((...args: any[]) => any) | undefined;
|
|
174
|
+
}, {}>;
|
|
175
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
176
|
+
export default _sfc_main;
|
|
@@ -1,10 +1,30 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { DefaultOptionType } from 'ant-design-vue/lib/select';
|
|
2
|
+
import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
3
|
+
import qqtApi from '@qqt-product/api';
|
|
2
4
|
declare const _sfc_main: DefineComponent<{}, {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
request: qqtApi.Request;
|
|
6
|
+
defaultLanguage: string;
|
|
7
|
+
switchLanguage: (lang: string) => void;
|
|
8
|
+
userInfo: {
|
|
9
|
+
token: string;
|
|
10
|
+
srmVersion: string;
|
|
11
|
+
userInfo: {
|
|
12
|
+
id: string;
|
|
13
|
+
elsAccount: string;
|
|
14
|
+
subAccount: string;
|
|
15
|
+
realname: string;
|
|
16
|
+
avatar: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
langs: Ref<{
|
|
20
|
+
[x: string]: any;
|
|
21
|
+
label?: any;
|
|
22
|
+
value?: string | number | null | undefined;
|
|
23
|
+
children?: Omit<DefaultOptionType, "children">[] | undefined;
|
|
24
|
+
disabled?: boolean | undefined;
|
|
25
|
+
}[] | undefined>;
|
|
26
|
+
getData: () => void;
|
|
27
|
+
currentLang: Ref<string>;
|
|
8
28
|
changeLangHandle: () => void;
|
|
9
29
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
10
30
|
export default _sfc_main;
|