adtec-core-package 0.2.5 → 0.2.7

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 (52) hide show
  1. package/README.en.md +36 -36
  2. package/package.json +1 -1
  3. package/src/api/DocumentApi.ts +18 -18
  4. package/src/api/SysDictCacheApi.ts +28 -28
  5. package/src/api/framework.ts +12 -12
  6. package/src/assets/style/ant.scss +19 -19
  7. package/src/assets/style/index.less +180 -180
  8. package/src/components/ElFlex/ElFlex.vue +297 -297
  9. package/src/components/Table/ElTableColumnEdit.vue +218 -218
  10. package/src/components/Title/ElTitle.vue +49 -49
  11. package/src/components/autoToolTip/{ElAutoToolTip.vue → index.vue} +61 -61
  12. package/src/components/upload/FileView.vue +158 -158
  13. package/src/components/upload/FileViewComponents.vue +57 -57
  14. package/src/config/ElementPlusConfig.ts +95 -95
  15. package/src/css/elementUI/autocomplete.scss +89 -89
  16. package/src/css/elementUI/common/var.scss +1549 -1549
  17. package/src/css/elementUI/date-picker/picker.scss +219 -219
  18. package/src/css/elementUI/drawer.scss +164 -164
  19. package/src/css/elementUI/table.scss +694 -694
  20. package/src/css/elementUI/tabs.scss +659 -659
  21. package/src/directives/vKeydown.ts +93 -93
  22. package/src/hooks/useDictHooks.ts +74 -81
  23. package/src/hooks/useFileView.ts +34 -34
  24. package/src/hooks/useMessageHooks.ts +132 -132
  25. package/src/hooks/useResetRefHooks.ts +19 -19
  26. package/src/interface/BaseEntity.ts +28 -28
  27. package/src/interface/ISysDictDataCacheVo.ts +46 -46
  28. package/src/interface/ISysDictType.ts +37 -37
  29. package/src/interface/ISysMenuDataVo.ts +22 -22
  30. package/src/interface/ISysMenuInfoVo.ts +83 -83
  31. package/src/interface/ISysMenuOperationVo.ts +21 -21
  32. package/src/interface/ISysUploadFiles.ts +16 -16
  33. package/src/interface/IUserPermissionVo.ts +34 -34
  34. package/src/interface/Message.ts +69 -69
  35. package/src/interface/PageData.ts +17 -17
  36. package/src/interface/ResponseData.ts +16 -16
  37. package/src/interface/enum/MessageEnum.ts +41 -41
  38. package/src/mixin/globalMixin.ts +4 -7
  39. package/src/packages/index.ts +18 -18
  40. package/src/packages/text.vue +13 -13
  41. package/src/plugins/plugins.ts +12 -12
  42. package/src/stores/dictStore.ts +20 -0
  43. package/src/stores/messageStore.ts +49 -49
  44. package/src/stores/storeConfig.ts +23 -22
  45. package/src/stores/userInfoStore.ts +31 -31
  46. package/src/utils/AxiosConfig.ts +216 -216
  47. package/src/api/BasicApi.ts +0 -17
  48. package/src/api/SysUserApi.ts +0 -35
  49. package/src/components/business/userSelect.vue +0 -412
  50. package/src/interface/IMdmDept.ts +0 -82
  51. package/src/interface/IOrgDeptInfo.ts +0 -12
  52. package/src/interface/ISysUserInfo.ts +0 -70
