adtec-core-package 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +36 -36
- package/package.json +59 -59
- package/src/api/BasicApi.ts +17 -17
- package/src/api/DocumentApi.ts +27 -27
- package/src/api/SysDictCacheApi.ts +26 -26
- package/src/api/SysUserApi.ts +35 -35
- package/src/api/framework.ts +12 -12
- package/src/assets/style/ant.scss +19 -19
- package/src/assets/style/index.less +180 -180
- package/src/components/ElFlex/ElFlex.vue +297 -297
- package/src/components/OperationAuth/operationAuth.vue +26 -26
- package/src/components/Search/ElIconSearch.vue +260 -260
- package/src/components/Search/ElSearch.vue +154 -154
- package/src/components/Table/ElTableColumnEdit.vue +218 -218
- package/src/components/Title/ElTitle.vue +49 -49
- package/src/components/autoToolTip/ElAutoToolTip.vue +61 -61
- package/src/components/baseEcharts/index.vue +48 -48
- package/src/components/business/userSelect.vue +412 -412
- package/src/components/upload/ElUploads.vue +9 -2
- package/src/components/upload/FileView.vue +158 -158
- package/src/components/upload/FileViewComponents.vue +57 -57
- package/src/config/ElementPlusConfig.ts +95 -95
- package/src/css/elementUI/autocomplete.scss +89 -89
- package/src/css/elementUI/common/var.scss +1549 -1549
- package/src/css/elementUI/date-picker/picker.scss +219 -219
- package/src/css/elementUI/drawer.scss +164 -164
- package/src/css/elementUI/table.scss +694 -694
- package/src/css/elementUI/tabs.scss +659 -659
- package/src/directives/vKeydown.ts +93 -93
- package/src/hooks/useDictHooks.ts +79 -76
- package/src/hooks/useEcharts.ts +58 -58
- package/src/hooks/useFileView.ts +34 -34
- package/src/hooks/useMessageHooks.ts +132 -132
- package/src/hooks/useResetRefHooks.ts +18 -18
- package/src/interface/BaseEntity.ts +28 -28
- package/src/interface/IMdmDept.ts +82 -82
- package/src/interface/IOrgDeptInfo.ts +12 -12
- package/src/interface/ISysDictDataCacheVo.ts +46 -46
- package/src/interface/ISysDictType.ts +37 -37
- package/src/interface/ISysMenuDataVo.ts +22 -22
- package/src/interface/ISysMenuInfoVo.ts +83 -83
- package/src/interface/ISysMenuOperationVo.ts +21 -21
- package/src/interface/ISysUploadFiles.ts +16 -16
- package/src/interface/ISysUserInfo.ts +70 -70
- package/src/interface/IUserPermissionVo.ts +34 -34
- package/src/interface/Message.ts +69 -69
- package/src/interface/PageData.ts +17 -17
- package/src/interface/ResponseData.ts +16 -16
- package/src/interface/dictMapType.ts +11 -11
- package/src/interface/enum/MessageEnum.ts +41 -41
- package/src/mixin/globalMixin.ts +37 -37
- package/src/packages/index.ts +18 -18
- package/src/packages/text.vue +13 -13
- package/src/plugins/echartsConfig.ts +73 -73
- package/src/plugins/plugins.ts +12 -12
- package/src/stores/dictStore.ts +27 -20
- package/src/stores/messageStore.ts +49 -49
- package/src/stores/permissionStore.ts +108 -108
- package/src/stores/storeConfig.ts +23 -23
- package/src/stores/userInfoStore.ts +31 -31
- package/src/utils/AxiosConfig.ts +216 -216
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
import { defineStore } from 'pinia'
|
|
2
|
-
import type { ISysMessageVo } from '../interface/Message.ts'
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Create by丁盼
|
|
6
|
-
* 说明: 用户消息Store
|
|
7
|
-
* 创建时间: 2024/9/4 下午4:25
|
|
8
|
-
* 修改时间: 2024/9/4 下午4:25
|
|
9
|
-
*/
|
|
10
|
-
export const messageStore = defineStore({
|
|
11
|
-
id: 'messageStore',
|
|
12
|
-
state: () => ({
|
|
13
|
-
//@ts-ignore
|
|
14
|
-
messageList: [] as ISysMessageVo[],
|
|
15
|
-
}),
|
|
16
|
-
getters: {
|
|
17
|
-
/**
|
|
18
|
-
* 获取用户消息
|
|
19
|
-
*/
|
|
20
|
-
getMessageList(): ISysMessageVo[] {
|
|
21
|
-
return this.messageList
|
|
22
|
-
},
|
|
23
|
-
},
|
|
24
|
-
actions: {
|
|
25
|
-
/**
|
|
26
|
-
* 设置系统消息
|
|
27
|
-
* @param sysMessage
|
|
28
|
-
*/
|
|
29
|
-
setSysMessage(sysMessage: ISysMessageVo) {
|
|
30
|
-
this.messageList.unshift(sysMessage)
|
|
31
|
-
},
|
|
32
|
-
/**
|
|
33
|
-
* 清空消息
|
|
34
|
-
*/
|
|
35
|
-
clearSysMessage() {
|
|
36
|
-
this.messageList = []
|
|
37
|
-
},
|
|
38
|
-
/**
|
|
39
|
-
* 设置消息状态
|
|
40
|
-
* @param sysMessage
|
|
41
|
-
*/
|
|
42
|
-
setSysMessageStatus(sysMessage: ISysMessageVo) {
|
|
43
|
-
const index = this.messageList.findIndex((item) => item.id === sysMessage.id)
|
|
44
|
-
if (index !== -1) {
|
|
45
|
-
this.messageList.splice(index, 1)
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
},
|
|
49
|
-
})
|
|
1
|
+
import { defineStore } from 'pinia'
|
|
2
|
+
import type { ISysMessageVo } from '../interface/Message.ts'
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Create by丁盼
|
|
6
|
+
* 说明: 用户消息Store
|
|
7
|
+
* 创建时间: 2024/9/4 下午4:25
|
|
8
|
+
* 修改时间: 2024/9/4 下午4:25
|
|
9
|
+
*/
|
|
10
|
+
export const messageStore = defineStore({
|
|
11
|
+
id: 'messageStore',
|
|
12
|
+
state: () => ({
|
|
13
|
+
//@ts-ignore
|
|
14
|
+
messageList: [] as ISysMessageVo[],
|
|
15
|
+
}),
|
|
16
|
+
getters: {
|
|
17
|
+
/**
|
|
18
|
+
* 获取用户消息
|
|
19
|
+
*/
|
|
20
|
+
getMessageList(): ISysMessageVo[] {
|
|
21
|
+
return this.messageList
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
actions: {
|
|
25
|
+
/**
|
|
26
|
+
* 设置系统消息
|
|
27
|
+
* @param sysMessage
|
|
28
|
+
*/
|
|
29
|
+
setSysMessage(sysMessage: ISysMessageVo) {
|
|
30
|
+
this.messageList.unshift(sysMessage)
|
|
31
|
+
},
|
|
32
|
+
/**
|
|
33
|
+
* 清空消息
|
|
34
|
+
*/
|
|
35
|
+
clearSysMessage() {
|
|
36
|
+
this.messageList = []
|
|
37
|
+
},
|
|
38
|
+
/**
|
|
39
|
+
* 设置消息状态
|
|
40
|
+
* @param sysMessage
|
|
41
|
+
*/
|
|
42
|
+
setSysMessageStatus(sysMessage: ISysMessageVo) {
|
|
43
|
+
const index = this.messageList.findIndex((item) => item.id === sysMessage.id)
|
|
44
|
+
if (index !== -1) {
|
|
45
|
+
this.messageList.splice(index, 1)
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
})
|
|
@@ -1,108 +1,108 @@
|
|
|
1
|
-
import { defineStore } from 'pinia'
|
|
2
|
-
import type { ISysMenuInfoVo } from '../interface/ISysMenuInfoVo'
|
|
3
|
-
import { useEventBus } from '@vueuse/core'
|
|
4
|
-
import WujieVue from 'wujie-vue3'
|
|
5
|
-
|
|
6
|
-
const bus = useEventBus<string>('ActiveMenuInfo')
|
|
7
|
-
export const permissionStore = defineStore({
|
|
8
|
-
id: 'permissionStore',
|
|
9
|
-
state: () => ({
|
|
10
|
-
/**
|
|
11
|
-
* 当前激活的一级菜单
|
|
12
|
-
*/
|
|
13
|
-
//@ts-ignore
|
|
14
|
-
activeMenuInfoLevel1: null as ISysMenuInfoVo,
|
|
15
|
-
/**
|
|
16
|
-
* 保存已经打开的菜单
|
|
17
|
-
*/
|
|
18
|
-
openMenuInfo: [] as ISysMenuInfoVo[],
|
|
19
|
-
/**
|
|
20
|
-
* 当前激活菜单信息
|
|
21
|
-
*/
|
|
22
|
-
//@ts-ignore
|
|
23
|
-
activeMenuInfo: null as ISysMenuInfoVo,
|
|
24
|
-
}),
|
|
25
|
-
getters: {
|
|
26
|
-
/**
|
|
27
|
-
* 获取当前选择一级菜单
|
|
28
|
-
*/
|
|
29
|
-
getActiveMenuInfoLevel1(): ISysMenuInfoVo {
|
|
30
|
-
return this.activeMenuInfoLevel1
|
|
31
|
-
},
|
|
32
|
-
/**
|
|
33
|
-
* 获取当前菜单
|
|
34
|
-
*/
|
|
35
|
-
getActiveMenuInfo(): ISysMenuInfoVo {
|
|
36
|
-
return this.activeMenuInfo
|
|
37
|
-
},
|
|
38
|
-
/**
|
|
39
|
-
* 获取已经打开的菜单
|
|
40
|
-
*/
|
|
41
|
-
getOpenMenuInfo(): ISysMenuInfoVo[] {
|
|
42
|
-
return this.openMenuInfo
|
|
43
|
-
},
|
|
44
|
-
},
|
|
45
|
-
actions: {
|
|
46
|
-
/**
|
|
47
|
-
* 判断是否有按钮权限
|
|
48
|
-
* @param operCode
|
|
49
|
-
* @constructor
|
|
50
|
-
*/
|
|
51
|
-
IsOperationAuth(operCode: string) {
|
|
52
|
-
if (this.getActiveMenuInfo.operation) {
|
|
53
|
-
const find = this.getActiveMenuInfo.operation.find((c) => c.code === operCode)
|
|
54
|
-
if (find) {
|
|
55
|
-
return true
|
|
56
|
-
} else {
|
|
57
|
-
return false
|
|
58
|
-
}
|
|
59
|
-
} else {
|
|
60
|
-
return false
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
/**
|
|
64
|
-
* 设置选择的已经菜单
|
|
65
|
-
* @param menuInfo
|
|
66
|
-
*/
|
|
67
|
-
setActiveMenuInfoLevel1(menuInfo: ISysMenuInfoVo) {
|
|
68
|
-
this.activeMenuInfoLevel1 = menuInfo
|
|
69
|
-
},
|
|
70
|
-
/**
|
|
71
|
-
* 设置打开的菜单
|
|
72
|
-
* @param menuInfo
|
|
73
|
-
*/
|
|
74
|
-
setOpenMenuInfo(menuInfo: ISysMenuInfoVo) {
|
|
75
|
-
const find = this.openMenuInfo.find((c) => c.id === menuInfo.id)
|
|
76
|
-
if (!find) {
|
|
77
|
-
this.openMenuInfo.push(menuInfo)
|
|
78
|
-
}
|
|
79
|
-
this.activeMenuInfo = menuInfo
|
|
80
|
-
bus.emit()
|
|
81
|
-
},
|
|
82
|
-
/**
|
|
83
|
-
* 移除打开的菜单
|
|
84
|
-
* @param menuInfo
|
|
85
|
-
*/
|
|
86
|
-
removeOpenMenuInfo(menuInfo: ISysMenuInfoVo) {
|
|
87
|
-
this.openMenuInfo.splice(this.openMenuInfo.indexOf(menuInfo), 1)
|
|
88
|
-
if (menuInfo.applicationModule !== 'system' && menuInfo.isLink !== 1) {
|
|
89
|
-
//关闭子应用菜单
|
|
90
|
-
WujieVue.bus.$emit('wujie-router-close', menuInfo)
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
|
-
/**
|
|
94
|
-
* 移除所有打开的菜单
|
|
95
|
-
* @param menuInfo
|
|
96
|
-
*/
|
|
97
|
-
removeAllOpenMenuInfo(menuInfo: ISysMenuInfoVo) {
|
|
98
|
-
this.openMenuInfo = []
|
|
99
|
-
},
|
|
100
|
-
clear() {
|
|
101
|
-
this.openMenuInfo = []
|
|
102
|
-
//@ts-ignore
|
|
103
|
-
this.activeMenuInfoLevel1 = null
|
|
104
|
-
//@ts-ignore
|
|
105
|
-
this.activeMenuInfo = null
|
|
106
|
-
},
|
|
107
|
-
},
|
|
108
|
-
})
|
|
1
|
+
import { defineStore } from 'pinia'
|
|
2
|
+
import type { ISysMenuInfoVo } from '../interface/ISysMenuInfoVo'
|
|
3
|
+
import { useEventBus } from '@vueuse/core'
|
|
4
|
+
import WujieVue from 'wujie-vue3'
|
|
5
|
+
|
|
6
|
+
const bus = useEventBus<string>('ActiveMenuInfo')
|
|
7
|
+
export const permissionStore = defineStore({
|
|
8
|
+
id: 'permissionStore',
|
|
9
|
+
state: () => ({
|
|
10
|
+
/**
|
|
11
|
+
* 当前激活的一级菜单
|
|
12
|
+
*/
|
|
13
|
+
//@ts-ignore
|
|
14
|
+
activeMenuInfoLevel1: null as ISysMenuInfoVo,
|
|
15
|
+
/**
|
|
16
|
+
* 保存已经打开的菜单
|
|
17
|
+
*/
|
|
18
|
+
openMenuInfo: [] as ISysMenuInfoVo[],
|
|
19
|
+
/**
|
|
20
|
+
* 当前激活菜单信息
|
|
21
|
+
*/
|
|
22
|
+
//@ts-ignore
|
|
23
|
+
activeMenuInfo: null as ISysMenuInfoVo,
|
|
24
|
+
}),
|
|
25
|
+
getters: {
|
|
26
|
+
/**
|
|
27
|
+
* 获取当前选择一级菜单
|
|
28
|
+
*/
|
|
29
|
+
getActiveMenuInfoLevel1(): ISysMenuInfoVo {
|
|
30
|
+
return this.activeMenuInfoLevel1
|
|
31
|
+
},
|
|
32
|
+
/**
|
|
33
|
+
* 获取当前菜单
|
|
34
|
+
*/
|
|
35
|
+
getActiveMenuInfo(): ISysMenuInfoVo {
|
|
36
|
+
return this.activeMenuInfo
|
|
37
|
+
},
|
|
38
|
+
/**
|
|
39
|
+
* 获取已经打开的菜单
|
|
40
|
+
*/
|
|
41
|
+
getOpenMenuInfo(): ISysMenuInfoVo[] {
|
|
42
|
+
return this.openMenuInfo
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
actions: {
|
|
46
|
+
/**
|
|
47
|
+
* 判断是否有按钮权限
|
|
48
|
+
* @param operCode
|
|
49
|
+
* @constructor
|
|
50
|
+
*/
|
|
51
|
+
IsOperationAuth(operCode: string) {
|
|
52
|
+
if (this.getActiveMenuInfo.operation) {
|
|
53
|
+
const find = this.getActiveMenuInfo.operation.find((c) => c.code === operCode)
|
|
54
|
+
if (find) {
|
|
55
|
+
return true
|
|
56
|
+
} else {
|
|
57
|
+
return false
|
|
58
|
+
}
|
|
59
|
+
} else {
|
|
60
|
+
return false
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
/**
|
|
64
|
+
* 设置选择的已经菜单
|
|
65
|
+
* @param menuInfo
|
|
66
|
+
*/
|
|
67
|
+
setActiveMenuInfoLevel1(menuInfo: ISysMenuInfoVo) {
|
|
68
|
+
this.activeMenuInfoLevel1 = menuInfo
|
|
69
|
+
},
|
|
70
|
+
/**
|
|
71
|
+
* 设置打开的菜单
|
|
72
|
+
* @param menuInfo
|
|
73
|
+
*/
|
|
74
|
+
setOpenMenuInfo(menuInfo: ISysMenuInfoVo) {
|
|
75
|
+
const find = this.openMenuInfo.find((c) => c.id === menuInfo.id)
|
|
76
|
+
if (!find) {
|
|
77
|
+
this.openMenuInfo.push(menuInfo)
|
|
78
|
+
}
|
|
79
|
+
this.activeMenuInfo = menuInfo
|
|
80
|
+
bus.emit()
|
|
81
|
+
},
|
|
82
|
+
/**
|
|
83
|
+
* 移除打开的菜单
|
|
84
|
+
* @param menuInfo
|
|
85
|
+
*/
|
|
86
|
+
removeOpenMenuInfo(menuInfo: ISysMenuInfoVo) {
|
|
87
|
+
this.openMenuInfo.splice(this.openMenuInfo.indexOf(menuInfo), 1)
|
|
88
|
+
if (menuInfo.applicationModule !== 'system' && menuInfo.isLink !== 1) {
|
|
89
|
+
//关闭子应用菜单
|
|
90
|
+
WujieVue.bus.$emit('wujie-router-close', menuInfo)
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
/**
|
|
94
|
+
* 移除所有打开的菜单
|
|
95
|
+
* @param menuInfo
|
|
96
|
+
*/
|
|
97
|
+
removeAllOpenMenuInfo(menuInfo: ISysMenuInfoVo) {
|
|
98
|
+
this.openMenuInfo = []
|
|
99
|
+
},
|
|
100
|
+
clear() {
|
|
101
|
+
this.openMenuInfo = []
|
|
102
|
+
//@ts-ignore
|
|
103
|
+
this.activeMenuInfoLevel1 = null
|
|
104
|
+
//@ts-ignore
|
|
105
|
+
this.activeMenuInfo = null
|
|
106
|
+
},
|
|
107
|
+
},
|
|
108
|
+
})
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { createPinia } from 'pinia'
|
|
2
|
-
import { storePlugin } from 'pinia-plugin-store'
|
|
3
|
-
import Utf8 from 'crypto-js/enc-utf8'
|
|
4
|
-
import Base64 from 'crypto-js/enc-base64'
|
|
5
|
-
|
|
6
|
-
const store = createPinia()
|
|
7
|
-
function encrypt(value: string): string {
|
|
8
|
-
return Base64.stringify(Utf8.parse(value))
|
|
9
|
-
}
|
|
10
|
-
function decrypt(value: string): string {
|
|
11
|
-
return Base64.parse(value).toString(Utf8)
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
const plugin = storePlugin({
|
|
15
|
-
stores: ['userInfoStore', 'messageStore', 'dictStore','permissionStore'],
|
|
16
|
-
// use alone storage
|
|
17
|
-
// stores: [{name:'theme_store',storage: localStorage}]
|
|
18
|
-
storage: sessionStorage, //default storage
|
|
19
|
-
encrypt,
|
|
20
|
-
decrypt,
|
|
21
|
-
})
|
|
22
|
-
store.use(plugin)
|
|
23
|
-
export default store
|
|
1
|
+
import { createPinia } from 'pinia'
|
|
2
|
+
import { storePlugin } from 'pinia-plugin-store'
|
|
3
|
+
import Utf8 from 'crypto-js/enc-utf8'
|
|
4
|
+
import Base64 from 'crypto-js/enc-base64'
|
|
5
|
+
|
|
6
|
+
const store = createPinia()
|
|
7
|
+
function encrypt(value: string): string {
|
|
8
|
+
return Base64.stringify(Utf8.parse(value))
|
|
9
|
+
}
|
|
10
|
+
function decrypt(value: string): string {
|
|
11
|
+
return Base64.parse(value).toString(Utf8)
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const plugin = storePlugin({
|
|
15
|
+
stores: ['userInfoStore', 'messageStore', 'dictStore','permissionStore'],
|
|
16
|
+
// use alone storage
|
|
17
|
+
// stores: [{name:'theme_store',storage: localStorage}]
|
|
18
|
+
storage: sessionStorage, //default storage
|
|
19
|
+
encrypt,
|
|
20
|
+
decrypt,
|
|
21
|
+
})
|
|
22
|
+
store.use(plugin)
|
|
23
|
+
export default store
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Create by丁盼
|
|
3
|
-
* 说明: userInfoStore
|
|
4
|
-
* 创建时间: 2025/1/15 11:40
|
|
5
|
-
* 修改时间: 2025/1/15 11:40
|
|
6
|
-
*/
|
|
7
|
-
import { defineStore } from 'pinia'
|
|
8
|
-
import type { IUserPermissionVo } from '../interface/IUserPermissionVo'
|
|
9
|
-
|
|
10
|
-
export const userInfoStore = defineStore({
|
|
11
|
-
id: 'userInfoStore',
|
|
12
|
-
state: () => ({
|
|
13
|
-
//@ts-ignore
|
|
14
|
-
user: null as IUserPermissionVo
|
|
15
|
-
}),
|
|
16
|
-
getters: {
|
|
17
|
-
getUserInfo(): IUserPermissionVo {
|
|
18
|
-
return this.user as IUserPermissionVo
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
actions: {
|
|
22
|
-
setUserInfo(userInfo: IUserPermissionVo) {
|
|
23
|
-
//@ts-ignore
|
|
24
|
-
this.user = userInfo
|
|
25
|
-
},
|
|
26
|
-
clear() {
|
|
27
|
-
//@ts-ignore
|
|
28
|
-
this.user = null
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
})
|
|
1
|
+
/**
|
|
2
|
+
* Create by丁盼
|
|
3
|
+
* 说明: userInfoStore
|
|
4
|
+
* 创建时间: 2025/1/15 11:40
|
|
5
|
+
* 修改时间: 2025/1/15 11:40
|
|
6
|
+
*/
|
|
7
|
+
import { defineStore } from 'pinia'
|
|
8
|
+
import type { IUserPermissionVo } from '../interface/IUserPermissionVo'
|
|
9
|
+
|
|
10
|
+
export const userInfoStore = defineStore({
|
|
11
|
+
id: 'userInfoStore',
|
|
12
|
+
state: () => ({
|
|
13
|
+
//@ts-ignore
|
|
14
|
+
user: null as IUserPermissionVo
|
|
15
|
+
}),
|
|
16
|
+
getters: {
|
|
17
|
+
getUserInfo(): IUserPermissionVo {
|
|
18
|
+
return this.user as IUserPermissionVo
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
actions: {
|
|
22
|
+
setUserInfo(userInfo: IUserPermissionVo) {
|
|
23
|
+
//@ts-ignore
|
|
24
|
+
this.user = userInfo
|
|
25
|
+
},
|
|
26
|
+
clear() {
|
|
27
|
+
//@ts-ignore
|
|
28
|
+
this.user = null
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
})
|