@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 { SrmI18n } from '@qqt-product/ui/dist/lib/utils/type';
|
|
3
4
|
import type { DefineComponent, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
|
|
4
5
|
import type { CreatePromise } from '@qqt-product/utils';
|
|
@@ -17,6 +18,9 @@ declare const _sfc_main: DefineComponent<{
|
|
|
17
18
|
srmI18n: SrmI18n;
|
|
18
19
|
router: {
|
|
19
20
|
go: (num: number) => void;
|
|
21
|
+
push: (obj: {
|
|
22
|
+
path: string;
|
|
23
|
+
}) => void;
|
|
20
24
|
};
|
|
21
25
|
props: any;
|
|
22
26
|
currentRow: any;
|
|
@@ -92,6 +96,38 @@ declare const _sfc_main: DefineComponent<{
|
|
|
92
96
|
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
93
97
|
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
94
98
|
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
99
|
+
}[] | {
|
|
100
|
+
onConfirmBeforeUpload?: ((formData: FileDataType) => boolean) | undefined;
|
|
101
|
+
title: string;
|
|
102
|
+
i18nKey?: string | undefined;
|
|
103
|
+
key: string | symbol;
|
|
104
|
+
args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
|
|
105
|
+
[x: string]: unknown;
|
|
106
|
+
url: string;
|
|
107
|
+
};
|
|
108
|
+
authorityCode?: string | undefined;
|
|
109
|
+
attrs?: GlobalPageLayoutTypes.RecordString | undefined;
|
|
110
|
+
icon?: {
|
|
111
|
+
type: string;
|
|
112
|
+
size: number;
|
|
113
|
+
color?: string | undefined;
|
|
114
|
+
} | undefined;
|
|
115
|
+
emit?: boolean | undefined;
|
|
116
|
+
emitKey?: string | undefined;
|
|
117
|
+
showMessage?: boolean | undefined;
|
|
118
|
+
checkBefore?: boolean | undefined;
|
|
119
|
+
confirm?: {
|
|
120
|
+
title: string;
|
|
121
|
+
content: string;
|
|
122
|
+
} | undefined;
|
|
123
|
+
dropdown?: boolean | undefined;
|
|
124
|
+
isExistFrozenSource?: boolean | undefined;
|
|
125
|
+
isExistFrozenSourceUrl?: string | undefined;
|
|
126
|
+
isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordString) => GlobalPageLayoutTypes.RecordString) | undefined;
|
|
127
|
+
disabled?: ((pageData: GlobalPageLayoutTypes.RecordString) => boolean) | undefined;
|
|
128
|
+
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
129
|
+
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
130
|
+
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
95
131
|
}[] | undefined;
|
|
96
132
|
extend?: {
|
|
97
133
|
[x: string]: any;
|
|
@@ -2883,6 +2919,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2883
2919
|
handleCustomPublish: () => void;
|
|
2884
2920
|
handleValidateSuccess: (button: GlobalPageLayoutTypes.PageButton) => false | undefined;
|
|
2885
2921
|
back: () => void;
|
|
2922
|
+
handlePageBack: () => void;
|
|
2886
2923
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
2887
2924
|
currentRow: {
|
|
2888
2925
|
type: null;
|
|
@@ -2,6 +2,10 @@ import type { DefineComponent, Ref, ShallowRef, ComputedRef, ShallowReactive, Co
|
|
|
2
2
|
import * as customConfigEdits from './types';
|
|
3
3
|
import type { VxeColumnSlotTypes, VxeTableDataRow, SlotVNodeType, VxeColumnPropTypes, VxeTablePropTypes, VxeTooltipPropTypes, VxeTableDefines, VxeGridDefines } from 'vxe-table';
|
|
4
4
|
declare const _sfc_main: DefineComponent<{
|
|
5
|
+
purchaseAccount: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
5
9
|
busAccount: {
|
|
6
10
|
type: StringConstructor;
|
|
7
11
|
default: string;
|
|
@@ -884,7 +888,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
884
888
|
removeDictCode: (row: customConfigEdits.MapObjectNoneType) => void;
|
|
885
889
|
showDictModal: (row: customConfigEdits.MapObjectNoneType) => void;
|
|
886
890
|
dictCodeModal: Ref<any>;
|
|
887
|
-
fieldSelectOk: (data: customConfigEdits.MapObjectNoneType) =>
|
|
891
|
+
fieldSelectOk: (data: customConfigEdits.MapObjectNoneType) => void;
|
|
888
892
|
showDrawer: (param: any) => void;
|
|
889
893
|
drawerVisible: Ref<boolean>;
|
|
890
894
|
commonDevelopTabs: ComputedRef<customConfigEdits.MapObjectNoneType[]>;
|
|
@@ -1190,6 +1194,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
1190
1194
|
headItemAddEvent: () => void;
|
|
1191
1195
|
filterOption: (input: string, option: any) => boolean;
|
|
1192
1196
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "handleReturn"[], "handleReturn", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1197
|
+
purchaseAccount: {
|
|
1198
|
+
type: StringConstructor;
|
|
1199
|
+
default: string;
|
|
1200
|
+
};
|
|
1193
1201
|
busAccount: {
|
|
1194
1202
|
type: StringConstructor;
|
|
1195
1203
|
default: string;
|
|
@@ -1205,5 +1213,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
1205
1213
|
}, {
|
|
1206
1214
|
busAccount: string;
|
|
1207
1215
|
currentEditRow: Record<string, any>;
|
|
1216
|
+
purchaseAccount: string;
|
|
1208
1217
|
}, {}>;
|
|
1209
1218
|
export default _sfc_main;
|
|
@@ -36,4 +36,6 @@ import * as QQuartzJobList from './QQuartzJobList/src/QQuartzJobList.vue';
|
|
|
36
36
|
import * as QBackgroundFileTaskList from './QBackgroundFileTaskList/src/QBackgroundFileTaskList.vue';
|
|
37
37
|
import * as QMqRecordList from './QMqRecordList/src/QMqRecordList.vue';
|
|
38
38
|
import * as QUsageList from './QUsageList/src/QUsageList.vue';
|
|
39
|
-
|
|
39
|
+
import * as QCostCustomConfigEdit from './QCostCustomConfigEdit/src/QCostCustomConfigEdit.vue';
|
|
40
|
+
import * as QCostCustomConfigList from './QCostCustomConfigList/src/QCostCustomConfigList.vue';
|
|
41
|
+
export { QCostCustomConfigList, QCostCustomConfigEdit, QcustomConfigEdit, QcustomConfigList, QsysConfigList, QLoginLogList, QOperateLogList, QLoginSupplierLogList, QLoginAbnormalLogList, QIntegratedNodesList, QIntegratedNodesEdit, QIntegratedNodesDetail, QIntegratedReportList, QIntegratedReportSearchList, QPasswordSecurityPolicy, QI18nList, QSupplierAccountList, QAccountList, QAccountEdit, QAccountCreate, QAccountDetail, QRoleList, QPermissionDataList, QPermissionDataEdit, QPermissionDataAuth, QPurchaseNoticeTemplateList, QElsTenantPortalNewsList, QElsTenantPortalNewsEdit, QElsTenantPortalNewsDetail, QPurchaseNoticeList, QPurchaseNoticeEdit, QPurchaseNoticeDetail, QElsMsgRecordList, QElsMsgRecordDetail, QImChatGroupList, QElsEmailSendLogList, QQuartzJobList, QBackgroundFileTaskList, QMqRecordList, QUsageList, };
|
|
@@ -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, 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
|
declare const _sfc_main: DefineComponent<{
|
|
@@ -79,6 +80,38 @@ declare const _sfc_main: DefineComponent<{
|
|
|
79
80
|
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
80
81
|
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
81
82
|
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
83
|
+
}[] | {
|
|
84
|
+
onConfirmBeforeUpload?: ((formData: FileDataType) => boolean) | undefined;
|
|
85
|
+
title: string;
|
|
86
|
+
i18nKey?: string | undefined;
|
|
87
|
+
key: string | symbol;
|
|
88
|
+
args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
|
|
89
|
+
[x: string]: unknown;
|
|
90
|
+
url: string;
|
|
91
|
+
};
|
|
92
|
+
authorityCode?: string | undefined;
|
|
93
|
+
attrs?: GlobalPageLayoutTypes.RecordString | undefined;
|
|
94
|
+
icon?: {
|
|
95
|
+
type: string;
|
|
96
|
+
size: number;
|
|
97
|
+
color?: string | undefined;
|
|
98
|
+
} | undefined;
|
|
99
|
+
emit?: boolean | undefined;
|
|
100
|
+
emitKey?: string | undefined;
|
|
101
|
+
showMessage?: boolean | undefined;
|
|
102
|
+
checkBefore?: boolean | undefined;
|
|
103
|
+
confirm?: {
|
|
104
|
+
title: string;
|
|
105
|
+
content: string;
|
|
106
|
+
} | undefined;
|
|
107
|
+
dropdown?: boolean | undefined;
|
|
108
|
+
isExistFrozenSource?: boolean | undefined;
|
|
109
|
+
isExistFrozenSourceUrl?: string | undefined;
|
|
110
|
+
isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordString) => GlobalPageLayoutTypes.RecordString) | undefined;
|
|
111
|
+
disabled?: ((pageData: GlobalPageLayoutTypes.RecordString) => boolean) | undefined;
|
|
112
|
+
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
113
|
+
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
114
|
+
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
82
115
|
}[] | undefined;
|
|
83
116
|
extend?: {
|
|
84
117
|
[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 { SrmI18n } from '@qqt-product/ui/dist/lib/utils/type';
|
|
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';
|
|
@@ -13,6 +14,12 @@ declare const _sfc_main: DefineComponent<{
|
|
|
13
14
|
};
|
|
14
15
|
}, {
|
|
15
16
|
srmI18n: SrmI18n;
|
|
17
|
+
router: {
|
|
18
|
+
go: (num: number) => void;
|
|
19
|
+
push: (obj: {
|
|
20
|
+
path: string;
|
|
21
|
+
}) => void;
|
|
22
|
+
};
|
|
16
23
|
props: any;
|
|
17
24
|
currentRow: any;
|
|
18
25
|
layoutRef: Ref<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null>;
|
|
@@ -81,6 +88,38 @@ declare const _sfc_main: DefineComponent<{
|
|
|
81
88
|
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
82
89
|
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
83
90
|
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
91
|
+
}[] | {
|
|
92
|
+
onConfirmBeforeUpload?: ((formData: FileDataType) => boolean) | undefined;
|
|
93
|
+
title: string;
|
|
94
|
+
i18nKey?: string | undefined;
|
|
95
|
+
key: string | symbol;
|
|
96
|
+
args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
|
|
97
|
+
[x: string]: unknown;
|
|
98
|
+
url: string;
|
|
99
|
+
};
|
|
100
|
+
authorityCode?: string | undefined;
|
|
101
|
+
attrs?: GlobalPageLayoutTypes.RecordString | undefined;
|
|
102
|
+
icon?: {
|
|
103
|
+
type: string;
|
|
104
|
+
size: number;
|
|
105
|
+
color?: string | undefined;
|
|
106
|
+
} | undefined;
|
|
107
|
+
emit?: boolean | undefined;
|
|
108
|
+
emitKey?: string | undefined;
|
|
109
|
+
showMessage?: boolean | undefined;
|
|
110
|
+
checkBefore?: boolean | undefined;
|
|
111
|
+
confirm?: {
|
|
112
|
+
title: string;
|
|
113
|
+
content: string;
|
|
114
|
+
} | undefined;
|
|
115
|
+
dropdown?: boolean | undefined;
|
|
116
|
+
isExistFrozenSource?: boolean | undefined;
|
|
117
|
+
isExistFrozenSourceUrl?: string | undefined;
|
|
118
|
+
isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordString) => GlobalPageLayoutTypes.RecordString) | undefined;
|
|
119
|
+
disabled?: ((pageData: GlobalPageLayoutTypes.RecordString) => boolean) | undefined;
|
|
120
|
+
handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
121
|
+
handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
|
|
122
|
+
callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
|
|
84
123
|
}[] | undefined;
|
|
85
124
|
extend?: {
|
|
86
125
|
[x: string]: any;
|
|
@@ -2868,6 +2907,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2868
2907
|
customLoading: Readonly<Ref<boolean>>;
|
|
2869
2908
|
handleCustomSave: () => void;
|
|
2870
2909
|
handleValidateSuccess: (button: GlobalPageLayoutTypes.PageButton) => void;
|
|
2910
|
+
handlePageBack: () => void;
|
|
2871
2911
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
2872
2912
|
currentRow: {
|
|
2873
2913
|
type: null;
|
|
@@ -2,8 +2,15 @@ import type { MessageType } from 'ant-design-vue/lib/message';
|
|
|
2
2
|
import type { SrmI18n } from '@qqt-product/ui/dist/lib/utils/type';
|
|
3
3
|
import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
4
4
|
import qqtApi from '@qqt-product/api';
|
|
5
|
+
interface UserInfo {
|
|
6
|
+
elsAccount: string;
|
|
7
|
+
subAccount: string;
|
|
8
|
+
serivceUrl: string;
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
}
|
|
5
11
|
declare const _sfc_main: DefineComponent<{}, {
|
|
6
12
|
srmI18n: SrmI18n;
|
|
13
|
+
userInfo: UserInfo;
|
|
7
14
|
listLayoutRef: Ref<any>;
|
|
8
15
|
qHttp: qqtApi.Request;
|
|
9
16
|
refreshNodes: () => void;
|
|
@@ -62,7 +69,10 @@ declare const _sfc_main: DefineComponent<{}, {
|
|
|
62
69
|
};
|
|
63
70
|
};
|
|
64
71
|
pagerConfig: {};
|
|
72
|
+
isUseLocalColumns: boolean;
|
|
65
73
|
};
|
|
74
|
+
columnDefineByModulesMap: Ref<any>;
|
|
75
|
+
getFormatTypeData: () => void;
|
|
66
76
|
businessTypeCoreChange: (val: any) => void;
|
|
67
77
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
68
78
|
export default _sfc_main;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.tempale-preview-modal[data-v-0b6ebd5b] .page-container .edit-page .ant-spin-nested-loading{height:600px}.tempale-preview-modal[data-v-0b6ebd5b] .ant-form-item-control-wrapper{width:150px}.page-container .ant-btn+.ant-btn[data-v-
|
|
1
|
+
.tempale-preview-modal[data-v-0b6ebd5b] .page-container .edit-page .ant-spin-nested-loading{height:600px}.tempale-preview-modal[data-v-0b6ebd5b] .ant-form-item-control-wrapper{width:150px}.page-container .ant-btn+.ant-btn[data-v-1bbf60ad]{margin-left:8px}.page-container[data-v-1bbf60ad] .ant-select-selection{position:relative;z-index:1}.page-container .business-tips[data-v-1bbf60ad]{width:64.6%;margin:0 auto 10px}.page-container[data-v-1bbf60ad] .ant-input-affix-wrapper .ant-input-suffix{z-index:1}.page-container .skeleton-wrap[data-v-1bbf60ad]{margin-top:100px;text-align:center;line-height:100px}.switch-config .switch-config-item[data-v-1bbf60ad]{display:flex;justify-content:space-between;border-bottom:1px dashed #eee;padding:10px 0}.switch-config>div[data-v-1bbf60ad]:first-child{padding-top:0}.verify-config[data-v-1bbf60ad]{margin-bottom:20px}.verify-config .tab-clo-left[data-v-1bbf60ad]{padding-right:10px;text-align:right;line-height:32px}.content-step-one[data-v-1bbf60ad]{justify-content:center}.code-editror-flex-row[data-v-1bbf60ad]{display:block}.progress[data-v-6a21d026]{text-align:center}.password-security-policy[data-v-bc4a98ce]{height:100%}.password-security-policy-breadcrumb[data-v-bc4a98ce]{height:44px;display:flex;justify-content:flex-end;align-items:center;padding-left:16px;padding-right:25px;background:white}.password-security-policy-content[data-v-bc4a98ce]{padding:8px}.password-security-policy-form[data-v-bc4a98ce]{background:white;padding:0 16px}.password-security-policy-form .item[data-v-bc4a98ce]{display:flex;justify-content:space-between;align-items:center;padding:0 18px;border-bottom:1px dashed #dadada}.password-security-policy-form .item .desc[data-v-bc4a98ce]{padding:16px 0}.password-security-policy-form .item .desc .tit[data-v-bc4a98ce]{color:#454f59;font-weight:500;font-size:14px;line-height:14px}.password-security-policy-form .item .desc .tip[data-v-bc4a98ce]{font-weight:400;font-size:12px;line-height:12px;color:#454f5999;margin-top:8px}.password-security-policy-form .item .type[data-v-bc4a98ce]{font-weight:400;font-size:12px;line-height:12px;color:#454f5999;display:flex;align-items:center}.password-security-policy .red[data-v-bc4a98ce]{color:red}.password-security-policy .ant-input-number[data-v-bc4a98ce]{margin-left:16px;width:60px}.password-security-policy .ant-btn+.ant-btn[data-v-bc4a98ce]{margin-left:8px}[data-v-b66225c6] .vxe-form--gather,[data-v-b3e4afb1] .vxe-form--gather{padding:20px 0}.other-select[data-v-576f7584] .ant-select{width:100%}.content-Header{width:100%;position:sticky;top:0;z-index:99;box-shadow:0 3px 12px #626bb540}.content-Header.posA{position:absolute;left:0;top:0}.content-Header .topWrap{display:flex;justify-content:space-between;align-items:center;background:#fff;padding:10px 24px 10px 10px}.content-Header .topWrap .box{display:flex;align-items:center}.content-Header .topWrap .extra+.menu{margin-left:24px}.content-Header .topWrap .menu{text-align:right}.UserAuthorization{position:relative}.UserAuthorization .ant-checkbox-wrapper{color:#000000a6}.UserAuthorization .title{padding-left:16px;margin-bottom:16px}.UserAuthorization .title>strong{font-size:18px;color:#4d72ff}.UserAuthorization .title>span{font-size:12px;color:#b9bcc1;margin-left:22px}.UserAuthorization .container{padding:8px}.UserAuthorization .pageBox{background:#fff;padding:16px 16px 32px;min-height:calc(100vh - 158px)}.UserAuthorization .level[class*=level_] .triangle{margin-right:8px;cursor:pointer}.UserAuthorization .level[class*=level_] .rotate90 .anticon{transform:rotate(90deg);transition:transform .3 ease-in-out}.UserAuthorization .level.level_1{display:flex;align-items:center;padding:16px 20px}.UserAuthorization .level.level_1:hover{background:rgba(254,206,0,.1)}.UserAuthorization .level.level_1 .info{display:flex;flex-direction:column;flex:1}.UserAuthorization .level.level_1 .info strong{font-size:14px;color:#454f59}.UserAuthorization .level.level_1 .info span.tip{font-size:12px;color:#454f5999;margin-top:8px}.UserAuthorization .level.level_1+.collapse.noneGrandchildren{padding:24px}.UserAuthorization .level.border{border-bottom:1px dashed #dadada}.UserAuthorization .level.level_2{display:flex}.UserAuthorization .level.level_2:not(:last-child){border-bottom:1px dashed #dadada}.UserAuthorization .level.level_2 .info{flex:0 0 150px;padding:22px 0 22px 20px;background-color:#f9f9f9}.UserAuthorization .level.level_2 .children{flex:1;margin-left:24px;padding:22px 20px 22px 0}.UserAuthorization .level_3+.level_3{margin-top:12px}.UserAuthorization .checkboxGroup{padding:12px 0 12px 36px}.UserAuthorization .collapse{min-height:70px;border:1px solid #dadcde}[data-v-16d0b6ea] .vxe-form--gather{padding:20px 0}.stickey[data-v-8d434992]{position:sticky;top:0;z-index:99;padding-bottom:8px;background-color:var(--qBackgroundColor, #eff2f5)}.edit-header[data-v-8d434992]{padding:4px 16px;background:var(--qPageHeaderBackgroundColor, #ffffff);border-top-width:1px;border-top-style:solid;border-top-color:var(--qHeaderBorderBottomColor, #f3f3f3)}.groups[data-v-8d434992]{padding:24px;border-radius:8px;background-color:var(--qPageHeaderBackgroundColor, #ffffff)}.card-container{background:#fff;overflow:hidden;padding:12px;position:relative;width:100%}.card-container .tab-layout-tabs.ant-tabs{border:1px solid #e6ebf5;padding:0}.card-container .tab-layout-tabs.ant-tabs .ant-tabs-bar{margin:0;outline:none;border-bottom:none}.card-container .tab-layout-tabs.ant-tabs .ant-tabs-bar .ant-tabs-nav-container{margin:0}.card-container .tab-layout-tabs.ant-tabs .ant-tabs-bar .ant-tabs-nav-container .ant-tabs-tab{padding:0 24px!important;background-color:#f5f7fa!important;margin-right:0!important;border-radius:0;line-height:38px;border:1px solid transparent!important;border-bottom:1px solid #e6ebf5!important}.card-container .tab-layout-tabs.ant-tabs .ant-tabs-bar .ant-tabs-nav-container .ant-tabs-tab-active.ant-tabs-tab{color:#409eff;background-color:#fff!important;border-right:1px solid #e6ebf5!important;border-left:1px solid #e6ebf5!important;border-bottom:1px solid #fff!important;font-weight:400;transition:none!important}.card-container .tab-layout-tabs.ant-tabs .ant-tabs-tabpane{padding:15px}.card-container .tab-layout-tabs.ant-tabs .ant-tabs-tabpane .ant-row{margin:10px 0}.card-container .tab-layout-tabs.ant-tabs .ant-tabs-tabpane .ant-select,.card-container .tab-layout-tabs.ant-tabs .ant-tabs-tabpane .ant-input-number{width:100px}.container-widthEn[data-v-13d22fe3]{width:755px}.container-widthCn[data-v-13d22fe3]{width:608px}.language[data-v-13d22fe3]{text-align:center;position:absolute;right:13px;top:13px;border:1px solid transparent;height:40px;line-height:38px;font-size:16px;color:#409eff;z-index:1;background:#f5f7fa;outline:none;width:47px;border-bottom:1px solid #e6ebf5;border-radius:0}.card-container .bottom[data-v-13d22fe3]{display:flex;justify-content:center;padding:10px 0 0}.card-container .bottom .cronButton[data-v-13d22fe3]{margin:0 10px;line-height:40px}.tabBody .a-row[data-v-13d22fe3]{margin:10px 0}.tabBody .a-row .long .a-select[data-v-13d22fe3]{width:354px}.tabBody .a-row .a-input-number[data-v-13d22fe3]{width:110px}.components-input-demo-presuffix .anticon-close-circle[data-v-b3cf1b8e]{cursor:pointer;color:#ccc;transition:color .3s;font-size:12px}.components-input-demo-presuffix .anticon-close-circle[data-v-b3cf1b8e]:hover{color:#f5222d}.components-input-demo-presuffix .anticon-close-circle[data-v-b3cf1b8e]:active{color:#666}.chart[data-v-21364c31]{width:100%;height:400px}.tempale-preview-modal[data-v-b6cb9623] .page-container .edit-page .ant-spin-nested-loading{height:600px}.tempale-preview-modal[data-v-b6cb9623] .ant-form-item-control-wrapper{width:150px}.page-container .ant-btn+.ant-btn[data-v-948b52ed]{margin-left:8px}.page-container[data-v-948b52ed] .ant-select-selection{position:relative;z-index:1}.page-container .business-tips[data-v-948b52ed]{width:64.6%;margin:0 auto 10px}.page-container[data-v-948b52ed] .ant-input-affix-wrapper .ant-input-suffix{z-index:1}.page-container .skeleton-wrap[data-v-948b52ed]{margin-top:100px;text-align:center;line-height:100px}.switch-config .switch-config-item[data-v-948b52ed]{display:flex;justify-content:space-between;border-bottom:1px dashed #eee;padding:10px 0}.switch-config>div[data-v-948b52ed]:first-child{padding-top:0}.verify-config[data-v-948b52ed]{margin-bottom:20px}.verify-config .tab-clo-left[data-v-948b52ed]{padding-right:10px;text-align:right;line-height:32px}.content-step-one[data-v-948b52ed]{justify-content:center}.code-editror-flex-row[data-v-948b52ed]{display:block}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qqt-product/system",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "8.0.1",
|
|
5
5
|
"main": "dist/index.umd.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
7
7
|
"type": "module",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@ant-design/icons-vue": "^6.1.0",
|
|
21
|
-
"@qqt-product/api": "
|
|
22
|
-
"@qqt-product/icons": "
|
|
23
|
-
"@qqt-product/ui": "
|
|
24
|
-
"@qqt-product/utils": "
|
|
21
|
+
"@qqt-product/api": "8.0.1",
|
|
22
|
+
"@qqt-product/icons": "8.0.1",
|
|
23
|
+
"@qqt-product/ui": "8.0.1",
|
|
24
|
+
"@qqt-product/utils": "8.0.1",
|
|
25
25
|
"@types/node": "^18.11.4",
|
|
26
26
|
"@types/sortablejs": "^1.15.1",
|
|
27
27
|
"@typescript-eslint/eslint-plugin": "^5.40.0",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"xe-utils": "^3.5.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@qqt-product/api": "
|
|
55
|
-
"@qqt-product/icons": "
|
|
56
|
-
"@qqt-product/ui": "
|
|
57
|
-
"@qqt-product/utils": "
|
|
54
|
+
"@qqt-product/api": "8.0.1",
|
|
55
|
+
"@qqt-product/icons": "8.0.1",
|
|
56
|
+
"@qqt-product/ui": "8.0.1",
|
|
57
|
+
"@qqt-product/utils": "8.0.1",
|
|
58
58
|
"@types/sortablejs": "^1.15.1",
|
|
59
59
|
"ant-design-vue": "3.2.20",
|
|
60
60
|
"echarts": "5.4.3",
|