ecinc-cloud-yoagwgl 9.5.1 → 9.5.3
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 +6 -1
- package/lib/ecyoagwgl.common.js +1236 -187
- package/lib/ecyoagwgl.umd.js +1236 -187
- package/package.json +2 -2
- package/lib/ecyoagwgl.umd.min.js +0 -8
package/index.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
import GwglFilingSystem from './src/components/FilingSystem'
|
|
4
4
|
import GwglFlowList from './src/components/flowList'
|
|
5
5
|
import GwglTbColumns from './src/components/TbColumns'
|
|
6
|
+
import GwglModuleIndex from './src/components/moduleIndex'
|
|
6
7
|
// fileLevel 为操作列,在src下
|
|
7
8
|
import GwglFileLevel from './src/fileLevel/index'
|
|
8
9
|
|
|
@@ -25,11 +26,14 @@ import GwglSettingGdgz from './src/setting/gdgz'
|
|
|
25
26
|
// tjbg
|
|
26
27
|
import GwglTjbg from './src/tjbg/index'
|
|
27
28
|
|
|
29
|
+
import GwglFileForm from './src/gdgl/components/FileForm'
|
|
30
|
+
|
|
28
31
|
// 以数组的结构保存组件,便于遍历
|
|
29
32
|
const components = {
|
|
30
33
|
GwglFilingSystem,
|
|
31
34
|
GwglFlowList,
|
|
32
35
|
GwglTbColumns,
|
|
36
|
+
GwglModuleIndex,
|
|
33
37
|
GwglFileLevel,
|
|
34
38
|
GwglGdgl,
|
|
35
39
|
GwglGwjh,
|
|
@@ -41,7 +45,8 @@ const components = {
|
|
|
41
45
|
GwglPortletOfficial,
|
|
42
46
|
GwglSettingGdgz,
|
|
43
47
|
GwglSettingFlgl,
|
|
44
|
-
GwglTjbg
|
|
48
|
+
GwglTjbg,
|
|
49
|
+
GwglFileForm
|
|
45
50
|
|
|
46
51
|
}
|
|
47
52
|
// 定义 install 方法
|