@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.
Files changed (105) hide show
  1. package/dist/index.es.js +53240 -10634
  2. package/dist/index.umd.js +94 -21
  3. package/dist/lib/components/QAccountList/src/QAccountCreate.vue.d.ts +2878 -0
  4. package/dist/lib/components/QAccountList/src/QAccountDetail.vue.d.ts +2871 -0
  5. package/dist/lib/components/QAccountList/src/QAccountEdit.vue.d.ts +2878 -0
  6. package/dist/lib/components/QAccountList/src/QAccountList.vue.d.ts +23 -4
  7. package/dist/lib/components/QBackgroundFileTaskList/src/QBackgroundFileTaskList.vue.d.ts +9 -4
  8. package/dist/lib/components/QElsEmailSendLogList/src/QElsEmailSendLogList.vue.d.ts +9 -4
  9. package/dist/lib/components/QElsMsgRecordList/src/QElsMsgRecordDetail.vue.d.ts +2864 -0
  10. package/dist/lib/components/QElsMsgRecordList/src/QElsMsgRecordList.vue.d.ts +2 -3
  11. package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsDetail.vue.d.ts +2864 -0
  12. package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsEdit.vue.d.ts +2876 -0
  13. package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsList.vue.d.ts +29 -14
  14. package/dist/lib/components/QI18nList/src/QI18nList.vue.d.ts +2 -6
  15. package/dist/lib/components/QImChatGroupList/src/QImChatGroupList.vue.d.ts +5 -8
  16. package/dist/lib/components/QMqRecordList/src/QMqRecordList.vue.d.ts +9 -4
  17. package/dist/lib/components/QPermissionDataList/src/QPermissionDataEdit.vue.d.ts +2872 -0
  18. package/dist/lib/components/QPermissionDataList/src/QPermissionDataList.vue.d.ts +126 -0
  19. package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeDetail.vue.d.ts +2864 -0
  20. package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeEdit.vue.d.ts +2887 -0
  21. package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeList.vue.d.ts +25 -5
  22. package/dist/lib/components/QPurchaseNoticeList/src/use-field-select-modal-hook.d.ts +7 -0
  23. package/dist/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateList.vue.d.ts +221 -28
  24. package/dist/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateModal.vue.d.ts +45 -0
  25. package/dist/lib/components/QQuartzJobList/src/QQuartzJobList.vue.d.ts +24 -5
  26. package/dist/lib/components/QRoleList/src/QRoleList.vue.d.ts +23 -7
  27. package/dist/lib/components/QRoleList/src/useConfigData.d.ts +1 -11
  28. package/dist/lib/components/QSupplierAccountList/src/QSupplierAccountList.vue.d.ts +7 -3
  29. package/dist/lib/components/QUsageList/src/QUsageList.vue.d.ts +15 -35
  30. package/dist/lib/components/QUsageList/src/useConfigData.d.ts +111 -10
  31. package/dist/lib/components/QcustomConfigEdit/component/AddDictCodeModal.vue.d.ts +25 -0
  32. package/dist/lib/components/QcustomConfigEdit/component/regexComponent.d.ts +9 -10
  33. package/dist/lib/components/QcustomConfigEdit/src/QcustomConfigEdit.vue.d.ts +1209 -0
  34. package/dist/lib/components/QcustomConfigEdit/src/useConfigData.d.ts +1 -1
  35. package/dist/lib/components/QcustomConfigList/src/QcustomConfigList.vue.d.ts +8 -7
  36. package/dist/lib/components/QsysConfigList/src/QsysConfigList.vue.d.ts +2 -3
  37. package/dist/lib/components/index.d.ts +2 -2
  38. package/dist/lib/components/integratedNodesList/src/QIntegratedNodesDetail.vue.d.ts +2863 -0
  39. package/dist/lib/components/integratedNodesList/src/QIntegratedNodesEdit.vue.d.ts +2872 -0
  40. package/dist/lib/components/integratedNodesList/src/index.vue.d.ts +8 -11
  41. package/dist/lib/components/integratedReportSearchList/src/index.vue.d.ts +16 -10
  42. package/dist/lib/components/loginAbnormalLogList/src/index.vue.d.ts +2 -9
  43. package/dist/lib/components/loginLogList/src/index.vue.d.ts +2 -8
  44. package/dist/lib/components/loginSupplierLogList/src/index.vue.d.ts +2 -12
  45. package/dist/lib/components/operateLogList/src/index.vue.d.ts +2 -13
  46. package/dist/style.css +1 -1
  47. package/dist/vite-env.d.ts +13 -13
  48. package/package.json +13 -11
  49. package/src/lib/components/QAccountList/src/QAccountCreate.vue +272 -0
  50. package/src/lib/components/QAccountList/src/QAccountDetail.vue +82 -14
  51. package/src/lib/components/QAccountList/src/QAccountEdit.vue +65 -33
  52. package/src/lib/components/QAccountList/src/QAccountList.vue +532 -530
  53. package/src/lib/components/QBackgroundFileTaskList/src/QBackgroundFileTaskList.vue +143 -137
  54. package/src/lib/components/QElsEmailSendLogList/src/QElsEmailSendLogList.vue +172 -166
  55. package/src/lib/components/QElsMsgRecordList/src/QElsMsgRecordList.vue +123 -124
  56. package/src/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsEdit.vue +66 -18
  57. package/src/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsList.vue +151 -122
  58. package/src/lib/components/QI18nList/src/QI18nList.vue +365 -361
  59. package/src/lib/components/QImChatGroupList/src/QImChatGroupList.vue +103 -94
  60. package/src/lib/components/QMqRecordList/src/QMqRecordList.vue +109 -105
  61. package/src/lib/components/QPermissionDataList/src/QPermissionDataAuth.vue +3 -3
  62. package/src/lib/components/QPermissionDataList/src/QPermissionDataEdit.vue +218 -221
  63. package/src/lib/components/QPermissionDataList/src/QPermissionDataList.vue +110 -117
  64. package/src/lib/components/QPermissionDataList/src/form.vue +109 -109
  65. package/src/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeDetail.vue +1 -1
  66. package/src/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeEdit.vue +120 -32
  67. package/src/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeList.vue +189 -163
  68. package/src/lib/components/QPurchaseNoticeList/src/use-field-select-modal-hook.ts +84 -0
  69. package/src/lib/components/QPurchaseNoticeList/src/useConfigData.ts +22 -22
  70. package/src/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateList.vue +134 -85
  71. package/src/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateModal.vue +91 -0
  72. package/src/lib/components/QQuartzJobList/src/QQuartzJobList.vue +276 -263
  73. package/src/lib/components/QRoleList/src/QRoleList.vue +332 -288
  74. package/src/lib/components/QRoleList/src/useConfigData.ts +1 -6
  75. package/src/lib/components/QSupplierAccountList/src/QSupplierAccountList.vue +304 -302
  76. package/src/lib/components/QUsageList/src/QUsageList.vue +287 -82
  77. package/src/lib/components/QUsageList/src/useConfigData.ts +147 -13
  78. package/src/lib/components/QcustomConfigEdit/component/AddDictCodeModal.vue +140 -140
  79. package/src/lib/components/QcustomConfigEdit/component/regexComponent.tsx +28 -28
  80. package/src/lib/components/QcustomConfigEdit/src/QcustomConfigEdit.vue +130 -42
  81. package/src/lib/components/QcustomConfigEdit/src/QcustomConfigRender.tsx +2 -2
  82. package/src/lib/components/QcustomConfigEdit/src/useConfigData.ts +2 -2
  83. package/src/lib/components/QcustomConfigEdit/src/useConstant.ts +12 -12
  84. package/src/lib/components/QcustomConfigList/src/QcustomConfigList.vue +276 -268
  85. package/src/lib/components/QcustomConfigList/src/useConfigData.ts +1 -1
  86. package/src/lib/components/QsysConfigList/src/QsysConfigList.vue +124 -125
  87. package/src/lib/components/index.ts +78 -78
  88. package/src/lib/components/integratedNodesList/src/QIntegratedNodesEdit.vue +2 -10
  89. package/src/lib/components/integratedNodesList/src/index.vue +130 -136
  90. package/src/lib/components/integratedReportList/src/index.vue +55 -30
  91. package/src/lib/components/integratedReportSearchList/src/index.vue +106 -66
  92. package/src/lib/components/loginAbnormalLogList/src/index.vue +43 -50
  93. package/src/lib/components/loginLogList/src/index.vue +51 -57
  94. package/src/lib/components/loginSupplierLogList/src/index.vue +53 -63
  95. package/src/lib/components/operateLogList/src/index.vue +46 -57
  96. package/src/vite-env.d.ts +13 -13
  97. package/tsconfig.json +24 -24
  98. package/vite.config.ts +1 -1
  99. package/dist/lib/components/QCompanyermissionList/src/form.vue.d.ts +0 -80
  100. package/dist/lib/components/QCompanyermissionList/src/types.d.ts +0 -44
  101. package/dist/lib/components/integratedReportList/src/index.vue.d.ts +0 -70
  102. package/src/lib/components/QCompanyermissionList/src/editTree.vue +0 -291
  103. package/src/lib/components/QCompanyermissionList/src/form.vue +0 -238
  104. package/src/lib/components/QCompanyermissionList/src/index.vue +0 -309
  105. package/src/lib/components/QCompanyermissionList/src/types.ts +0 -44
