ecinc-cloud-moazcgl 9.5.230 → 9.6.230
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 +11 -0
- package/lib/ecmoazcgl.common.js +4930 -1783
- package/lib/ecmoazcgl.umd.js +4930 -1783
- package/lib/ecmoazcgl.umd.min.js +50 -50
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -20,13 +20,24 @@ import ZcglHomeIndex from './src/home/index'
|
|
|
20
20
|
import ZcglHomeChartPie from './src/home/components/ChartPie'
|
|
21
21
|
import ZcglHomePageJy from './src/home/components/PageJy'
|
|
22
22
|
import ZcglHomePageLy from './src/home/components/PageLy'
|
|
23
|
+
import zcglSgInfoList from './src/home/components/sgInfoList'
|
|
24
|
+
import zcglCgInfoList from './src/home/components/cgInfoList'
|
|
25
|
+
import zcglAddCgInfo from './src/home/components/AddCgInfo'
|
|
26
|
+
import zcglAddSgInfo from './src/home/components/AddSgInfo'
|
|
27
|
+
import zcglWdlyzc from './src/home/components/wdlyzc'
|
|
23
28
|
import ZcglHomeGrsyIndex from './src/home/grsy/index'
|
|
24
29
|
import ZcglHomeGrsyJy from './src/home/grsy/jy'
|
|
25
30
|
import ZcglHomeGrsyLy from './src/home/grsy/ly'
|
|
26
31
|
import ZcglHomeGrsyWx from './src/home/grsy/wx'
|
|
27
32
|
import ZcglHomeGrsyTableCell from './src/home/grsy/components/TableCell'
|
|
33
|
+
|
|
28
34
|
// 以对象的结构保存组件,便于遍历
|
|
29
35
|
const components = {
|
|
36
|
+
zcglSgInfoList,
|
|
37
|
+
zcglCgInfoList,
|
|
38
|
+
zcglWdlyzc,
|
|
39
|
+
zcglAddCgInfo,
|
|
40
|
+
zcglAddSgInfo,
|
|
30
41
|
ZcglIndex, ZcglZcspIndex, ZcglDetailModal, ZcglFollowList, ZcglSelectContent, ZcglTableCell,
|
|
31
42
|
ZcglZcpdIndex, ZcglZcpdAblewq, ZcglZcpdFollowList, ZcglManageIndex, ZcglHomeIndex,
|
|
32
43
|
ZcglHomeChartPie, ZcglHomePageJy, ZcglHomePageLy, ZcglHomeGrsyIndex, ZcglHomeGrsyJy, ZcglHomeGrsyLy, ZcglHomeGrsyWx, ZcglHomeGrsyTableCell,
|