ecinc-cloud-yoabase 9.6.312 → 9.6.314
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 +4 -2
- package/lib/ecyoabase.common.js +548 -24
- package/lib/ecyoabase.umd.js +549 -25
- package/lib/ecyoabase.umd.min.js +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -42,6 +42,7 @@ import VoiceVoiceDesigner from './src/voice/VoiceDesigner'
|
|
|
42
42
|
|
|
43
43
|
// common
|
|
44
44
|
import CommonComponents from './src/common/exportor'
|
|
45
|
+
import ZipViewer from './src/common/components/ZipViewer/index.vue'
|
|
45
46
|
|
|
46
47
|
const {
|
|
47
48
|
CCApply,
|
|
@@ -105,7 +106,7 @@ const {
|
|
|
105
106
|
mappWorkCalendar,
|
|
106
107
|
mappWorkEchartL,
|
|
107
108
|
mappWorkEchartZ,
|
|
108
|
-
mappWorkEchartR
|
|
109
|
+
mappWorkEchartR,
|
|
109
110
|
} = CommonComponents
|
|
110
111
|
|
|
111
112
|
// workflow
|
|
@@ -293,7 +294,8 @@ const components = {
|
|
|
293
294
|
wfhandovernote,
|
|
294
295
|
BasicformOpenPage,
|
|
295
296
|
importProductConfig,
|
|
296
|
-
WformLayoutSetting
|
|
297
|
+
WformLayoutSetting,
|
|
298
|
+
ZipViewer
|
|
297
299
|
}
|
|
298
300
|
// 定义 install 方法
|
|
299
301
|
const install = function (Vue) {
|