@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
|
@@ -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
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
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
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
{
|
|
44
|
-
type: 'input',
|
|
45
|
-
label: '
|
|
46
|
-
fieldName: '
|
|
47
|
-
placeholder: '
|
|
48
|
-
},
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
{
|
|
36
|
-
type: '
|
|
37
|
-
label: '
|
|
38
|
-
fieldName: '
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
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
|
@@ -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;
|