ecinc-cloud-mappaio 9.0.84 → 9.0.86

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 CHANGED
@@ -1,5 +1,3 @@
1
- require('@babel/polyfill')
2
-
3
1
  // 导入单个组件
4
2
  import app from '../../common/app/index'
5
3
  import auth from '../../common/auth/index'
@@ -26,19 +24,48 @@ import '../../ecmapp/Directive/index'
26
24
 
27
25
  // 以数组的结构保存组件,便于遍历
28
26
  const components = [
29
- app, auth, eventBus, user,
30
- Building, Basicform, DatetimeField, FileField, InputField, SelectField, SwitchField, TextareaField, IdeaField, DataTable, InnerTable, FooterButtonGroup, FloatButtonGroup, WV, SelectDialog, WfStatus,
27
+ app,
28
+ auth,
29
+ eventBus,
30
+ user,
31
+ Building,
32
+ Basicform,
33
+ DatetimeField,
34
+ FileField,
35
+ InputField,
36
+ SelectField,
37
+ SwitchField,
38
+ TextareaField,
39
+ IdeaField,
40
+ DataTable,
41
+ InnerTable,
42
+ FooterButtonGroup,
43
+ FloatButtonGroup,
44
+ WV,
45
+ SelectDialog,
46
+ WfStatus,
31
47
 
32
48
  wfengine,
33
- Attachment, BodyFile, HandleIdea, SelectOuterDeputy, SubmitHandle, SubmitDialog, ShortcutProcessing, WfNodelogList, WriteToReadIdea, PopupDialog, PdfTools, RichtextEditor
49
+ Attachment,
50
+ BodyFile,
51
+ HandleIdea,
52
+ SelectOuterDeputy,
53
+ SubmitHandle,
54
+ SubmitDialog,
55
+ ShortcutProcessing,
56
+ WfNodelogList,
57
+ WriteToReadIdea,
58
+ PopupDialog,
59
+ PdfTools,
60
+ RichtextEditor
34
61
  ]
35
62
 
36
63
  // 定义 install 方法
37
- const install = function(Vue) {
64
+ const install = function (Vue) {
38
65
  if (install.installed) return
39
66
  install.installed = true
40
67
  // 遍历并注册全局组件
41
- components.map(component => {
68
+ components.map((component) => {
42
69
  Vue.use(component)
43
70
  })
44
71
  }