ecinc-cloud-yoabase 9.6.311 → 9.6.313
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 -2
- package/lib/ecyoabase.common.js +1136 -19
- package/lib/ecyoabase.umd.js +1136 -19
- 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
|
|
@@ -116,6 +117,7 @@ import NullifyRecords from './src/workflow/wfInstance/mainform/components/nullif
|
|
|
116
117
|
import IntelligentSearch from './src/workflow/wfInstance/mainform/components/intelligentSearch'
|
|
117
118
|
import bottomBtn from './src/workflow/wfInstance/mainform/components/bottomBtn'
|
|
118
119
|
import docmentModel from './src/workflow/wfInstance/mainform/components/docmentModel'
|
|
120
|
+
import DraftTemplate from './src/workflow/wfInstance/mainform/components/draftTemplate'
|
|
119
121
|
import FileSerial from './src/workflow/wfInstance/mainform/components/FileSerial'
|
|
120
122
|
import FilingSeal from './src/workflow/wfInstance/mainform/components/FilingSeal'
|
|
121
123
|
import FloatingButtons from './src/workflow/wfInstance/mainform/components/FloatingButtons'
|
|
@@ -167,6 +169,7 @@ const components = {
|
|
|
167
169
|
IntelligentSearch,
|
|
168
170
|
bottomBtn,
|
|
169
171
|
docmentModel,
|
|
172
|
+
DraftTemplate,
|
|
170
173
|
FileSerial,
|
|
171
174
|
FilingSeal,
|
|
172
175
|
FloatingButtons,
|
|
@@ -291,7 +294,8 @@ const components = {
|
|
|
291
294
|
wfhandovernote,
|
|
292
295
|
BasicformOpenPage,
|
|
293
296
|
importProductConfig,
|
|
294
|
-
WformLayoutSetting
|
|
297
|
+
WformLayoutSetting,
|
|
298
|
+
ZipViewer
|
|
295
299
|
}
|
|
296
300
|
// 定义 install 方法
|
|
297
301
|
const install = function (Vue) {
|