ecinc-cloud-wappaio 9.7.82 → 9.7.85
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/lib/ecwappaio.common.js +169 -105
- package/lib/ecwappaio.umd.js +169 -105
- package/lib/ecwappaio.umd.min.js +1 -1
- package/package.json +1 -1
package/lib/ecwappaio.common.js
CHANGED
|
@@ -27620,16 +27620,22 @@ var actions = {
|
|
|
27620
27620
|
resetToken: function resetToken(_ref16) {
|
|
27621
27621
|
var commit = _ref16.commit;
|
|
27622
27622
|
return new Promise(function (resolve) {
|
|
27623
|
-
|
|
27624
|
-
|
|
27625
|
-
|
|
27626
|
-
|
|
27627
|
-
|
|
27628
|
-
|
|
27629
|
-
|
|
27630
|
-
|
|
27631
|
-
|
|
27632
|
-
|
|
27623
|
+
_store__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .A.dispatch('route/updateRoutes', []).then(function () {
|
|
27624
|
+
commit('SET_TOKEN', '');
|
|
27625
|
+
commit('SET_LOGIN_USER', null);
|
|
27626
|
+
commit('SET_ROLES', []);
|
|
27627
|
+
commit('SET_PERMISSIONS', []);
|
|
27628
|
+
commit('SET_PERSON_ORGAN_LIST', []);
|
|
27629
|
+
commit('SET_AVATAR', '');
|
|
27630
|
+
commit('SET_PRODUCT_CODE_LIST', []);
|
|
27631
|
+
commit('SET_PRODUCT_CODE_ALL', []);
|
|
27632
|
+
window.$auth.removeProductCode();
|
|
27633
|
+
window.$auth.removeToken();
|
|
27634
|
+
window.$auth.removeTicket();
|
|
27635
|
+
window.$auth.removeRoles();
|
|
27636
|
+
window.$auth.removePermissions();
|
|
27637
|
+
resolve();
|
|
27638
|
+
});
|
|
27633
27639
|
});
|
|
27634
27640
|
}
|
|
27635
27641
|
};
|
|
@@ -33313,7 +33319,7 @@ src.install = function (Vue) {
|
|
|
33313
33319
|
|
|
33314
33320
|
/***/ }),
|
|
33315
33321
|
|
|
33316
|
-
/***/
|
|
33322
|
+
/***/ 93198:
|
|
33317
33323
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
33318
33324
|
|
|
33319
33325
|
"use strict";
|
|
@@ -33325,7 +33331,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
33325
33331
|
"default": function() { return /* binding */ RichtextEditor; }
|
|
33326
33332
|
});
|
|
33327
33333
|
|
|
33328
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/RichtextEditor/src/index.vue?vue&type=template&id=
|
|
33334
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/RichtextEditor/src/index.vue?vue&type=template&id=6b7b755c&scoped=true
|
|
33329
33335
|
var render = function render() {
|
|
33330
33336
|
var _vm = this,
|
|
33331
33337
|
_c = _vm._self._c;
|
|
@@ -33676,15 +33682,14 @@ var staticRenderFns = [];
|
|
|
33676
33682
|
var doc = ifrm.contentDocument;
|
|
33677
33683
|
var body = doc.body;
|
|
33678
33684
|
|
|
33679
|
-
//
|
|
33680
|
-
//
|
|
33681
|
-
//
|
|
33682
|
-
|
|
33683
|
-
|
|
33684
|
-
|
|
33685
|
-
|
|
33686
|
-
|
|
33687
|
-
if (fullHeight > 0 && fullHeight !== this.fitContentHeight) {
|
|
33685
|
+
// 非侵入式测量:body高度为auto时getBoundingClientRect().height即为文档真实高度,与视口大小无关。
|
|
33686
|
+
// 注意:body子元素(如段落p)的上下margin会与body自身的5px margin折叠,折叠后的margin落在body矩形之外,
|
|
33687
|
+
// 若只量body矩形再补10px会漏掉溢出部分,导致iframe文档永远超出视口、必现滚动条。
|
|
33688
|
+
// 因此将body垂直margin改为等效padding(视觉不变):折叠消失后,矩形高度即完整文档高度(已含上下5px留白)
|
|
33689
|
+
body.style.margin = '0 5px';
|
|
33690
|
+
body.style.padding = '5px 0';
|
|
33691
|
+
var fullHeight = Math.ceil(body.getBoundingClientRect().height);
|
|
33692
|
+
if (fullHeight > 30 && fullHeight !== this.fitContentHeight) {
|
|
33688
33693
|
contentsEl.setStyle('height', fullHeight + 'px');
|
|
33689
33694
|
this.fitContentHeight = fullHeight;
|
|
33690
33695
|
}
|
|
@@ -33758,9 +33763,9 @@ var staticRenderFns = [];
|
|
|
33758
33763
|
});
|
|
33759
33764
|
;// CONCATENATED MODULE: ./packages/ecwapp/RichtextEditor/src/index.vue?vue&type=script&lang=js
|
|
33760
33765
|
/* harmony default export */ var RichtextEditor_srcvue_type_script_lang_js = (srcvue_type_script_lang_js);
|
|
33761
|
-
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/RichtextEditor/src/index.vue?vue&type=style&index=0&id=
|
|
33762
|
-
var
|
|
33763
|
-
;// CONCATENATED MODULE: ./packages/ecwapp/RichtextEditor/src/index.vue?vue&type=style&index=0&id=
|
|
33766
|
+
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/RichtextEditor/src/index.vue?vue&type=style&index=0&id=6b7b755c&prod&scoped=true&lang=scss
|
|
33767
|
+
var srcvue_type_style_index_0_id_6b7b755c_prod_scoped_true_lang_scss = __webpack_require__(46676);
|
|
33768
|
+
;// CONCATENATED MODULE: ./packages/ecwapp/RichtextEditor/src/index.vue?vue&type=style&index=0&id=6b7b755c&prod&scoped=true&lang=scss
|
|
33764
33769
|
|
|
33765
33770
|
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
33766
33771
|
var componentNormalizer = __webpack_require__(81656);
|
|
@@ -33779,7 +33784,7 @@ var component = (0,componentNormalizer/* default */.A)(
|
|
|
33779
33784
|
staticRenderFns,
|
|
33780
33785
|
false,
|
|
33781
33786
|
null,
|
|
33782
|
-
"
|
|
33787
|
+
"6b7b755c",
|
|
33783
33788
|
null
|
|
33784
33789
|
|
|
33785
33790
|
)
|
|
@@ -34881,7 +34886,7 @@ var TextRecognition_PDFInjector = PDFInjector;
|
|
|
34881
34886
|
|
|
34882
34887
|
/***/ }),
|
|
34883
34888
|
|
|
34884
|
-
/***/
|
|
34889
|
+
/***/ 2449:
|
|
34885
34890
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
34886
34891
|
|
|
34887
34892
|
"use strict";
|
|
@@ -40187,12 +40192,12 @@ var CommandBar_component = (0,componentNormalizer/* default */.A)(
|
|
|
40187
40192
|
)
|
|
40188
40193
|
|
|
40189
40194
|
/* harmony default export */ var CommandBar = (CommandBar_component.exports);
|
|
40190
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=template&id=
|
|
40191
|
-
function
|
|
40192
|
-
function
|
|
40193
|
-
function
|
|
40194
|
-
function
|
|
40195
|
-
var
|
|
40195
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=template&id=001a0fa1&scoped=true
|
|
40196
|
+
function HandleIdeavue_type_template_id_001a0fa1_scoped_true_typeof(o) { "@babel/helpers - typeof"; return HandleIdeavue_type_template_id_001a0fa1_scoped_true_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, HandleIdeavue_type_template_id_001a0fa1_scoped_true_typeof(o); }
|
|
40197
|
+
function HandleIdeavue_type_template_id_001a0fa1_scoped_true_defineProperty(e, r, t) { return (r = HandleIdeavue_type_template_id_001a0fa1_scoped_true_toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
40198
|
+
function HandleIdeavue_type_template_id_001a0fa1_scoped_true_toPropertyKey(t) { var i = HandleIdeavue_type_template_id_001a0fa1_scoped_true_toPrimitive(t, "string"); return "symbol" == HandleIdeavue_type_template_id_001a0fa1_scoped_true_typeof(i) ? i : i + ""; }
|
|
40199
|
+
function HandleIdeavue_type_template_id_001a0fa1_scoped_true_toPrimitive(t, r) { if ("object" != HandleIdeavue_type_template_id_001a0fa1_scoped_true_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != HandleIdeavue_type_template_id_001a0fa1_scoped_true_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
40200
|
+
var HandleIdeavue_type_template_id_001a0fa1_scoped_true_render = function render() {
|
|
40196
40201
|
var _vm = this,
|
|
40197
40202
|
_c = _vm._self._c;
|
|
40198
40203
|
return !_vm.showHistoryIdeaList ? _c('div', {
|
|
@@ -40216,9 +40221,12 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_render = function render
|
|
|
40216
40221
|
key: index
|
|
40217
40222
|
}, [wfIdea.rowspan > 1 && group !== 'ungrouped' ? _c('td', {
|
|
40218
40223
|
staticClass: "el-table__cell tdlbl",
|
|
40219
|
-
class:
|
|
40224
|
+
class: HandleIdeavue_type_template_id_001a0fa1_scoped_true_defineProperty({
|
|
40220
40225
|
tdw4: _vm.frmRowCellCount != 24
|
|
40221
40226
|
}, 'span' + (_vm.frmTdLabelSpan - 2), _vm.frmRowCellCount == 24),
|
|
40227
|
+
style: {
|
|
40228
|
+
verticalAlign: _vm.ideaLabelVerticalAlign
|
|
40229
|
+
},
|
|
40222
40230
|
attrs: {
|
|
40223
40231
|
"colspan": _vm.frmRowCellCount == 24 ? _vm.frmTdLabelSpan - 2 : 1,
|
|
40224
40232
|
"rowspan": wfIdea.rowspan
|
|
@@ -40226,6 +40234,9 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_render = function render
|
|
|
40226
40234
|
}, [_vm._v(_vm._s(group))]) : _vm._e(), _c('td', {
|
|
40227
40235
|
staticClass: "el-table__cell tdlbl",
|
|
40228
40236
|
class: _vm.frmRowCellCount != 24 ? group !== 'ungrouped' ? 'tdw13' : 'tdw17' : group !== 'ungrouped' ? 'span2' : 'span' + _vm.frmTdLabelSpan,
|
|
40237
|
+
style: {
|
|
40238
|
+
verticalAlign: _vm.ideaLabelVerticalAlign
|
|
40239
|
+
},
|
|
40229
40240
|
attrs: {
|
|
40230
40241
|
"colspan": wfIdea.colspan ? wfIdea.colspan : _vm.frmTdLabelSpan
|
|
40231
40242
|
}
|
|
@@ -40259,7 +40270,7 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_render = function render
|
|
|
40259
40270
|
}
|
|
40260
40271
|
})])], 2), _c('td', {
|
|
40261
40272
|
staticClass: "el-table__cell tdcont",
|
|
40262
|
-
class:
|
|
40273
|
+
class: HandleIdeavue_type_template_id_001a0fa1_scoped_true_defineProperty({
|
|
40263
40274
|
tdw83: _vm.frmRowCellCount != 24
|
|
40264
40275
|
}, 'span' + (24 - _vm.frmTdLabelSpan), _vm.frmRowCellCount == 24),
|
|
40265
40276
|
attrs: {
|
|
@@ -40367,9 +40378,12 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_render = function render
|
|
|
40367
40378
|
key: index
|
|
40368
40379
|
}, [_c('td', {
|
|
40369
40380
|
staticClass: "el-table__cell tdlbl",
|
|
40370
|
-
class:
|
|
40381
|
+
class: HandleIdeavue_type_template_id_001a0fa1_scoped_true_defineProperty({
|
|
40371
40382
|
tdw17: _vm.frmRowCellCount != 24
|
|
40372
40383
|
}, 'span' + _vm.frmTdLabelSpan, _vm.frmRowCellCount == 24),
|
|
40384
|
+
style: {
|
|
40385
|
+
verticalAlign: _vm.ideaLabelVerticalAlign
|
|
40386
|
+
},
|
|
40373
40387
|
attrs: {
|
|
40374
40388
|
"colspan": _vm.frmTdLabelSpan
|
|
40375
40389
|
}
|
|
@@ -40396,7 +40410,7 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_render = function render
|
|
|
40396
40410
|
}
|
|
40397
40411
|
})], 2), _c('td', {
|
|
40398
40412
|
staticClass: "el-table__cell tdcont",
|
|
40399
|
-
class:
|
|
40413
|
+
class: HandleIdeavue_type_template_id_001a0fa1_scoped_true_defineProperty({
|
|
40400
40414
|
tdw83: _vm.frmRowCellCount != 24
|
|
40401
40415
|
}, 'span' + (24 - _vm.frmTdLabelSpan), _vm.frmRowCellCount == 24),
|
|
40402
40416
|
attrs: {
|
|
@@ -40486,7 +40500,7 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_render = function render
|
|
|
40486
40500
|
}
|
|
40487
40501
|
}, [_vm._v("删除流程实例意见")])], 2) : _vm._e();
|
|
40488
40502
|
};
|
|
40489
|
-
var
|
|
40503
|
+
var HandleIdeavue_type_template_id_001a0fa1_scoped_true_staticRenderFns = [];
|
|
40490
40504
|
|
|
40491
40505
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=script&lang=js
|
|
40492
40506
|
/* harmony default export */ var HandleIdeavue_type_script_lang_js = ({
|
|
@@ -40535,7 +40549,12 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_staticRenderFns = [];
|
|
|
40535
40549
|
labelGroupShowType: {
|
|
40536
40550
|
type: String,
|
|
40537
40551
|
default: 'collapse'
|
|
40538
|
-
}
|
|
40552
|
+
},
|
|
40553
|
+
//意见分组展示方式,collapse:折叠面板,rowspan:合并行
|
|
40554
|
+
ideaLabelVerticalAlign: {
|
|
40555
|
+
type: String,
|
|
40556
|
+
default: 'top'
|
|
40557
|
+
} //意见标签单元格垂直对齐方式:默认顶部对齐(top),可设垂直居中(middle);仅意见标签与意见内容不同单元格时生效
|
|
40539
40558
|
},
|
|
40540
40559
|
data: function data() {
|
|
40541
40560
|
return {
|
|
@@ -40841,6 +40860,8 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_staticRenderFns = [];
|
|
|
40841
40860
|
setTimeout(function () {
|
|
40842
40861
|
_this4.setIdeaTextAlign();
|
|
40843
40862
|
_this4.alignIdeaSignerAndTime();
|
|
40863
|
+
_this4.applyIdeaContentVerticalAlign();
|
|
40864
|
+
_this4.applyBusiFormIdeaLabelAlign();
|
|
40844
40865
|
_this4.cropIdeaSignatureWhitespace();
|
|
40845
40866
|
_this4.initDeleteIdeaBtn();
|
|
40846
40867
|
_this4.showDoNextAttach();
|
|
@@ -40860,6 +40881,47 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_staticRenderFns = [];
|
|
|
40860
40881
|
}
|
|
40861
40882
|
});
|
|
40862
40883
|
},
|
|
40884
|
+
applyIdeaContentVerticalAlign: function applyIdeaContentVerticalAlign() {
|
|
40885
|
+
//同格意见单元格内容垂直对齐:td固定vertical-align:top使标签顶部对齐,
|
|
40886
|
+
//标签与内容间的撑高占位div(ideaContentSpacer)动态吸收剩余空间把内容推到middle/bottom位置。
|
|
40887
|
+
//参考表单设计器方案(标签流内贴顶+布局手段安置内容),内容全程保持文档流(单元格随内容撑高、打印分页offsetTop不受影响)
|
|
40888
|
+
document.querySelectorAll('.udm-ideaLable').forEach(function (td) {
|
|
40889
|
+
var spacer = td.querySelector(':scope > div.ideaContentSpacer');
|
|
40890
|
+
if (!spacer) return;
|
|
40891
|
+
var content = td.querySelector(':scope > div.ideaDiv');
|
|
40892
|
+
if (!content) {
|
|
40893
|
+
spacer.style.display = 'none';
|
|
40894
|
+
return;
|
|
40895
|
+
}
|
|
40896
|
+
//同格td固定vertical-align:top,对齐配置由FTL输出到spacer的data-align(middle/bottom才需撑高占位)
|
|
40897
|
+
var align = spacer.dataset.align;
|
|
40898
|
+
if (align !== 'middle' && align !== 'bottom') {
|
|
40899
|
+
spacer.style.marginTop = '0px';
|
|
40900
|
+
return;
|
|
40901
|
+
}
|
|
40902
|
+
spacer.style.display = '';
|
|
40903
|
+
spacer.style.marginTop = '0px';
|
|
40904
|
+
var labelDiv = spacer.previousElementSibling;
|
|
40905
|
+
var labelHeight = labelDiv ? labelDiv.getBoundingClientRect().height : 0;
|
|
40906
|
+
var contentHeight = content.getBoundingClientRect().height;
|
|
40907
|
+
var remain = td.clientHeight - labelHeight - contentHeight;
|
|
40908
|
+
if (remain <= 0) {
|
|
40909
|
+
spacer.style.marginTop = '0px';
|
|
40910
|
+
} else {
|
|
40911
|
+
//居中:剩余空间一半给标签与内容间距;贴底:剩余空间全部给间距
|
|
40912
|
+
spacer.style.marginTop = (align === 'middle' ? remain / 2 : remain) + 'px';
|
|
40913
|
+
}
|
|
40914
|
+
});
|
|
40915
|
+
},
|
|
40916
|
+
//业务表单分格意见标签单元格垂直对齐:仅处理同时带tdlbl类的udm-ideaLable(标签与内容不同单元格),
|
|
40917
|
+
//同格意见单元格(无tdlbl类)不受影响;样式表对无内联vertical-align的udm-ideaLable强制top,故需!important覆盖
|
|
40918
|
+
applyBusiFormIdeaLabelAlign: function applyBusiFormIdeaLabelAlign() {
|
|
40919
|
+
var _this5 = this;
|
|
40920
|
+
if (this.ideaLabelVerticalAlign === 'top') return;
|
|
40921
|
+
document.querySelectorAll('td.udm-ideaLable.tdlbl').forEach(function (td) {
|
|
40922
|
+
td.style.setProperty('vertical-align', _this5.ideaLabelVerticalAlign, 'important');
|
|
40923
|
+
});
|
|
40924
|
+
},
|
|
40863
40925
|
alignIdeaSignerAndTime: function alignIdeaSignerAndTime() {
|
|
40864
40926
|
//colspan相同的意见栏统一对齐意见签名人、签名时间左缘(不修改意见显示模板)
|
|
40865
40927
|
//24列样式意见内容td colspan为24-标签span(>=20);6列样式为frmRowCellCount-标签span(分组4/未分组5),阈值按样式区分
|
|
@@ -41024,7 +41086,7 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_staticRenderFns = [];
|
|
|
41024
41086
|
});
|
|
41025
41087
|
},
|
|
41026
41088
|
showDoNextAttach: function showDoNextAttach() {
|
|
41027
|
-
var
|
|
41089
|
+
var _this6 = this;
|
|
41028
41090
|
var attachments = this.$vnode.context.attachments;
|
|
41029
41091
|
attachments.forEach(function (attach) {
|
|
41030
41092
|
if (attach.fileType === 'DONEXT') {
|
|
@@ -41032,10 +41094,10 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_staticRenderFns = [];
|
|
|
41032
41094
|
var ideaDivs = document.querySelectorAll('.ideaDiv');
|
|
41033
41095
|
ideaDivs.forEach(function (ideaDiv) {
|
|
41034
41096
|
if (ideaDiv.innerHTML.indexOf(tnid) !== -1 && ideaDiv.querySelector('.donext-attach').innerHTML.indexOf(attach.id) === -1) {
|
|
41035
|
-
var downUrl = "/apigw" + '/' +
|
|
41097
|
+
var downUrl = "/apigw" + '/' + _this6.$vnode.context.wfAttachUrl + '/downloadById?inline=true&attachIds=' + attach.id;
|
|
41036
41098
|
downUrl += '&httpPort=' + location.port + '&csrfToken=' + window.$auth.getCsrfToken();
|
|
41037
41099
|
var donextAttachInnerHTML = '<a href="javascript:" onclick="window.open(\'' + downUrl + '\');" title="查看附件:' + attach.fileName + '"><svg data-v-877131dc="" data-v-69d5d2f1="" aria-hidden="true" class="svg-icon disabled"><use data-v-877131dc="" xlink:href="#icon-attachIcon"></use></svg>';
|
|
41038
|
-
if (
|
|
41100
|
+
if (_this6.showIdeaAttachName) donextAttachInnerHTML += attach.fileName;
|
|
41039
41101
|
donextAttachInnerHTML += '</a>';
|
|
41040
41102
|
ideaDiv.querySelector('.donext-attach').innerHTML += donextAttachInnerHTML;
|
|
41041
41103
|
ideaDiv.querySelector('.donext-attach').className = 'donext-attach el-link el-link--primary';
|
|
@@ -41045,9 +41107,9 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_staticRenderFns = [];
|
|
|
41045
41107
|
});
|
|
41046
41108
|
},
|
|
41047
41109
|
setIdeaLabelWidth: function setIdeaLabelWidth(inited) {
|
|
41048
|
-
var
|
|
41110
|
+
var _this7 = this;
|
|
41049
41111
|
this.$nextTick(function () {
|
|
41050
|
-
if (!inited)
|
|
41112
|
+
if (!inited) _this7.initUdmIdeaLables();
|
|
41051
41113
|
var wform = document.querySelector('.wflow-busiform');
|
|
41052
41114
|
if (!wform) wform = document.querySelector('.form-container').querySelector('.el-form');
|
|
41053
41115
|
if (wform && wform.querySelector('.tdw13')) {
|
|
@@ -41074,23 +41136,23 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_staticRenderFns = [];
|
|
|
41074
41136
|
}
|
|
41075
41137
|
},
|
|
41076
41138
|
deleteWfIdea: function deleteWfIdea() {
|
|
41077
|
-
var
|
|
41139
|
+
var _this8 = this;
|
|
41078
41140
|
var ideaId = document.querySelector('.delete-wfidea-btn').ideaId;
|
|
41079
41141
|
this.$confirm(this.$tx('ecwapp.Wflowform.HandleIdea.sureDeleteOpinion', '您是否确认删除处理意见?'), this.$tx('common.confirmOperate', '确认操作'), {
|
|
41080
41142
|
type: 'warning'
|
|
41081
41143
|
}).then(function () {
|
|
41082
|
-
|
|
41144
|
+
_this8.$http({
|
|
41083
41145
|
method: 'PUT',
|
|
41084
41146
|
url: 'workflow/wfInstanceNodelog/modifyWfNodelog',
|
|
41085
41147
|
params: {
|
|
41086
|
-
wfInstanceId:
|
|
41087
|
-
selTNID:
|
|
41148
|
+
wfInstanceId: _this8.$vnode.context.wfInstance.id,
|
|
41149
|
+
selTNID: _this8.curTN.tnID,
|
|
41088
41150
|
ideaId: ideaId,
|
|
41089
41151
|
modifyType: 'deleteIdea'
|
|
41090
41152
|
}
|
|
41091
41153
|
}).then(function (res) {
|
|
41092
41154
|
if (res.code === 'success') {
|
|
41093
|
-
|
|
41155
|
+
_this8.$alert(res.message, _this8.$tx('common.operationTip', '操作提示'), {
|
|
41094
41156
|
type: 'success',
|
|
41095
41157
|
callback: function callback() {
|
|
41096
41158
|
var ideaDiv = document.getElementById(ideaId);
|
|
@@ -41098,17 +41160,17 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_staticRenderFns = [];
|
|
|
41098
41160
|
var ideaAttachDiv = ideaDiv.parentElement.querySelector('.donext-attach');
|
|
41099
41161
|
if (ideaAttachDiv) {
|
|
41100
41162
|
var ideaAttachIds = [];
|
|
41101
|
-
for (var i = 0; i <
|
|
41102
|
-
var attach =
|
|
41163
|
+
for (var i = 0; i < _this8.$vnode.context.attachments.length; i++) {
|
|
41164
|
+
var attach = _this8.$vnode.context.attachments[i];
|
|
41103
41165
|
if (attach.uploadBy.indexOf(ideaAttachDiv.id) !== -1) {
|
|
41104
41166
|
ideaAttachIds.push(attach.id);
|
|
41105
|
-
|
|
41106
|
-
|
|
41167
|
+
_this8.$vnode.context.attachments.splice(i--, 1);
|
|
41168
|
+
_this8.$bus.emit('deleteWfIdeaAttach', attach);
|
|
41107
41169
|
}
|
|
41108
41170
|
}
|
|
41109
|
-
|
|
41171
|
+
_this8.$http({
|
|
41110
41172
|
method: 'DELETE',
|
|
41111
|
-
url:
|
|
41173
|
+
url: _this8.$vnode.context.wfAttachUrl + '/delete',
|
|
41112
41174
|
params: {
|
|
41113
41175
|
attachIds: ideaAttachIds.join(',')
|
|
41114
41176
|
}
|
|
@@ -41117,11 +41179,11 @@ var HandleIdeavue_type_template_id_731565e1_scoped_true_staticRenderFns = [];
|
|
|
41117
41179
|
$(ideaDiv).prev().remove();
|
|
41118
41180
|
ideaDiv.remove();
|
|
41119
41181
|
}
|
|
41120
|
-
|
|
41182
|
+
_this8.$vnode.context.submitHandle.curUserIdea = '';
|
|
41121
41183
|
}
|
|
41122
41184
|
});
|
|
41123
41185
|
} else {
|
|
41124
|
-
|
|
41186
|
+
_this8.$alert(res.message, _this8.$tx('common.operationTip', '操作提示'), {
|
|
41125
41187
|
type: 'error'
|
|
41126
41188
|
});
|
|
41127
41189
|
}
|
|
@@ -41137,13 +41199,13 @@ window.callDeleteIdeaBtnClick = function (ideaId) {
|
|
|
41137
41199
|
};
|
|
41138
41200
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=script&lang=js
|
|
41139
41201
|
/* harmony default export */ var src_HandleIdeavue_type_script_lang_js = (HandleIdeavue_type_script_lang_js);
|
|
41140
|
-
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=0&id=
|
|
41141
|
-
var
|
|
41142
|
-
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=0&id=
|
|
41202
|
+
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=0&id=001a0fa1&prod&scoped=true&lang=scss
|
|
41203
|
+
var HandleIdeavue_type_style_index_0_id_001a0fa1_prod_scoped_true_lang_scss = __webpack_require__(54391);
|
|
41204
|
+
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=0&id=001a0fa1&prod&scoped=true&lang=scss
|
|
41143
41205
|
|
|
41144
|
-
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=1&id=
|
|
41145
|
-
var
|
|
41146
|
-
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=1&id=
|
|
41206
|
+
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=1&id=001a0fa1&prod&lang=scss
|
|
41207
|
+
var HandleIdeavue_type_style_index_1_id_001a0fa1_prod_lang_scss = __webpack_require__(84723);
|
|
41208
|
+
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=1&id=001a0fa1&prod&lang=scss
|
|
41147
41209
|
|
|
41148
41210
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/HandleIdea.vue
|
|
41149
41211
|
|
|
@@ -41157,11 +41219,11 @@ var HandleIdeavue_type_style_index_1_id_731565e1_prod_lang_scss = __webpack_requ
|
|
|
41157
41219
|
|
|
41158
41220
|
var HandleIdea_component = (0,componentNormalizer/* default */.A)(
|
|
41159
41221
|
src_HandleIdeavue_type_script_lang_js,
|
|
41160
|
-
|
|
41161
|
-
|
|
41222
|
+
HandleIdeavue_type_template_id_001a0fa1_scoped_true_render,
|
|
41223
|
+
HandleIdeavue_type_template_id_001a0fa1_scoped_true_staticRenderFns,
|
|
41162
41224
|
false,
|
|
41163
41225
|
null,
|
|
41164
|
-
"
|
|
41226
|
+
"001a0fa1",
|
|
41165
41227
|
null
|
|
41166
41228
|
|
|
41167
41229
|
)
|
|
@@ -170665,7 +170727,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".outter[data-v-0f959ac4]{position:rela
|
|
|
170665
170727
|
|
|
170666
170728
|
/***/ }),
|
|
170667
170729
|
|
|
170668
|
-
/***/
|
|
170730
|
+
/***/ 34318:
|
|
170669
170731
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
170670
170732
|
|
|
170671
170733
|
"use strict";
|
|
@@ -170679,7 +170741,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
170679
170741
|
|
|
170680
170742
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
170681
170743
|
// Module
|
|
170682
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".richtext-container[data-v-
|
|
170744
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".richtext-container[data-v-6b7b755c]{margin:20px 0 0 0}", ""]);
|
|
170683
170745
|
// Exports
|
|
170684
170746
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
170685
170747
|
|
|
@@ -170938,7 +171000,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-e8bcd130]:export{stdMenuBgcolo
|
|
|
170938
171000
|
|
|
170939
171001
|
/***/ }),
|
|
170940
171002
|
|
|
170941
|
-
/***/
|
|
171003
|
+
/***/ 36609:
|
|
170942
171004
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
170943
171005
|
|
|
170944
171006
|
"use strict";
|
|
@@ -170952,14 +171014,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
170952
171014
|
|
|
170953
171015
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
170954
171016
|
// Module
|
|
170955
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".idea-collapse-icon[data-v-
|
|
171017
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".idea-collapse-icon[data-v-001a0fa1]{float:right}.idea-collapse-icon .el-link[data-v-001a0fa1]{margin-top:2px}.idea-collapse-icon .el-link[data-v-001a0fa1],.idea-collapse-icon .el-link[data-v-001a0fa1] i{font-weight:600;font-size:14px}.idea-collapse-icon .el-link--default[data-v-001a0fa1]{display:table-cell}[data-v-001a0fa1] .el-collapse-item__header,[data-v-001a0fa1] .el-collapse-item__header i{font-weight:600;font-size:14px}[data-v-001a0fa1] .el-collapse-item__wrap{border-bottom:0!important}[data-v-001a0fa1] .el-collapse-item__wrap .el-collapse-item__content{padding-bottom:0!important}.idea-form[data-v-001a0fa1]{margin-top:-1px;position:relative;z-index:1000}.el-form .el-table__body .tdcont[data-v-001a0fa1]{line-height:20px}[data-v-001a0fa1] .highlight{font-weight:600;color:#323233}.idea-group[data-v-001a0fa1]{border-bottom:1px solid #e4e5e8}.l-text[data-v-001a0fa1]{font-weight:600}", ""]);
|
|
170956
171018
|
// Exports
|
|
170957
171019
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
170958
171020
|
|
|
170959
171021
|
|
|
170960
171022
|
/***/ }),
|
|
170961
171023
|
|
|
170962
|
-
/***/
|
|
171024
|
+
/***/ 82897:
|
|
170963
171025
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
170964
171026
|
|
|
170965
171027
|
"use strict";
|
|
@@ -170973,7 +171035,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
170973
171035
|
|
|
170974
171036
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
170975
171037
|
// Module
|
|
170976
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".udm-ideaLable{vertical-align:top!important}.udm-ideaLable .lable{color:#000}.ideaDiv{margin:5px 0}.ideaDiv p{margin-top:0;margin-bottom:0;cursor:default}.ideaDiv span{display:inline-block}.ideaDiv .handwritingIdea{width:200px}.ideaDiv .ideaSignature{max-width:80px;max-height:30px}.ideaDiv .donext-attach{padding-left:5px;margin-top:-3px}.ideaDiv .donext-attach a{padding-left:5px;padding-right:5px}.ideaContentDiv{min-height:55px}.tdlbl .el-button--text,.udm-ideaLable .el-button--text{padding-left:0!important;padding-right:0!important}.udm-ideaLable .el-button--text{cursor:pointer}.can-delete-idea{float:right;margin-top:-25px;margin-right:10px}.can-delete-idea i{color:red;cursor:pointer}", ""]);
|
|
171038
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".udm-ideaLable:not([style*=vertical-align]){vertical-align:top!important}.udm-ideaLable .lable{color:#000}.ideaDiv{margin:5px 0}.ideaDiv p{margin-top:0;margin-bottom:0;cursor:default}.ideaDiv span{display:inline-block}.ideaDiv .handwritingIdea{width:200px}.ideaDiv .ideaSignature{max-width:80px;max-height:30px}.ideaDiv .donext-attach{padding-left:5px;margin-top:-3px}.ideaDiv .donext-attach a{padding-left:5px;padding-right:5px}.ideaContentDiv{min-height:55px}.tdlbl .el-button--text,.udm-ideaLable .el-button--text{padding-left:0!important;padding-right:0!important}.udm-ideaLable .el-button--text{cursor:pointer}.can-delete-idea{float:right;margin-top:-25px;margin-right:10px}.can-delete-idea i{color:red;cursor:pointer}", ""]);
|
|
170977
171039
|
// Exports
|
|
170978
171040
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
170979
171041
|
|
|
@@ -257280,19 +257342,19 @@ var update = add("78ff4c32", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
257280
257342
|
|
|
257281
257343
|
/***/ }),
|
|
257282
257344
|
|
|
257283
|
-
/***/
|
|
257345
|
+
/***/ 46676:
|
|
257284
257346
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
257285
257347
|
|
|
257286
257348
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
257287
257349
|
|
|
257288
257350
|
// load the styles
|
|
257289
|
-
var content = __webpack_require__(
|
|
257351
|
+
var content = __webpack_require__(34318);
|
|
257290
257352
|
if(content.__esModule) content = content.default;
|
|
257291
257353
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
257292
257354
|
if(content.locals) module.exports = content.locals;
|
|
257293
257355
|
// add the styles to the DOM
|
|
257294
257356
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
257295
|
-
var update = add("
|
|
257357
|
+
var update = add("71e3320b", content, true, {"sourceMap":false,"shadowMode":false});
|
|
257296
257358
|
|
|
257297
257359
|
/***/ }),
|
|
257298
257360
|
|
|
@@ -257488,35 +257550,35 @@ var update = add("03d01f0b", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
257488
257550
|
|
|
257489
257551
|
/***/ }),
|
|
257490
257552
|
|
|
257491
|
-
/***/
|
|
257553
|
+
/***/ 54391:
|
|
257492
257554
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
257493
257555
|
|
|
257494
257556
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
257495
257557
|
|
|
257496
257558
|
// load the styles
|
|
257497
|
-
var content = __webpack_require__(
|
|
257559
|
+
var content = __webpack_require__(36609);
|
|
257498
257560
|
if(content.__esModule) content = content.default;
|
|
257499
257561
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
257500
257562
|
if(content.locals) module.exports = content.locals;
|
|
257501
257563
|
// add the styles to the DOM
|
|
257502
257564
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
257503
|
-
var update = add("
|
|
257565
|
+
var update = add("f7aad4fa", content, true, {"sourceMap":false,"shadowMode":false});
|
|
257504
257566
|
|
|
257505
257567
|
/***/ }),
|
|
257506
257568
|
|
|
257507
|
-
/***/
|
|
257569
|
+
/***/ 84723:
|
|
257508
257570
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
257509
257571
|
|
|
257510
257572
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
257511
257573
|
|
|
257512
257574
|
// load the styles
|
|
257513
|
-
var content = __webpack_require__(
|
|
257575
|
+
var content = __webpack_require__(82897);
|
|
257514
257576
|
if(content.__esModule) content = content.default;
|
|
257515
257577
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
257516
257578
|
if(content.locals) module.exports = content.locals;
|
|
257517
257579
|
// add the styles to the DOM
|
|
257518
257580
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
257519
|
-
var update = add("
|
|
257581
|
+
var update = add("9951590e", content, true, {"sourceMap":false,"shadowMode":false});
|
|
257520
257582
|
|
|
257521
257583
|
/***/ }),
|
|
257522
257584
|
|
|
@@ -266024,7 +266086,9 @@ service.interceptors.response.use(function (response) {
|
|
|
266024
266086
|
}, function (error) {
|
|
266025
266087
|
var $scope = window.$wapp || window.$mapp;
|
|
266026
266088
|
if ($scope && $scope.customErrorHander) {
|
|
266027
|
-
|
|
266089
|
+
store/* default */.A.dispatch('user/resetToken').then(function () {
|
|
266090
|
+
$scope.customErrorHander(error);
|
|
266091
|
+
});
|
|
266028
266092
|
} else if ((error.status === 401 || error.response && (error.response.status === 401 || error.response.data && error.response.data.status === 401)) && error.config.url.indexOf('http:') === -1 && error.config.url.indexOf('https:') === -1) {
|
|
266029
266093
|
store/* default */.A.dispatch('user/resetToken').then(function () {
|
|
266030
266094
|
var errmsg = window.$tx('request.status401');
|
|
@@ -281772,7 +281836,7 @@ var asyncComponents = [
|
|
|
281772
281836
|
}], ['PdfTools', function () {
|
|
281773
281837
|
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 11289));
|
|
281774
281838
|
}], ['RichtextEditor', function () {
|
|
281775
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281839
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 93198));
|
|
281776
281840
|
}], ['PDFInjector', function () {
|
|
281777
281841
|
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 90820)).then(function (m) {
|
|
281778
281842
|
return m.PDFInjector;
|
|
@@ -281784,87 +281848,87 @@ var asyncComponents = [
|
|
|
281784
281848
|
}],
|
|
281785
281849
|
// ========== ecwapp/Wflowform 工作流表单子组件 �?chunk: wflow-form ==========
|
|
281786
281850
|
['Attachment', function () {
|
|
281787
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281851
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281788
281852
|
return m.Attachment;
|
|
281789
281853
|
});
|
|
281790
281854
|
}], ['BodyFile', function () {
|
|
281791
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281855
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281792
281856
|
return m.BodyFile;
|
|
281793
281857
|
});
|
|
281794
281858
|
}], ['CommandBar', function () {
|
|
281795
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281859
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281796
281860
|
return m.CommandBar;
|
|
281797
281861
|
});
|
|
281798
281862
|
}], ['HandleIdea', function () {
|
|
281799
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281863
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281800
281864
|
return m.HandleIdea;
|
|
281801
281865
|
});
|
|
281802
281866
|
}], ['IdeaInputBox', function () {
|
|
281803
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281867
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281804
281868
|
return m.IdeaInputBox;
|
|
281805
281869
|
});
|
|
281806
281870
|
}], ['ModifyWflogAddUser', function () {
|
|
281807
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281871
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281808
281872
|
return m.ModifyWflogAddUser;
|
|
281809
281873
|
});
|
|
281810
281874
|
}], ['ModifyWflogIdea', function () {
|
|
281811
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281875
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281812
281876
|
return m.ModifyWflogIdea;
|
|
281813
281877
|
});
|
|
281814
281878
|
}], ['WriteToReadIdea', function () {
|
|
281815
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281879
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281816
281880
|
return m.WriteToReadIdea;
|
|
281817
281881
|
});
|
|
281818
281882
|
}], ['ModifyWflogSubmitFile', function () {
|
|
281819
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281883
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281820
281884
|
return m.ModifyWflogSubmitFile;
|
|
281821
281885
|
});
|
|
281822
281886
|
}], ['ModifyWfNodelog', function () {
|
|
281823
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281887
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281824
281888
|
return m.ModifyWfNodelog;
|
|
281825
281889
|
});
|
|
281826
281890
|
}], ['SelectOuterDeputy', function () {
|
|
281827
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281891
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281828
281892
|
return m.SelectOuterDeputy;
|
|
281829
281893
|
});
|
|
281830
281894
|
}], ['SubmitHandle', function () {
|
|
281831
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281895
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281832
281896
|
return m.SubmitHandle;
|
|
281833
281897
|
});
|
|
281834
281898
|
}], ['SubmitDialog', function () {
|
|
281835
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281899
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281836
281900
|
return m.SubmitDialog;
|
|
281837
281901
|
});
|
|
281838
281902
|
}], ['WfNodelogList', function () {
|
|
281839
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281903
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281840
281904
|
return m.WfNodelogList;
|
|
281841
281905
|
});
|
|
281842
281906
|
}], ['WflogAddReader', function () {
|
|
281843
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281907
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281844
281908
|
return m.WflogAddReader;
|
|
281845
281909
|
});
|
|
281846
281910
|
}], ['WflowView', function () {
|
|
281847
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281911
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281848
281912
|
return m.WflowView;
|
|
281849
281913
|
});
|
|
281850
281914
|
}], ['ImgView', function () {
|
|
281851
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281915
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281852
281916
|
return m.ImgView;
|
|
281853
281917
|
});
|
|
281854
281918
|
}], ['IdeaSignature', function () {
|
|
281855
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281919
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281856
281920
|
return m.IdeaSignature;
|
|
281857
281921
|
});
|
|
281858
281922
|
}], ['ReplaceFile', function () {
|
|
281859
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281923
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281860
281924
|
return m.ReplaceFile;
|
|
281861
281925
|
});
|
|
281862
281926
|
}], ['ViewBodyFile', function () {
|
|
281863
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281927
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281864
281928
|
return m.ViewBodyFile;
|
|
281865
281929
|
});
|
|
281866
281930
|
}], ['WformLayout', function () {
|
|
281867
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
281931
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449)).then(function (m) {
|
|
281868
281932
|
return m.WformLayout;
|
|
281869
281933
|
});
|
|
281870
281934
|
}],
|
|
@@ -282157,7 +282221,7 @@ var WfengineModule = function WfengineModule() {
|
|
|
282157
282221
|
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 88838));
|
|
282158
282222
|
};
|
|
282159
282223
|
var WflowformModule = function WflowformModule() {
|
|
282160
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
282224
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 2449));
|
|
282161
282225
|
};
|
|
282162
282226
|
var WflowDesignerModule = function WflowDesignerModule() {
|
|
282163
282227
|
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 67564));
|
|
@@ -282220,7 +282284,7 @@ var PdfToolsModule = function PdfToolsModule() {
|
|
|
282220
282284
|
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 11289));
|
|
282221
282285
|
};
|
|
282222
282286
|
var RichtextEditorModule = function RichtextEditorModule() {
|
|
282223
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
282287
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 93198));
|
|
282224
282288
|
};
|
|
282225
282289
|
var ModifyFormTraceModule = function ModifyFormTraceModule() {
|
|
282226
282290
|
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 26022));
|