ecinc-cloud-moaecoav9 9.6.270 → 9.6.271
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 +12 -1
- package/lib/ecmoaecoa.common.js +1063 -26
- package/lib/ecmoaecoa.umd.js +1063 -26
- package/lib/ecmoaecoa.umd.min.js +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -70,6 +70,13 @@ import FullTextSearch from './src/fullTextSearch/index'
|
|
|
70
70
|
import TzggIndex from './src/tzgg/index'
|
|
71
71
|
import TzggTzgg from './src/tzgg/tzgg'
|
|
72
72
|
|
|
73
|
+
// document
|
|
74
|
+
import DocumentIndex from './src/document/index.vue'
|
|
75
|
+
import DocumentHome from './src/document/home.vue'
|
|
76
|
+
import DocumentWdsc from './src/document/wdsc.vue'
|
|
77
|
+
import DocumentJxwd from './src/document/jxwd.vue'
|
|
78
|
+
|
|
79
|
+
|
|
73
80
|
// 以对象的结构保存组件,便于遍历
|
|
74
81
|
const components = {
|
|
75
82
|
WflowCenter,
|
|
@@ -122,7 +129,11 @@ const components = {
|
|
|
122
129
|
TzggIndex,
|
|
123
130
|
TzggTzgg,
|
|
124
131
|
UsersettingContactsViewsUserDetail,
|
|
125
|
-
SetTime
|
|
132
|
+
SetTime,
|
|
133
|
+
DocumentIndex,
|
|
134
|
+
DocumentHome,
|
|
135
|
+
DocumentWdsc,
|
|
136
|
+
DocumentJxwd
|
|
126
137
|
}
|
|
127
138
|
// 定义 install 方法
|
|
128
139
|
const install = function (Vue) {
|