ecinc-cloud-wappaio 9.0.73 → 9.0.76

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 ADDED
@@ -0,0 +1,116 @@
1
+ require('@babel/polyfill')
2
+
3
+ // 导入单个组件
4
+ import app from '../../common/app/index'
5
+ import auth from '../../common/auth/index'
6
+ import eventBus from '../../common/eventBus/index'
7
+ import user from '../../common/user/index'
8
+
9
+ import wfengine from '../../ecwflow/wfengine/index'
10
+
11
+ import { Basicform, DynamicForm, FormItem } from '../../ecwapp/Basicform/index'
12
+ import { BatchProcessing, TaskItemTypeTree } from '../../ecwapp/BatchProcessing/index'
13
+ import { DataTable, Toolbar } from '../../ecwapp/DataTable/index'
14
+ import DatetimeRange from '../../ecwapp/DatetimeRange/index'
15
+ import DoingDialog from '../../ecwapp/DoingDialog/index'
16
+ import InnerTable from '../../ecwapp/InnerTable/index'
17
+ import LRLayout from '../../ecwapp/LRLayout/index'
18
+ import LeftPanel from '../../ecwapp/LRLayout/src/LeftPanel'
19
+ import RightPanel from '../../ecwapp/LRLayout/src/RightPanel'
20
+ import PageContent from '../../ecwapp/PageContent/index'
21
+ import PageHeader from '../../ecwapp/PageHeader/index'
22
+ import PdfTools from '../../ecwapp/PdfTools'
23
+ import RichtextEditor from '../../ecwapp/RichtextEditor'
24
+ import ScrollPane from '../../ecwapp/ScrollPane/index'
25
+ import SelectDialog from '../../ecwapp/SelectDialog/index'
26
+ import SelectGroup from '../../ecwapp/SelectGroup/index'
27
+ import SidebarLogo from '../../ecwapp/SidebarLogo/index'
28
+ import SvgIcon from '../../ecwapp/SvgIcon/index'
29
+ import WfNames from '../../ecwapp/WfNames/index'
30
+ import { Attachment, BodyFile, CommandBar, HandleIdea, IdeaInputBox, ModifyWflogAddUser, ModifyWflogSubmitFile, ModifyWflogIdea, WriteToReadIdea, ModifyWfNodelog, SelectOuterDeputy, SubmitHandle, SubmitDialog, WfNodelogList, WflowView, ImgView, IdeaSignature, ReplaceFile, ViewBodyFile } from '../../ecwapp/Wflowform'
31
+ import { PDFInjector, TextRecognition } from '../../ecwapp/TextRecognition/index'
32
+ import '../../ecwapp/Directive/index'
33
+
34
+ import { Product, ProductRoleMgr } from '../../ecwplat/Product'
35
+ import { ResRoles, RoleInfoForm, RolePermissionForm, PermissionMatrixMgr, RoleMgr } from '../../ecwplat/ResRoles/index'
36
+ import { ModuleIndex, CopyMenu, ModuleMenu, SysSetup, FrameLoader } from '../../ecwplat/Module/index'
37
+ import { ImportPersonOrg, ImportWorkgroupMember, OrgPersonMgr, OrgTreeMgr, JobMatrixMgr, OrgUserList, OrgTreeLRLayout, ColumnEdit } from '../../ecwplat/Organ/index'
38
+ import { WfdList } from '../../ecwplat/WfDefine'
39
+
40
+ import { BusiformDesigner, FromEventEdit } from '../../ecwplus/BusiformDesigner'
41
+ import ListPageDesigner from '../../ecwplus/ListPageDesigner/index'
42
+
43
+ import { DbSearchPanel, TableEntityBatchAdd, TableEntityForm, TableFieldForm, TableFieldList, ImportModuleCode, ExportModuleCode } from '../../ecwplus/TableEntityDesigner'
44
+ import { PortalPageDesigner, PageEvent, ModuleStyle } from '../../ecwplus/PortalPageDesigner'
45
+
46
+ import { UdmGenerator, UserModuleForm } from '../../ecwplus/UdmGenerator'
47
+
48
+ import { BusiformList, BusiformMgr, ListpageList, ListpageMgr, SyncRestfulApi, TableEntityList, TableEntityMgr } from '../../ecwplus/AdminConsole'
49
+
50
+ import WflowDesigner from '../../ecwplus/WorkflowDesigner/index'
51
+ import WflowTrace from '../../ecwplus/WorkflowDesigner/src/components/FlowTrace'
52
+ import ImportWf from '../../ecwplus/WorkflowDesigner/src/components/ImportWf'
53
+ import WflowTester from '../../ecwplus/WorkflowDesigner/src/components/Tester'
54
+
55
+ import { SystemDesigner } from '../../ecwplus/SystemDesigner/index'
56
+
57
+ // 以数组的结构保存组件,便于遍历
58
+ const components = [
59
+ app, auth, eventBus, user,
60
+ Basicform, BatchProcessing, TaskItemTypeTree, DynamicForm, FormItem, DataTable, Toolbar, DatetimeRange, DoingDialog, InnerTable, LRLayout, LeftPanel, RightPanel, PageHeader, PageContent, PdfTools, ResRoles, RoleInfoForm, RolePermissionForm,
61
+ Product, ProductRoleMgr, ModuleIndex, SysSetup, CopyMenu, ModuleMenu, PermissionMatrixMgr, FrameLoader, ImportPersonOrg, ImportWorkgroupMember, OrgPersonMgr, OrgTreeMgr, JobMatrixMgr, OrgUserList, OrgTreeLRLayout, ColumnEdit, RichtextEditor, ScrollPane, SelectDialog, SelectGroup, SidebarLogo, SvgIcon, WfNames,
62
+
63
+ BusiformDesigner, FromEventEdit, ListPageDesigner, DbSearchPanel, TableEntityBatchAdd, UserModuleForm, TableEntityForm, TableFieldForm, TableFieldList, ImportModuleCode, ExportModuleCode,
64
+ PortalPageDesigner, PageEvent, ModuleStyle,
65
+ UdmGenerator, UserModuleForm,
66
+ SystemDesigner, RoleMgr, WfdList,
67
+ BusiformList, BusiformMgr, ListpageList, ListpageMgr, SyncRestfulApi, TableEntityList, TableEntityMgr,
68
+
69
+ wfengine, WflowDesigner, ImportWf, WflowTrace, WflowTester,
70
+ Attachment, BodyFile, CommandBar, HandleIdea, IdeaInputBox, ModifyWflogAddUser, ModifyWflogSubmitFile, ModifyWflogIdea, WriteToReadIdea, ModifyWfNodelog, SelectOuterDeputy, SubmitHandle, SubmitDialog, WfNodelogList, WflowView, ImgView, IdeaSignature, ReplaceFile, ViewBodyFile,
71
+
72
+ PDFInjector, TextRecognition
73
+ ]
74
+
75
+ // 定义 install 方法
76
+ const install = function(Vue) {
77
+ if (install.installed) return
78
+ install.installed = true
79
+ // 遍历并注册全局组件
80
+ components.map(component => {
81
+ Vue.use(component)
82
+ })
83
+ }
84
+
85
+ if (typeof window !== 'undefined' && window.Vue) {
86
+ install(window.Vue)
87
+
88
+ setTimeout(() => {
89
+ window.$alert = (message,title,options)=>{
90
+ const msgbox=document.querySelector('.el-message-box')
91
+ if(!msgbox){
92
+ if(typeof title === 'string'){
93
+ window.Vue.prototype.$alert(message,title,options)
94
+ }else{
95
+ window.Vue.prototype.$alert(message,options)
96
+ }
97
+ }
98
+ }
99
+ }, 0)
100
+ }
101
+
102
+ import $i18n from '../../ecwapp/i18n/index'
103
+ export const i18n = $i18n
104
+
105
+ export default {
106
+ // 导出的对象必须具备一个 install 方法
107
+ install,
108
+ // 组件列表
109
+ ...components
110
+ }
111
+
112
+ import $hequest from '../../common/request/index'
113
+ import $store from '../../common/store/index'
114
+
115
+ export const httpRequest = $hequest
116
+ export const store = $store
@@ -1,9 +1,60 @@
1
1
  ((typeof self !== 'undefined' ? self : this)["webpackJsonpecwappaio"] = (typeof self !== 'undefined' ? self : this)["webpackJsonpecwappaio"] || []).push([[1],{
2
2
 
3
+ /***/ "0c4a":
4
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
5
+
6
+ "use strict";
7
+ __webpack_require__.r(__webpack_exports__);
8
+
9
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0fc6f40c-vue-loader-template"}!./node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/wapp/common/layout/components/Blank.vue?vue&type=template&id=2ce8c29c&
10
+ var render = function render() {
11
+ var _vm = this,
12
+ _c = _vm._self._c;
13
+ return _c('div', {
14
+ staticClass: "blank-container"
15
+ }, [_c('router-view')], 1);
16
+ };
17
+ var staticRenderFns = [];
18
+
19
+ // CONCATENATED MODULE: ./src/wapp/common/layout/components/Blank.vue?vue&type=template&id=2ce8c29c&
20
+
21
+ // CONCATENATED MODULE: ./node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/wapp/common/layout/components/Blank.vue?vue&type=script&lang=js&
22
+ /* harmony default export */ var Blankvue_type_script_lang_js_ = ({
23
+ name: 'Blank'
24
+ });
25
+ // CONCATENATED MODULE: ./src/wapp/common/layout/components/Blank.vue?vue&type=script&lang=js&
26
+ /* harmony default export */ var components_Blankvue_type_script_lang_js_ = (Blankvue_type_script_lang_js_);
27
+ // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
28
+ var componentNormalizer = __webpack_require__("2877");
29
+
30
+ // CONCATENATED MODULE: ./src/wapp/common/layout/components/Blank.vue
31
+
32
+
33
+
34
+
35
+
36
+ /* normalize component */
37
+
38
+ var component = Object(componentNormalizer["a" /* default */])(
39
+ components_Blankvue_type_script_lang_js_,
40
+ render,
41
+ staticRenderFns,
42
+ false,
43
+ null,
44
+ null,
45
+ null
46
+
47
+ )
48
+
49
+ /* harmony default export */ var Blank = __webpack_exports__["default"] = (component.exports);
50
+
51
+ /***/ }),
52
+
3
53
  /***/ "fc3d":
4
54
  /***/ (function(module, exports, __webpack_require__) {
5
55
 
6
56
  var map = {
57
+ "./common/layout/components/Blank.vue": "0c4a",
7
58
  "./support/icons/index.vue": "5b63"
8
59
  };
9
60
 
@@ -33,7 +33,7 @@ var update = add("a3fb204e", content, true, {"sourceMap":false,"shadowMode":fals
33
33
  "use strict";
34
34
  __webpack_require__.r(__webpack_exports__);
35
35
 
36
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"72f6c938-vue-loader-template"}!./node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/ecwplus/PortalPageDesigner/src/components/Grid24colPageModule.vue?vue&type=template&id=5afff5f3&scoped=true&
36
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0fc6f40c-vue-loader-template"}!./node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/ecwplus/PortalPageDesigner/src/components/Grid24colPageModule.vue?vue&type=template&id=5afff5f3&scoped=true&
37
37
  var render = function render() {
38
38
  var _vm = this,
39
39
  _c = _vm._self._c;
@@ -797,7 +797,7 @@ var component = Object(componentNormalizer["a" /* default */])(
797
797
  var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
798
798
  exports = ___CSS_LOADER_API_IMPORT___(false);
799
799
  // Module
800
- exports.push([module.i, "[data-v-5afff5f3]:export{stdMenuBgcolor:#f3f4f4;stdMenuHover:rgba(163,174,177,.419608);stdMenuText:#303133;stdMenuAcitveText:#ff6f4b;stdSubMenuBgcolor:#f9fafc;stdSubMenuHover:rgba(163,174,177,.419608);stdSubMenuActiveText:#ff6f4b;darkMenuBgcolor:#304156;darkMenuHover:#263445;darkMenuText:#bfcbd9;darkMenuAcitveText:#ffd04b;darkSubMenuBgcolor:#384b63;darkSubMenuHover:#263445;darkSubMenuActiveText:#ffd04b;sideBarWidth:210px;formLabelWidth:133px;lightBlue:#409eff;skinBlue:#438eb9;skinScienceBlue:#1a82e3;skinTaleBlue:#012964;skinBlack:#409eff;skinOrange:#f37d12;skinRed:#9d1414}.vue-grid-item[data-v-5afff5f3]{background:#fff;border:1px solid #e4e7ed;overflow:hidden}.vue-grid-item .content-item[data-v-5afff5f3]{width:100%;height:100%;overflow:hidden;background-color:rgba(83,168,255,.2)!important}.layer-content[data-v-5afff5f3]{background:rgba(83,168,255,.2)}.layer-content[data-v-5afff5f3],.setting[data-v-5afff5f3]{position:absolute;top:0;bottom:0;left:0;right:0}.setting[data-v-5afff5f3]{display:none;height:40px;z-index:400}.setting img[data-v-5afff5f3]{width:32px;height:32px;float:right;cursor:pointer;margin-top:5px;margin-right:5px}", ""]);
800
+ exports.push([module.i, "[data-v-5afff5f3]:export{stdMenuBgcolor:var(--lmBgColor);stdMenuHover:var(--lmBgColorActive)!important;stdMenuText:var(--lmTextColor)!important;stdMenuAcitveText:var(--lmTextColorActive)!important;stdSubMenuBgcolor:var(--lmBgColor);stdSubMenuHover:rgba(163,174,177,.419608);stdSubMenuActiveText:var(--lmTextColorActive)!important;darkMenuBgcolor:#304156;darkMenuHover:#263445;darkMenuText:#bfcbd9;darkMenuAcitveText:#ffd04b;darkSubMenuBgcolor:#384b63;darkSubMenuHover:#263445;darkSubMenuActiveText:#ffd04b;sideBarWidth:210px;formLabelWidth:133px;lightBlue:var(--subjectColor)}.vue-grid-item[data-v-5afff5f3]{background:#fff;border:1px solid #e4e7ed;overflow:hidden}.vue-grid-item .content-item[data-v-5afff5f3]{width:100%;height:100%;overflow:hidden;background-color:rgba(83,168,255,.2)!important}.layer-content[data-v-5afff5f3]{background:rgba(83,168,255,.2)}.layer-content[data-v-5afff5f3],.setting[data-v-5afff5f3]{position:absolute;top:0;bottom:0;left:0;right:0}.setting[data-v-5afff5f3]{display:none;height:40px;z-index:400}.setting img[data-v-5afff5f3]{width:32px;height:32px;float:right;cursor:pointer;margin-top:5px;margin-right:5px}", ""]);
801
801
  // Exports
802
802
  module.exports = exports;
803
803