@@ -1,93 +1,93 @@
1
- /**
2
- * Create by丁盼
3
- * 说明: v-keydown
4
- * 创建时间: 2024/12/12 15:51
5
- * 修改时间: 2024/12/12 15:51
6
- */
7
- import { useEventBus } from '@vueuse/core'
8
- const vKeydown = {
9
- beforeMount: (el: HTMLElement) => {
10
- el.addEventListener('keydown', (e) => {
11
- if (e.key === 'Tab') {
12
- const el = e.target as HTMLElement
13
- if (el.tagName === 'INPUT' || el.tagName === 'TEXTAREA') {
14
- //查找上级DIV 节点 取消编辑
15
- let b = true
16
- let i = 0
17
- let parent: any = el
18
- while (b) {
19
- parent = parent.parentElement
20
- if (parent.className.indexOf('el-table-column-edit') > -1) {
21
- b = false
22
- } else {
23
- i++
24
- if (i > 5) {
25
- b = false
26
- }
27
- }
28
- }
29
- const bus = useEventBus<string>(parent.id)
30
- bus.emit()
31
- //寻找下一个编辑的单元格
32
- //找到el-table__cell' 节点
33
- b = true
34
- i = 0
35
- while (b) {
36
- parent = parent.parentElement
37
- if (parent.className.indexOf('el-table__cell') > -1) {
38
- b = false
39
- } else {
40
- i++
41
- if (i > 5) {
42
- b = false
43
- }
44
- }
45
- }
46
- b = true
47
- i = 0
48
- while (b) {
49
- if (parent.nextElementSibling) {
50
- const input = parent.nextElementSibling.getElementsByClassName('el-table-column-edit')
51
- if (input.length > 0) {
52
- setTimeout(() => {
53
- input[0].click()
54
- }, 10)
55
- b = false
56
- e.stopPropagation()
57
- return false
58
- } else {
59
- parent = parent.nextElementSibling
60
- i++
61
- if (i > 5) {
62
- b = false
63
- }
64
- }
65
- } else {
66
- b = false
67
- }
68
- }
69
- //如果当前行结束判断下一行数据
70
- const tr = parent.parentNode.nextElementSibling
71
- try {
72
- for (let j = 0; j < tr.children.length; j++) {
73
- const input = tr.children[j].getElementsByClassName('el-table-column-edit')
74
- if (input.length > 0) {
75
- setTimeout(() => {
76
- input[0].click()
77
- e.stopPropagation()
78
- }, 10)
79
- break
80
- }
81
- }
82
- } catch {
83
- /* empty */
84
- }
85
- }
86
- }
87
- })
88
- },
89
- unmounted: (el: HTMLElement) => {
90
- el.removeEventListener('keydown', () => {})
91
- },
92
- }
93
- export default vKeydown
1
+ /**
2
+ * Create by丁盼
3
+ * 说明: v-keydown
4
+ * 创建时间: 2024/12/12 15:51
5
+ * 修改时间: 2024/12/12 15:51
6
+ */
7
+ import { useEventBus } from '@vueuse/core'
8
+ const vKeydown = {
9
+ beforeMount: (el: HTMLElement) => {
10
+ el.addEventListener('keydown', (e) => {
11
+ if (e.key === 'Tab') {
12
+ const el = e.target as HTMLElement
13
+ if (el.tagName === 'INPUT' || el.tagName === 'TEXTAREA') {
14
+ //查找上级DIV 节点 取消编辑
15
+ let b = true
16
+ let i = 0
17
+ let parent: any = el
18
+ while (b) {
19
+ parent = parent.parentElement
20
+ if (parent.className.indexOf('el-table-column-edit') > -1) {
21
+ b = false
22
+ } else {
23
+ i++
24
+ if (i > 5) {
25
+ b = false
26
+ }
27
+ }
28
+ }
29
+ const bus = useEventBus<string>(parent.id)
30
+ bus.emit()
31
+ //寻找下一个编辑的单元格
32
+ //找到el-table__cell' 节点
33
+ b = true
34
+ i = 0
35
+ while (b) {
36
+ parent = parent.parentElement
37
+ if (parent.className.indexOf('el-table__cell') > -1) {
38
+ b = false
39
+ } else {
40
+ i++
41
+ if (i > 5) {
42
+ b = false
43
+ }
44
+ }
45
+ }
46
+ b = true
47
+ i = 0
48
+ while (b) {
49
+ if (parent.nextElementSibling) {
50
+ const input = parent.nextElementSibling.getElementsByClassName('el-table-column-edit')
51
+ if (input.length > 0) {
52
+ setTimeout(() => {
53
+ input[0].click()
54
+ }, 10)
55
+ b = false
56
+ e.stopPropagation()
57
+ return false
58
+ } else {
59
+ parent = parent.nextElementSibling
60
+ i++
61
+ if (i > 5) {
62
+ b = false
63
+ }
64
+ }
65
+ } else {
66
+ b = false
67
+ }
68
+ }
69
+ //如果当前行结束判断下一行数据
70
+ const tr = parent.parentNode.nextElementSibling
71
+ try {
72
+ for (let j = 0; j < tr.children.length; j++) {
73
+ const input = tr.children[j].getElementsByClassName('el-table-column-edit')
74
+ if (input.length > 0) {
75
+ setTimeout(() => {
76
+ input[0].click()
77
+ e.stopPropagation()
78
+ }, 10)
79
+ break
80
+ }
81
+ }
82
+ } catch {
83
+ /* empty */
84
+ }
85
+ }
86
+ }
87
+ })
88
+ },
89
+ unmounted: (el: HTMLElement) => {
90
+ el.removeEventListener('keydown', () => {})
91
+ },
92
+ }
93
+ export default vKeydown
@@ -1,81 +1,74 @@
1
- /**
2
- * 创建人 胡啸东
3
- * 说明: 查询字典Hooks
4
- * 创建时间: 2024/11/28 下午10:27
5
- * 修改时间: 2024/11/28 下午10:27
6
- */
7
- import { onBeforeUnmount, ref } from 'vue'
8
- import type { ISysDictDataCacheVo } from '../interface/ISysDictDataCacheVo'
9
- import { ElMessage } from 'element-plus'
10
- import SysDictCacheApi from '../api/SysDictCacheApi.ts'
11
-
12
- // 定义包含map的整体类型
13
- export interface dictMapType {
14
- [key: string]: ISysDictDataCacheVo[]
15
- }
16
-
17
- export default function useDictHooks(dictTypes: string[]) {
18
- const dictMap = ref<dictMapType>({})
19
- const dictDataMap = ref<Map<string, Map<string, ISysDictDataCacheVo>>>(new Map())
20
- const dictDefaultValueMap = ref<Map<string, ISysDictDataCacheVo>>(new Map())
21
- const getDict = async (dictTypes: string[]) => {
22
- try {
23
- const data = await SysDictCacheApi.batchGetSysDictDataCacheVo(dictTypes)
24
- dictMap.value = { ...dictMap.value, ...data }
25
- //获取默认值
26
- Object.keys(data).forEach((item: string) => {
27
- findDefaultValue(data[item], item)
28
- const dataMap = new Map<string, ISysDictDataCacheVo>()
29
- packageDictDataMap(dataMap, data[item])
30
- dictDataMap.value.set(item, dataMap)
31
- })
32
- } catch (error: any) {
33
- ElMessage.error(error.msg || error.message)
34
- }
35
- }
36
-
37
- const packageDictDataMap = async (
38
- map: Map<string, ISysDictDataCacheVo>,
39
- list?: ISysDictDataCacheVo[],
40
- ) => {
41
- if (list && list.length) {
42
- list.forEach((item: ISysDictDataCacheVo) => {
43
- map.set(item.value, { ...item, ...{ children: undefined } })
44
- packageDictDataMap(map, item.children)
45
- })
46
- }
47
- }
48
- const findDefaultValue = async (list: ISysDictDataCacheVo[], type: string) => {
49
- const find = getDefaultValue(list)
50
- find && dictDefaultValueMap.value.set(type, find)
51
- }
52
- const getDefaultValue = (list?: ISysDictDataCacheVo[]): ISysDictDataCacheVo | undefined => {
53
- if (list && list.length) {
54
- const find = list.find((item: ISysDictDataCacheVo) => item.isDefault === '1')
55
- if (find) return find
56
- for (const iSysDictDataCacheVo of list) {
57
- const res = getDefaultValue(iSysDictDataCacheVo.children)
58
- if (res) return res
59
- }
60
- }
61
- }
62
-
63
- const getDictName = (value?: string, dictType?: string) => {
64
- return dictDataMap.value.get(dictType!)?.get(value!)?.label || value
65
- }
66
- const getDictData = (value: string, dictType: string) => {
67
- return dictDataMap.value.get(dictType)?.get(value)
68
- }
69
- getDict(dictTypes).then(() => {})
70
- onBeforeUnmount(() => {
71
- dictDefaultValueMap.value.clear()
72
- dictDataMap.value.clear()
73
- })
74
- return {
75
- dictMap,
76
- dictDefaultValueMap,
77
- getDict,
78
- getDictName,
79
- getDictData,
80
- }
81
- }
1
+ import { ElMessage } from 'element-plus'
2
+ import SysDictCacheApi from '../api/SysDictCacheApi'
3
+ import type { ISysDictDataCacheVo } from '../interface/ISysDictDataCacheVo'
4
+ import { dictStore } from '../stores/dictStore'
5
+
6
+ export default function useDictHooks(dictTypes: string[]) {
7
+ const dictStores = dictStore()
8
+
9
+ const getDict = async (dictTypes: string[]) => {
10
+ try {
11
+ //判断是否存在缓存数据,如果存在则不请求接口
12
+ const dictKeySet = new Set(Object.keys(dictStores.dictMap))
13
+ const uncachedDictTypes = dictTypes.filter((dictType) => !dictKeySet.has(dictType))
14
+ if (!uncachedDictTypes.length) return
15
+ const data = await SysDictCacheApi.batchGetSysDictDataCacheVo(uncachedDictTypes)
16
+ dictStores.dictMap = { ...dictStores.dictMap, ...data }
17
+ // 获取默认值
18
+ Object.keys(data).forEach((item: string) => {
19
+ findDefaultValue(data[item], item)
20
+ const dataMap = new Map<string, ISysDictDataCacheVo>()
21
+ packageDictDataMap(dataMap, data[item])
22
+ dictStores.dictDataMap.set(item, dataMap)
23
+ })
24
+ } catch (error: any) {
25
+ ElMessage.error(error.msg || error.message)
26
+ }
27
+ }
28
+
29
+ const packageDictDataMap = async (
30
+ map: Map<string, ISysDictDataCacheVo>,
31
+ list?: ISysDictDataCacheVo[],
32
+ ) => {
33
+ if (list && list.length) {
34
+ list.forEach((item: ISysDictDataCacheVo) => {
35
+ map.set(item.value, { ...item, ...{ children: undefined } })
36
+ packageDictDataMap(map, item.children)
37
+ })
38
+ }
39
+ }
40
+
41
+ const findDefaultValue = async (list: ISysDictDataCacheVo[], type: string) => {
42
+ const find = getDefaultValue(list)
43
+ find && dictStores.dictDefaultValueMap.set(type, find)
44
+ }
45
+
46
+ const getDefaultValue = (list?: ISysDictDataCacheVo[]): ISysDictDataCacheVo | undefined => {
47
+ if (list && list.length) {
48
+ const find = list.find((item: ISysDictDataCacheVo) => item.isDefault === '1')
49
+ if (find) return find
50
+ for (const iSysDictDataCacheVo of list) {
51
+ const res = getDefaultValue(iSysDictDataCacheVo.children)
52
+ if (res) return res
53
+ }
54
+ }
55
+ }
56
+
57
+ const getDictName = (value?: string, dictType?: string) => {
58
+ return dictStores.dictDataMap.get(dictType!)?.get(value!)?.label || value
59
+ }
60
+
61
+ const getDictData = (value: string, dictType: string) => {
62
+ return dictStores.dictDataMap.get(dictType)?.get(value)
63
+ }
64
+
65
+ getDict(dictTypes).then(() => {})
66
+
67
+ return {
68
+ dictMap: dictStores.dictMap,
69
+ dictDefaultValueMap: dictStores.dictDefaultValueMap,
70
+ getDict,
71
+ getDictName,
72
+ getDictData,
73
+ }
74
+ }
@@ -1,34 +1,34 @@
1
- import { ref, onMounted, onUnmounted, createApp } from 'vue'
2
- import FileView from '../components/upload/FileViewComponents.vue'
3
-
4
- const useFileView = () => {
5
- const ref_fileView = ref(null)
6
-
7
- const fileView = (id: string) => {
8
- if (ref_fileView.value) {
9
- //@ts-ignore
10
- ref_fileView.value?.viewFile(id)
11
- }
12
- }
13
-
14
- onMounted(() => {
15
- const container = document.createElement('div')
16
- document.body.appendChild(container)
17
- //@ts-ignore
18
- ref_fileView.value = createApp(FileView).mount(container)
19
- onUnmounted(() => {
20
- try {
21
- //@ts-ignore
22
- ref_fileView?.value.$destroy()
23
- } catch {
24
- /* empty */
25
- }
26
- document.body.removeChild(container)
27
- })
28
- })
29
- return {
30
- fileView,
31
- }
32
- }
33
-
34
- export default useFileView
1
+ import { ref, onMounted, onUnmounted, createApp } from 'vue'
2
+ import FileView from '../components/upload/FileViewComponents.vue'
3
+
4
+ const useFileView = () => {
5
+ const ref_fileView = ref(null)
6
+
7
+ const fileView = (id: string) => {
8
+ if (ref_fileView.value) {
9
+ //@ts-ignore
10
+ ref_fileView.value?.viewFile(id)
11
+ }
12
+ }
13
+
14
+ onMounted(() => {
15
+ const container = document.createElement('div')
16
+ document.body.appendChild(container)
17
+ //@ts-ignore
18
+ ref_fileView.value = createApp(FileView).mount(container)
19
+ onUnmounted(() => {
20
+ try {
21
+ //@ts-ignore
22
+ ref_fileView?.value.$destroy()
23
+ } catch {
24
+ /* empty */
25
+ }
26
+ document.body.removeChild(container)
27
+ })
28
+ })
29
+ return {
30
+ fileView,
31
+ }
32
+ }
33
+
34
+ export default useFileView