@@ -1,57 +1,51 @@
1
- <!--
2
- * @Author: your name
3
- * @Date: 2023-05-20 01:51:39
4
- * @LastEditTime: 2023-05-21 16:24:10
5
- * @LastEditors: LOK
6
- * @Description: 登录日志
7
- * @FilePath: \v6-dev\modules\system\src\lib\components\loginLogList\src\index.vue
8
- -->
9
- <template><q-list-layout :apiUrls="apiUrls" :pageData="pageData"></q-list-layout></template>
10
- <script setup lang="ts">
11
- import { reactive } from 'vue'
12
- const apiUrls = reactive({
13
- columnsCode: 'ElsLog',
14
- list: '/log/list',
15
- countTabsUrl: '',
16
- })
17
- const pageData = reactive({
18
- statusConfig: {
19
- show: false,
20
- },
21
- optColumn: {
22
- attrs: {},
23
- extend: {},
24
- optColumnList: [],
25
- },
26
- buttonConfig: {
27
- attrs: {},
28
- extend: {},
29
- buttons: [
30
- {
31
- label: '列自定义',
32
- icon: {
33
- type: 'icon-Q-setting',
34
- },
35
- type: 'setting',
36
- },
37
- ],
38
- },
39
- queryConfig: {
40
- attrs: {},
41
- extend: {},
42
- form: [
43
- {
44
- type: 'input',
45
- label: '搜索日志',
46
- fieldName: 'keyWord',
47
- placeholder: '请输入搜索关键字',
48
- },
49
- ],
50
- formState: {
51
- keyWord: '',
52
- logType: 1,
53
- },
54
- },
55
- pagerConfig: {},
56
- })
57
- </script>
1
+ <!--
2
+ * @Author: your name
3
+ * @Date: 2023-05-20 01:51:39
4
+ * @LastEditTime: 2023-05-21 16:24:10
5
+ * @LastEditors: LOK
6
+ * @Description: 登录日志
7
+ * @FilePath: \v6-dev\modules\system\src\lib\components\loginLogList\src\index.vue
8
+ -->
9
+ <template><q-list-layout :apiUrls="apiUrls" :pageData="pageData"></q-list-layout></template>
10
+ <script setup lang="ts">
11
+ import { reactive } from 'vue'
12
+ const apiUrls = reactive({
13
+ columnsCode: 'ElsLog',
14
+ list: '/log/list',
15
+ countTabsUrl: '',
16
+ })
17
+ const pageData = reactive({
18
+ statusConfig: {
19
+ show: false,
20
+ },
21
+ optionConfig: {
22
+ options: [],
23
+ },
24
+ buttonConfig: {
25
+ buttons: [
26
+ {
27
+ label: '列自定义',
28
+ icon: {
29
+ type: 'icon-Q-setting',
30
+ },
31
+ type: 'setting',
32
+ },
33
+ ],
34
+ },
35
+ queryConfig: {
36
+ form: [
37
+ {
38
+ type: 'input',
39
+ label: '搜索日志',
40
+ fieldName: 'keyWord',
41
+ placeholder: '请输入搜索关键字',
42
+ },
43
+ ],
44
+ formState: {
45
+ keyWord: '',
46
+ logType: 1,
47
+ },
48
+ },
49
+ pagerConfig: {},
50
+ })
51
+ </script>
@@ -1,63 +1,53 @@
1
- <!--
2
- * @Author: your name
3
- * @Date: 2023-05-21 17:05:59
4
- * @LastEditTime: 2023-05-21 17:10:07
5
- * @LastEditors: LOK
6
- * @Description: 供应商登录日志
7
- * @FilePath: \v6-dev\modules\system\src\lib\components\loginSupplierLogList\src\index.vue
8
- -->
9
- <template><q-list-layout :apiUrls="apiUrls" :pageData="pageData"></q-list-layout></template>
10
- <script setup lang="ts">
11
- import { reactive } from 'vue'
12
- const apiUrls = reactive({
13
- columnsCode: 'SupplierLoginLog',
14
- list: '/log/querySupplierLoginList',
15
- countTabsUrl: '',
16
- })
17
- const pageData = reactive({
18
- statusConfig: {
19
- show: false,
20
- },
21
- optColumn: {
22
- attrs: {},
23
- extend: {},
24
- optColumnList: [],
25
- },
26
- buttonConfig: {
27
- attrs: {},
28
- extend: {},
29
- buttons: [
30
- {
31
- label: '列自定义',
32
- icon: {
33
- type: 'icon-Q-setting',
34
- },
35
- type: 'setting',
36
- },
37
- ],
38
- },
39
- queryConfig: {
40
- attrs: {},
41
- extend: {},
42
- form: [
43
- {
44
- type: 'input',
45
- label: '供应商名称',
46
- fieldName: 'supplierName',
47
- placeholder: '请输入供应商名称',
48
- },
49
- {
50
- type: 'input',
51
- label: '月份',
52
- fieldName: 'logMonth',
53
- placeholder: '请输入月份',
54
- },
55
- ],
56
- formState: {
57
- supplierName: '',
58
- logMonth: '',
59
- },
60
- },
61
- pagerConfig: {},
62
- })
63
- </script>
1
+ <!--
2
+ * @Author: your name
3
+ * @Date: 2023-05-21 17:05:59
4
+ * @LastEditTime: 2023-05-21 17:10:07
5
+ * @LastEditors: LOK
6
+ * @Description: 供应商登录日志
7
+ * @FilePath: \v6-dev\modules\system\src\lib\components\loginSupplierLogList\src\index.vue
8
+ -->
9
+ <template><q-list-layout :apiUrls="apiUrls" :pageData="pageData"></q-list-layout></template>
10
+ <script setup lang="ts">
11
+ import { reactive } from 'vue'
12
+ const apiUrls = reactive({
13
+ columnsCode: 'SupplierLoginLog',
14
+ list: '/log/querySupplierLoginList',
15
+ countTabsUrl: '',
16
+ })
17
+ const pageData = reactive({
18
+ statusConfig: {
19
+ show: false,
20
+ },
21
+ optionConfig: {
22
+ options: [],
23
+ },
24
+ buttonConfig: {
25
+ buttons: [
26
+ {
27
+ label: '列自定义',
28
+ icon: {
29
+ type: 'icon-Q-setting',
30
+ },
31
+ type: 'setting',
32
+ },
33
+ ],
34
+ },
35
+ queryConfig: {
36
+ form: [
37
+ {
38
+ type: 'input',
39
+ label: '供应商名称',
40
+ fieldName: 'supplierName',
41
+ placeholder: '请输入供应商名称',
42
+ },
43
+ {
44
+ type: 'input',
45
+ label: '月份',
46
+ fieldName: 'logMonth',
47
+ placeholder: '请输入月份',
48
+ },
49
+ ],
50
+ },
51
+ pagerConfig: {},
52
+ })
53
+ </script>
@@ -1,57 +1,46 @@
1
- <template><q-list-layout :apiUrls="apiUrls" :pageData="pageData"></q-list-layout></template>
2
- <script setup lang="ts">
3
- import { reactive } from 'vue'
4
- const apiUrls = reactive({
5
- columnsCode: 'ElsLog',
6
- list: '/log/list',
7
- countTabsUrl: '',
8
- })
9
- const pageData = reactive({
10
- statusConfig: {
11
- show: false,
12
- },
13
- optColumn: {
14
- attrs: {},
15
- extend: {},
16
- optColumnList: [],
17
- },
18
- buttonConfig: {
19
- attrs: {},
20
- extend: {},
21
- buttons: [
22
- {
23
- label: '列自定义',
24
- icon: {
25
- type: 'icon-Q-setting',
26
- },
27
- type: 'setting',
28
- },
29
- ],
30
- },
31
- queryConfig: {
32
- attrs: {},
33
- extend: {},
34
- form: [
35
- {
36
- type: 'input',
37
- label: '搜索日志',
38
- fieldName: 'keyWord',
39
- placeholder: '请输入搜索关键字',
40
- },
41
- {
42
- type: 'select',
43
- label: '操作类型',
44
- fieldName: 'operateType',
45
- dictCode: 'operate_type',
46
- placeholder: '请选择',
47
- },
48
- ],
49
- formState: {
50
- keyWord: '',
51
- operateType: '',
52
- logType: 2,
53
- },
54
- },
55
- pagerConfig: {},
56
- })
57
- </script>
1
+ <template><q-list-layout :apiUrls="apiUrls" :pageData="pageData"></q-list-layout></template>
2
+ <script setup lang="ts">
3
+ import { reactive } from 'vue'
4
+ const apiUrls = reactive({
5
+ columnsCode: 'ElsLog',
6
+ list: '/log/list',
7
+ countTabsUrl: '',
8
+ })
9
+ const pageData = reactive({
10
+ statusConfig: {
11
+ show: false,
12
+ },
13
+ optionConfig: {
14
+ options: [],
15
+ },
16
+ buttonConfig: {
17
+ buttons: [
18
+ {
19
+ label: '列自定义',
20
+ icon: {
21
+ type: 'icon-Q-setting',
22
+ },
23
+ type: 'setting',
24
+ },
25
+ ],
26
+ },
27
+ queryConfig: {
28
+ form: [
29
+ {
30
+ type: 'input',
31
+ label: '搜索日志',
32
+ fieldName: 'keyWord',
33
+ placeholder: '请输入搜索关键字',
34
+ },
35
+ {
36
+ type: 'select',
37
+ label: '操作类型',
38
+ fieldName: 'operateType',
39
+ dictCode: 'operate_type',
40
+ placeholder: '请选择',
41
+ },
42
+ ],
43
+ },
44
+ pagerConfig: {},
45
+ })
46
+ </script>
package/src/vite-env.d.ts CHANGED
@@ -1,13 +1,13 @@
1
- /// <reference types="vite/client" />
2
- import type { GlobalPageLayoutTypes } from '@qqt-product/ui'
3
- declare module '*.vue' {
4
- import type { DefineComponent } from 'vue'
5
- // eslint-disable-next-line @typescript-eslint/ban-types, @typescript-eslint/no-explicit-any
6
- const component: DefineComponent<{}, {}, any>
7
- export default component
8
- }
9
- declare module 'vue' {
10
- interface ComponentCustomProperties {
11
- instance: GlobalPageLayoutTypes.Expose
12
- }
13
- }
1
+ /// <reference types="vite/client" />
2
+ import type { GlobalPageLayoutTypes } from '@qqt-product/ui'
3
+ declare module '*.vue' {
4
+ import type { DefineComponent } from 'vue'
5
+ // eslint-disable-next-line @typescript-eslint/ban-types, @typescript-eslint/no-explicit-any
6
+ const component: DefineComponent<{}, {}, any>
7
+ export default component
8
+ }
9
+ declare module 'vue' {
10
+ interface ComponentCustomProperties {
11
+ instance: GlobalPageLayoutTypes.Expose
12
+ }
13
+ }
package/tsconfig.json CHANGED
@@ -1,24 +1,24 @@
1
- {
2
- "compilerOptions": {
3
- "noImplicitAny": false,
4
- "target": "ESNext",
5
- "useDefineForClassFields": true,
6
- "module": "ESNext",
7
- "moduleResolution": "Node",
8
- "strict": true,
9
- "jsx": "preserve",
10
- "sourceMap": true,
11
- "resolveJsonModule": true,
12
- "isolatedModules": true,
13
- "esModuleInterop": true,
14
- "lib": ["ESNext", "DOM"],
15
- "skipLibCheck": true,
16
- "declaration": true,
17
- "baseUrl": "./",
18
- "paths": {
19
- "@/*": ["src/*"]
20
- }
21
- },
22
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "../apps/v6/src/setting/vxe-table/feature.ts"],
23
- "references": [{ "path": "./tsconfig.node.json" }]
24
- }
1
+ {
2
+ "compilerOptions": {
3
+ "noImplicitAny": false,
4
+ "target": "ESNext",
5
+ "useDefineForClassFields": true,
6
+ "module": "ESNext",
7
+ "moduleResolution": "Node",
8
+ "strict": true,
9
+ "jsx": "preserve",
10
+ "sourceMap": true,
11
+ "resolveJsonModule": true,
12
+ "isolatedModules": true,
13
+ "esModuleInterop": true,
14
+ "lib": ["ESNext", "DOM"],
15
+ "skipLibCheck": true,
16
+ "declaration": true,
17
+ "baseUrl": "./",
18
+ "paths": {
19
+ "@/*": ["src/*"]
20
+ }
21
+ },
22
+ "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "../apps/v6/src/setting/vxe-table/feature.ts"],
23
+ "references": [{ "path": "./tsconfig.node.json" }]
24
+ }
package/vite.config.ts CHANGED
@@ -32,7 +32,7 @@ export default defineConfig({
32
32
  lib: {
33
33
  // 入口文件
34
34
  entry: resolve(__dirname, './src/lib/index.ts'),
35
- name: 'ui',
35
+ name: 'system',
36
36
  fileName: (format) => `index.${format}.js`,
37
37
  },
38
38
  rollupOptions: {
@@ -1,80 +0,0 @@
1
- import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
2
- import { VxeFormEvents, VxeFormPropTypes } from 'vxe-table';
3
- declare const _sfc_main: DefineComponent<{
4
- title: {
5
- type: StringConstructor;
6
- default: string;
7
- };
8
- show: {
9
- type: BooleanConstructor;
10
- default: boolean;
11
- };
12
- treeData: {
13
- type: ObjectConstructor;
14
- };
15
- currentRow: {
16
- type: ObjectConstructor;
17
- };
18
- menuTypes: {
19
- type: ObjectConstructor;
20
- };
21
- menuAttributeTypes: {
22
- type: ObjectConstructor;
23
- };
24
- }, {
25
- modalTitle: Ref<string>;
26
- previousMenus: Ref<never[]>;
27
- previousMenusVisible: () => boolean;
28
- showModal: Ref<boolean>;
29
- hideModal: () => void;
30
- menuTypesOpts: Ref<Record<string, any> | undefined>;
31
- menuAttributeTypesOpts: Ref<Record<string, any> | undefined>;
32
- permission: {
33
- loading: boolean;
34
- formData: {
35
- id: null;
36
- parentId: null;
37
- menuType: null;
38
- name: null;
39
- nameI18nKey: null;
40
- url: null;
41
- menuAttribute: null;
42
- component: null;
43
- redirect: null;
44
- perms: null;
45
- keepAlive: null;
46
- icon: null;
47
- sortNo: null;
48
- hidden: null;
49
- mobile: null;
50
- };
51
- formRules: VxeFormPropTypes.Rules;
52
- };
53
- save: () => Promise<void>;
54
- submitEvent: VxeFormEvents.Submit;
55
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
56
- title: {
57
- type: StringConstructor;
58
- default: string;
59
- };
60
- show: {
61
- type: BooleanConstructor;
62
- default: boolean;
63
- };
64
- treeData: {
65
- type: ObjectConstructor;
66
- };
67
- currentRow: {
68
- type: ObjectConstructor;
69
- };
70
- menuTypes: {
71
- type: ObjectConstructor;
72
- };
73
- menuAttributeTypes: {
74
- type: ObjectConstructor;
75
- };
76
- }>>, {
77
- title: string;
78
- show: boolean;
79
- }, {}>;
80
- export default _sfc_main;
@@ -1,44 +0,0 @@
1
- export interface PermissionDataType {
2
- id?: string;
3
- alwaysShow?: boolean;
4
- children?: PermissionDataType[] | null;
5
- companyMeunId?: string;
6
- component?: string;
7
- createBy?: string;
8
- createTime?: string;
9
- defaultMenu?: string;
10
- deleted?: string | number;
11
- description?: string;
12
- helpDocUrl?: string;
13
- hidden?: boolean;
14
- icon?: string;
15
- iconColor?: string;
16
- internalOrExternal?: boolean;
17
- isLeaf?: boolean;
18
- keepAlive?: boolean;
19
- key?: string;
20
- leaf?: boolean;
21
- menuAttribute?: number | string;
22
- menuType?: string | number;
23
- mobile?: boolean;
24
- name?: string;
25
- nameI18nKey?: string;
26
- parentId?: string;
27
- perms?: string;
28
- permsType?: string | number;
29
- purchasePermissionId?: string | number;
30
- redirect?: string;
31
- route?: boolean;
32
- sortNo?: string | number | null;
33
- status?: string | number;
34
- superQueryFlag?: boolean;
35
- title?: string;
36
- updateBy?: string;
37
- updateTime?: string;
38
- url?: string;
39
- }
40
- export interface PermissionFormState {
41
- username: string;
42
- nickname: string;
43
- checkNick: boolean;
44
- }
@@ -1,70 +0,0 @@
1
- import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
2
- declare const _sfc_main: DefineComponent<{}, {
3
- apiUrls: {
4
- columnsCode: string;
5
- list: string;
6
- countTabsUrl: string;
7
- };
8
- pageData: {
9
- statusConfig: {
10
- show: boolean;
11
- };
12
- optColumn: {
13
- attrs: {};
14
- extend: {};
15
- optColumnList: never[];
16
- };
17
- buttonConfig: {
18
- attrs: {};
19
- extend: {};
20
- buttons: ({
21
- authorityCode: string;
22
- label: string;
23
- icon: string;
24
- type: string;
25
- click: () => void;
26
- } | {
27
- authorityCode: string;
28
- label: string;
29
- icon: string;
30
- click: () => void;
31
- type?: undefined;
32
- } | {
33
- label: string;
34
- icon: {
35
- type: string;
36
- };
37
- type: string;
38
- authorityCode?: undefined;
39
- click?: undefined;
40
- })[];
41
- };
42
- queryConfig: {
43
- attrs: {};
44
- extend: {};
45
- form: ({
46
- type: string;
47
- label: string;
48
- fieldName: string;
49
- placeholder: string;
50
- startProp?: undefined;
51
- endProp?: undefined;
52
- } | {
53
- type: string;
54
- startProp: string;
55
- endProp: string;
56
- label: string;
57
- placeholder: string[];
58
- fieldName?: undefined;
59
- })[];
60
- formState: {
61
- dataJson: string;
62
- businessDataType: string;
63
- beginTime: string;
64
- endTime: string;
65
- };
66
- };
67
- pagerConfig: {};
68
- };
69
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
70
- export default _sfc_main;