ecinc-cloud-yoagwgl 9.5.210 → 9.5.212
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/index.js +9 -2
- package/lang/en.js +812 -0
- package/lang/es.js +468 -0
- package/lang/index.js +25 -0
- package/lang/ja.js +468 -0
- package/lang/zhCN.js +812 -0
- package/lib/ecyoagwgl.common.js +7098 -1861
- package/lib/ecyoagwgl.umd.js +7098 -1861
- package/lib/ecyoagwgl.umd.min.js +7 -7
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -4,6 +4,8 @@ import GwglFilingSystem from './src/components/FilingSystem'
|
|
|
4
4
|
import GwglFlowList from './src/components/flowList'
|
|
5
5
|
import GwglTbColumns from './src/components/TbColumns'
|
|
6
6
|
import GwglModuleIndex from './src/components/moduleIndex'
|
|
7
|
+
import GwglZdzggToForm from './src/components/zdzggForm.vue'
|
|
8
|
+
import GwglInternalCommsInfo from './src/components/InternalCommsInfo'
|
|
7
9
|
// fileLevel 为操作列,在src下
|
|
8
10
|
import GwglFileLevel from './src/fileLevel/index'
|
|
9
11
|
|
|
@@ -35,6 +37,7 @@ const components = {
|
|
|
35
37
|
GwglFilingSystem,
|
|
36
38
|
GwglFlowList,
|
|
37
39
|
GwglTbColumns,
|
|
40
|
+
GwglZdzggToForm,
|
|
38
41
|
GwglModuleIndex,
|
|
39
42
|
GwglFileLevel,
|
|
40
43
|
GwglGdgl,
|
|
@@ -50,7 +53,8 @@ const components = {
|
|
|
50
53
|
GwglTjbg,
|
|
51
54
|
GwglFileForm,
|
|
52
55
|
GwglGwjhCommonGroupsIndex,
|
|
53
|
-
GwglGwjhOrgOrganizationIndex
|
|
56
|
+
GwglGwjhOrgOrganizationIndex,
|
|
57
|
+
GwglInternalCommsInfo
|
|
54
58
|
|
|
55
59
|
}
|
|
56
60
|
// 定义 install 方法
|
|
@@ -67,9 +71,12 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
67
71
|
install(window.Vue)
|
|
68
72
|
}
|
|
69
73
|
|
|
74
|
+
const $messages = require('./lang/index.js')
|
|
75
|
+
|
|
70
76
|
export default {
|
|
71
77
|
// 导出的对象必须具备一个 install 方法
|
|
72
78
|
install,
|
|
73
79
|
// 组件列表
|
|
74
|
-
...components
|
|
80
|
+
...components,
|
|
81
|
+
$messages
|
|
75
82
|
}
|