@qqt-product/system 0.0.1 → 0.0.16
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 +53240 -10634
- package/dist/index.umd.js +94 -21
- package/dist/lib/components/QAccountList/src/QAccountCreate.vue.d.ts +2878 -0
- package/dist/lib/components/QAccountList/src/QAccountDetail.vue.d.ts +2871 -0
- package/dist/lib/components/QAccountList/src/QAccountEdit.vue.d.ts +2878 -0
- package/dist/lib/components/QAccountList/src/QAccountList.vue.d.ts +23 -4
- package/dist/lib/components/QBackgroundFileTaskList/src/QBackgroundFileTaskList.vue.d.ts +9 -4
- package/dist/lib/components/QElsEmailSendLogList/src/QElsEmailSendLogList.vue.d.ts +9 -4
- package/dist/lib/components/QElsMsgRecordList/src/QElsMsgRecordDetail.vue.d.ts +2864 -0
- package/dist/lib/components/QElsMsgRecordList/src/QElsMsgRecordList.vue.d.ts +2 -3
- package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsDetail.vue.d.ts +2864 -0
- package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsEdit.vue.d.ts +2876 -0
- package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsList.vue.d.ts +29 -14
- package/dist/lib/components/QI18nList/src/QI18nList.vue.d.ts +2 -6
- package/dist/lib/components/QImChatGroupList/src/QImChatGroupList.vue.d.ts +5 -8
- package/dist/lib/components/QMqRecordList/src/QMqRecordList.vue.d.ts +9 -4
- package/dist/lib/components/QPermissionDataList/src/QPermissionDataEdit.vue.d.ts +2872 -0
- package/dist/lib/components/QPermissionDataList/src/QPermissionDataList.vue.d.ts +126 -0
- package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeDetail.vue.d.ts +2864 -0
- package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeEdit.vue.d.ts +2887 -0
- package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeList.vue.d.ts +25 -5
- package/dist/lib/components/QPurchaseNoticeList/src/use-field-select-modal-hook.d.ts +7 -0
- package/dist/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateList.vue.d.ts +221 -28
- package/dist/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateModal.vue.d.ts +45 -0
- package/dist/lib/components/QQuartzJobList/src/QQuartzJobList.vue.d.ts +24 -5
- package/dist/lib/components/QRoleList/src/QRoleList.vue.d.ts +23 -7
- package/dist/lib/components/QRoleList/src/useConfigData.d.ts +1 -11
- package/dist/lib/components/QSupplierAccountList/src/QSupplierAccountList.vue.d.ts +7 -3
- package/dist/lib/components/QUsageList/src/QUsageList.vue.d.ts +15 -35
- package/dist/lib/components/QUsageList/src/useConfigData.d.ts +111 -10
- package/dist/lib/components/QcustomConfigEdit/component/AddDictCodeModal.vue.d.ts +25 -0
- package/dist/lib/components/QcustomConfigEdit/component/regexComponent.d.ts +9 -10
- package/dist/lib/components/QcustomConfigEdit/src/QcustomConfigEdit.vue.d.ts +1209 -0
- package/dist/lib/components/QcustomConfigEdit/src/useConfigData.d.ts +1 -1
- package/dist/lib/components/QcustomConfigList/src/QcustomConfigList.vue.d.ts +8 -7
- package/dist/lib/components/QsysConfigList/src/QsysConfigList.vue.d.ts +2 -3
- package/dist/lib/components/index.d.ts +2 -2
- package/dist/lib/components/integratedNodesList/src/QIntegratedNodesDetail.vue.d.ts +2863 -0
- package/dist/lib/components/integratedNodesList/src/QIntegratedNodesEdit.vue.d.ts +2872 -0
- package/dist/lib/components/integratedNodesList/src/index.vue.d.ts +8 -11
- package/dist/lib/components/integratedReportSearchList/src/index.vue.d.ts +16 -10
- package/dist/lib/components/loginAbnormalLogList/src/index.vue.d.ts +2 -9
- package/dist/lib/components/loginLogList/src/index.vue.d.ts +2 -8
- package/dist/lib/components/loginSupplierLogList/src/index.vue.d.ts +2 -12
- package/dist/lib/components/operateLogList/src/index.vue.d.ts +2 -13
- package/dist/style.css +1 -1
- package/dist/vite-env.d.ts +13 -13
- package/package.json +13 -11
- package/src/lib/components/QAccountList/src/QAccountCreate.vue +272 -0
- package/src/lib/components/QAccountList/src/QAccountDetail.vue +82 -14
- package/src/lib/components/QAccountList/src/QAccountEdit.vue +65 -33
- package/src/lib/components/QAccountList/src/QAccountList.vue +532 -530
- package/src/lib/components/QBackgroundFileTaskList/src/QBackgroundFileTaskList.vue +143 -137
- package/src/lib/components/QElsEmailSendLogList/src/QElsEmailSendLogList.vue +172 -166
- package/src/lib/components/QElsMsgRecordList/src/QElsMsgRecordList.vue +123 -124
- package/src/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsEdit.vue +66 -18
- package/src/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsList.vue +151 -122
- package/src/lib/components/QI18nList/src/QI18nList.vue +365 -361
- package/src/lib/components/QImChatGroupList/src/QImChatGroupList.vue +103 -94
- package/src/lib/components/QMqRecordList/src/QMqRecordList.vue +109 -105
- package/src/lib/components/QPermissionDataList/src/QPermissionDataAuth.vue +3 -3
- package/src/lib/components/QPermissionDataList/src/QPermissionDataEdit.vue +218 -221
- package/src/lib/components/QPermissionDataList/src/QPermissionDataList.vue +110 -117
- package/src/lib/components/QPermissionDataList/src/form.vue +109 -109
- package/src/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeDetail.vue +1 -1
- package/src/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeEdit.vue +120 -32
- package/src/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeList.vue +189 -163
- package/src/lib/components/QPurchaseNoticeList/src/use-field-select-modal-hook.ts +84 -0
- package/src/lib/components/QPurchaseNoticeList/src/useConfigData.ts +22 -22
- package/src/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateList.vue +134 -85
- package/src/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateModal.vue +91 -0
- package/src/lib/components/QQuartzJobList/src/QQuartzJobList.vue +276 -263
- package/src/lib/components/QRoleList/src/QRoleList.vue +332 -288
- package/src/lib/components/QRoleList/src/useConfigData.ts +1 -6
- package/src/lib/components/QSupplierAccountList/src/QSupplierAccountList.vue +304 -302
- package/src/lib/components/QUsageList/src/QUsageList.vue +287 -82
- package/src/lib/components/QUsageList/src/useConfigData.ts +147 -13
- package/src/lib/components/QcustomConfigEdit/component/AddDictCodeModal.vue +140 -140
- package/src/lib/components/QcustomConfigEdit/component/regexComponent.tsx +28 -28
- package/src/lib/components/QcustomConfigEdit/src/QcustomConfigEdit.vue +130 -42
- package/src/lib/components/QcustomConfigEdit/src/QcustomConfigRender.tsx +2 -2
- package/src/lib/components/QcustomConfigEdit/src/useConfigData.ts +2 -2
- package/src/lib/components/QcustomConfigEdit/src/useConstant.ts +12 -12
- package/src/lib/components/QcustomConfigList/src/QcustomConfigList.vue +276 -268
- package/src/lib/components/QcustomConfigList/src/useConfigData.ts +1 -1
- package/src/lib/components/QsysConfigList/src/QsysConfigList.vue +124 -125
- package/src/lib/components/index.ts +78 -78
- package/src/lib/components/integratedNodesList/src/QIntegratedNodesEdit.vue +2 -10
- package/src/lib/components/integratedNodesList/src/index.vue +130 -136
- package/src/lib/components/integratedReportList/src/index.vue +55 -30
- package/src/lib/components/integratedReportSearchList/src/index.vue +106 -66
- package/src/lib/components/loginAbnormalLogList/src/index.vue +43 -50
- package/src/lib/components/loginLogList/src/index.vue +51 -57
- package/src/lib/components/loginSupplierLogList/src/index.vue +53 -63
- package/src/lib/components/operateLogList/src/index.vue +46 -57
- package/src/vite-env.d.ts +13 -13
- package/tsconfig.json +24 -24
- package/vite.config.ts +1 -1
- package/dist/lib/components/QCompanyermissionList/src/form.vue.d.ts +0 -80
- package/dist/lib/components/QCompanyermissionList/src/types.d.ts +0 -44
- package/dist/lib/components/integratedReportList/src/index.vue.d.ts +0 -70
- package/src/lib/components/QCompanyermissionList/src/editTree.vue +0 -291
- package/src/lib/components/QCompanyermissionList/src/form.vue +0 -238
- package/src/lib/components/QCompanyermissionList/src/index.vue +0 -309
- package/src/lib/components/QCompanyermissionList/src/types.ts +0 -44
|
@@ -60,7 +60,7 @@ export declare function useConfigData(): {
|
|
|
60
60
|
currentItemGrid: Ref<any>;
|
|
61
61
|
drawerVisible: Ref<boolean>;
|
|
62
62
|
codeEditorFields: ShallowRef<string[]>;
|
|
63
|
-
|
|
63
|
+
editorModalFlag: Ref<boolean>;
|
|
64
64
|
sampleCode: Ref<string | undefined>;
|
|
65
65
|
nowFieldType: Ref<string | undefined>;
|
|
66
66
|
switchFields: ShallowRef<string[]>;
|
|
@@ -10,15 +10,15 @@ declare const _sfc_main: DefineComponent<{
|
|
|
10
10
|
statusConfig: {
|
|
11
11
|
show: boolean;
|
|
12
12
|
};
|
|
13
|
-
|
|
13
|
+
optionConfig: {
|
|
14
14
|
attrs: {};
|
|
15
15
|
extend: {};
|
|
16
|
-
|
|
16
|
+
options: ({
|
|
17
17
|
authorityCode: string;
|
|
18
18
|
type: string;
|
|
19
19
|
title: string;
|
|
20
20
|
click: ({ row }: MapObjectNoneType) => void;
|
|
21
|
-
|
|
21
|
+
disabled?: undefined;
|
|
22
22
|
} | {
|
|
23
23
|
authorityCode: string;
|
|
24
24
|
type: string;
|
|
@@ -26,7 +26,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
26
26
|
click: ({ row }: {
|
|
27
27
|
row?: MapObjectNoneType | undefined;
|
|
28
28
|
}) => void;
|
|
29
|
-
|
|
29
|
+
disabled: ({ row }: {
|
|
30
30
|
row?: MapObjectNoneType | undefined;
|
|
31
31
|
}) => boolean;
|
|
32
32
|
})[];
|
|
@@ -77,7 +77,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
77
77
|
dictCode?: undefined;
|
|
78
78
|
placeholder?: undefined;
|
|
79
79
|
})[];
|
|
80
|
-
formState: {};
|
|
81
80
|
};
|
|
82
81
|
pagerConfig: {};
|
|
83
82
|
};
|
|
@@ -103,10 +102,12 @@ declare const _sfc_main: DefineComponent<{
|
|
|
103
102
|
handleCustomCancel: ({ row }: {
|
|
104
103
|
row?: MapObjectNoneType | undefined;
|
|
105
104
|
}) => void;
|
|
106
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin,
|
|
105
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "uploadFile"[], "uploadFile", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
107
106
|
userInfo: {
|
|
108
107
|
type: ObjectConstructor;
|
|
109
108
|
defalut: () => {};
|
|
110
109
|
};
|
|
111
|
-
}
|
|
110
|
+
}>> & {
|
|
111
|
+
onUploadFile?: ((...args: any[]) => any) | undefined;
|
|
112
|
+
}, {}, {}>;
|
|
112
113
|
export default _sfc_main;
|
|
@@ -10,10 +10,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
10
10
|
statusConfig: {
|
|
11
11
|
show: boolean;
|
|
12
12
|
};
|
|
13
|
-
|
|
13
|
+
optionConfig: {
|
|
14
14
|
attrs: {};
|
|
15
15
|
extend: {};
|
|
16
|
-
|
|
16
|
+
options: {
|
|
17
17
|
authorityCode: string;
|
|
18
18
|
type: string;
|
|
19
19
|
title: string;
|
|
@@ -46,7 +46,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
46
46
|
placeholder: string;
|
|
47
47
|
dictCode?: undefined;
|
|
48
48
|
})[];
|
|
49
|
-
formState: {};
|
|
50
49
|
};
|
|
51
50
|
pagerConfig: {};
|
|
52
51
|
};
|
|
@@ -13,9 +13,9 @@ import * as QIntegratedReportSearchList from './integratedReportSearchList/src/i
|
|
|
13
13
|
import * as QPasswordSecurityPolicy from './QPasswordSecurityPolicy/src/QPasswordSecurityPolicy.vue';
|
|
14
14
|
import * as QI18nList from './QI18nList/src/QI18nList.vue';
|
|
15
15
|
import * as QSupplierAccountList from './QSupplierAccountList/src/QSupplierAccountList.vue';
|
|
16
|
-
import * as QCompanyermissionList from './QCompanyermissionList/src/editTree.vue';
|
|
17
16
|
import * as QAccountList from './QAccountList/src/QAccountList.vue';
|
|
18
17
|
import * as QAccountEdit from './QAccountList/src/QAccountEdit.vue';
|
|
18
|
+
import * as QAccountCreate from './QAccountList/src/QAccountCreate.vue';
|
|
19
19
|
import * as QAccountDetail from './QAccountList/src/QAccountDetail.vue';
|
|
20
20
|
import * as QRoleList from './QRoleList/src/QRoleList.vue';
|
|
21
21
|
import * as QPermissionDataList from './QPermissionDataList/src/QPermissionDataList.vue';
|
|
@@ -36,4 +36,4 @@ 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
|
-
export { QcustomConfigEdit, QcustomConfigList, QsysConfigList, QLoginLogList, QOperateLogList, QLoginSupplierLogList, QLoginAbnormalLogList, QIntegratedNodesList, QIntegratedNodesEdit, QIntegratedNodesDetail, QIntegratedReportList, QIntegratedReportSearchList, QPasswordSecurityPolicy, QI18nList, QSupplierAccountList,
|
|
39
|
+
export { 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, };
|