ecinc-cloud-wappaio 9.6.97 → 9.6.98
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 +1733 -1085
- package/lib/ecwappaio.umd.js +1733 -1085
- package/lib/ecwappaio.umd.min.js +17 -17
- package/package.json +1 -1
package/lib/ecwappaio.common.js
CHANGED
|
@@ -11058,7 +11058,7 @@ module.exports = {
|
|
|
11058
11058
|
uploadMainText: 'Please upload the main text!'
|
|
11059
11059
|
},
|
|
11060
11060
|
SubmitHandle: {
|
|
11061
|
-
defineSteps: '
|
|
11061
|
+
defineSteps: 'Process Definition',
|
|
11062
11062
|
processSteps: 'Process Steps',
|
|
11063
11063
|
processHandler: 'Process handler',
|
|
11064
11064
|
submitNextStage: 'Submit to the next stage',
|
|
@@ -11112,7 +11112,8 @@ module.exports = {
|
|
|
11112
11112
|
unread: 'unread',
|
|
11113
11113
|
addReaders: 'Add readers',
|
|
11114
11114
|
addReadersSuccess: 'Successfully added readers!',
|
|
11115
|
-
readedClosed: 'Are you sure you have read and closed?'
|
|
11115
|
+
readedClosed: 'Are you sure you have read and closed?',
|
|
11116
|
+
udmNodeNameIsNull: 'Process steps are unnamed!'
|
|
11116
11117
|
},
|
|
11117
11118
|
WfTaskNode: {
|
|
11118
11119
|
stepSetting: 'Stage Setting',
|
|
@@ -11579,7 +11580,7 @@ module.exports = {
|
|
|
11579
11580
|
uploadMainText: '请上传正文!'
|
|
11580
11581
|
},
|
|
11581
11582
|
SubmitHandle: {
|
|
11582
|
-
defineSteps: '
|
|
11583
|
+
defineSteps: '流程配置',
|
|
11583
11584
|
processSteps: '流程环节',
|
|
11584
11585
|
processHandler: '环节处理人',
|
|
11585
11586
|
submitNextStage: '提交下一环节',
|
|
@@ -11630,7 +11631,8 @@ module.exports = {
|
|
|
11630
11631
|
unread: '未读',
|
|
11631
11632
|
addReaders: '添加阅文人',
|
|
11632
11633
|
addReadersSuccess: '已成功添加阅文人!',
|
|
11633
|
-
readedClosed: '您是否确认已阅并关闭?'
|
|
11634
|
+
readedClosed: '您是否确认已阅并关闭?',
|
|
11635
|
+
udmNodeNameIsNull: '流程环节未命名!'
|
|
11634
11636
|
},
|
|
11635
11637
|
WfTaskNode: {
|
|
11636
11638
|
stepSetting: '环节设置',
|
|
@@ -15306,6 +15308,9 @@ model.start = 0; // 用于判断开始节点是否存在
|
|
|
15306
15308
|
function nodeEvents(id, wflow, $scope) {
|
|
15307
15309
|
// 节点删除,包括连线以及数据
|
|
15308
15310
|
jquery__WEBPACK_IMPORTED_MODULE_0___default()('#' + id).bind('mousedown', function (e) {
|
|
15311
|
+
if (jquery__WEBPACK_IMPORTED_MODULE_0___default()('#' + id).hasClass('model_process_yb') || jquery__WEBPACK_IMPORTED_MODULE_0___default()('#' + id).hasClass('model_process_yth') || jquery__WEBPACK_IMPORTED_MODULE_0___default()('#' + id).hasClass('model_process_jxz')) {
|
|
15312
|
+
return;
|
|
15313
|
+
}
|
|
15309
15314
|
var allConnection = jsPlumb.getAllConnections();
|
|
15310
15315
|
var pathArr = [];
|
|
15311
15316
|
var curNodeId = jquery__WEBPACK_IMPORTED_MODULE_0___default()(this).attr('id');
|
|
@@ -15331,6 +15336,12 @@ function nodeEvents(id, wflow, $scope) {
|
|
|
15331
15336
|
}
|
|
15332
15337
|
jquery__WEBPACK_IMPORTED_MODULE_0___default()('#deleteNode').show();
|
|
15333
15338
|
jquery__WEBPACK_IMPORTED_MODULE_0___default()('#deleteNode').bind('click', function () {
|
|
15339
|
+
if (document.querySelector('.model_process').length === 1) {
|
|
15340
|
+
$scope.$alert('至少需要一个节点,不允许删除。', '操作提示', {
|
|
15341
|
+
type: 'warning'
|
|
15342
|
+
});
|
|
15343
|
+
return;
|
|
15344
|
+
}
|
|
15334
15345
|
$scope.$confirm('您是否确认删除选择的节点?', $scope.$t('common.confirm'), {
|
|
15335
15346
|
type: 'warning'
|
|
15336
15347
|
}).then(function () {
|
|
@@ -15397,6 +15408,9 @@ function nodeEvents(id, wflow, $scope) {
|
|
|
15397
15408
|
|
|
15398
15409
|
// 2图形上删除node及path
|
|
15399
15410
|
jsPlumb.remove(id);
|
|
15411
|
+
if ($scope.removeUdmNode) {
|
|
15412
|
+
$scope.removeUdmNode(id);
|
|
15413
|
+
}
|
|
15400
15414
|
});
|
|
15401
15415
|
});
|
|
15402
15416
|
if (this.innerHTML.indexOf('启动子流程') !== -1) {
|
|
@@ -16005,6 +16019,7 @@ function dragAddNode(event, ui, $scope, wfNode) {
|
|
|
16005
16019
|
jquery__WEBPACK_IMPORTED_MODULE_0___default()('.process').bind('click', function (el) {
|
|
16006
16020
|
jquery__WEBPACK_IMPORTED_MODULE_0___default()('.process').removeClass('seled');
|
|
16007
16021
|
jquery__WEBPACK_IMPORTED_MODULE_0___default()(el.currentTarget).addClass('seled');
|
|
16022
|
+
if (!$scope.$vnode.context.$refs['siderefs']) return;
|
|
16008
16023
|
$scope.getHistroyNodes();
|
|
16009
16024
|
var curId = jquery__WEBPACK_IMPORTED_MODULE_0___default()(el.currentTarget).attr('id');
|
|
16010
16025
|
for (var j = 0; j < $scope.wflow.nodes.length; j++) {
|
|
@@ -16842,6 +16857,197 @@ ecinc_process.setUdmChartdata = function ($scope, udmConfig) {
|
|
|
16842
16857
|
});
|
|
16843
16858
|
};
|
|
16844
16859
|
|
|
16860
|
+
// 判断是否有 路径超出了范围
|
|
16861
|
+
ecinc_process.ComparePath = function () {
|
|
16862
|
+
var scrollWidth = document.querySelector('.center-container').scrollWidth;
|
|
16863
|
+
var clientWidth = document.querySelector('.center-container').clientWidth;
|
|
16864
|
+
if (scrollWidth > clientWidth) {
|
|
16865
|
+
$('#center').width(scrollWidth + 50);
|
|
16866
|
+
}
|
|
16867
|
+
var scrollHeight = document.querySelector('.center-container').scrollHeight;
|
|
16868
|
+
var clientHeight = document.querySelector('.center-container').clientHeight;
|
|
16869
|
+
if (scrollHeight > clientHeight) {
|
|
16870
|
+
$('#center').height(scrollHeight + 50);
|
|
16871
|
+
}
|
|
16872
|
+
var offsetLeft = 0;
|
|
16873
|
+
var offsetTop = 0;
|
|
16874
|
+
document.querySelector('.center-container').childNodes.forEach(function (item) {
|
|
16875
|
+
if (item.offsetLeft < offsetLeft) {
|
|
16876
|
+
offsetLeft = item.offsetLeft;
|
|
16877
|
+
}
|
|
16878
|
+
if (item.offsetTop < offsetTop) {
|
|
16879
|
+
offsetTop = item.offsetTop;
|
|
16880
|
+
}
|
|
16881
|
+
});
|
|
16882
|
+
if (offsetLeft < 0 || offsetTop < 112) {
|
|
16883
|
+
document.querySelector('.center-container').childNodes.forEach(function (item) {
|
|
16884
|
+
if (item.tagName === 'DIV' && item.id) {
|
|
16885
|
+
if (offsetLeft < 0) {
|
|
16886
|
+
$('#' + item.id).css('left', parseInt($('#' + item.id).css('left')) + offsetLeft * -1 + 50 + 'px');
|
|
16887
|
+
} else if (offsetTop < 0) {
|
|
16888
|
+
$('#' + item.id).css('top', parseInt($('#' + item.id).css('top')) + offsetTop * -1 + 50 + 'px');
|
|
16889
|
+
}
|
|
16890
|
+
}
|
|
16891
|
+
});
|
|
16892
|
+
jsPlumb.repaintEverything();
|
|
16893
|
+
}
|
|
16894
|
+
};
|
|
16895
|
+
ecinc_process.AddAnchor = function ($scope, hollowCircle) {
|
|
16896
|
+
$('.process').bind('dblclick', function (e) {
|
|
16897
|
+
var classList = e.currentTarget.classList;
|
|
16898
|
+
// ($.inArray('jhjd', classList) === 1) || 聚合节点双击增加锚点
|
|
16899
|
+
if ($.inArray('jcjd', classList) === 1) {
|
|
16900
|
+
// return
|
|
16901
|
+
}
|
|
16902
|
+
var L = e.pageX;
|
|
16903
|
+
var T = e.pageY;
|
|
16904
|
+
var objTOP = $('#' + e.currentTarget.id).offset().top;
|
|
16905
|
+
var objLEFT = $('#' + e.currentTarget.id).offset().left;
|
|
16906
|
+
var objWidth = $('#' + e.currentTarget.id).width();
|
|
16907
|
+
var objHeight = $('#' + e.currentTarget.id).height();
|
|
16908
|
+
// console.log("鼠标位置",T,L)
|
|
16909
|
+
// console.log("元素相对视窗位置",objTOP,objLEFT)
|
|
16910
|
+
// console.log("元素宽高",objWidth,objHeight)
|
|
16911
|
+
var SCALEX;
|
|
16912
|
+
var SCALEY;
|
|
16913
|
+
var DX;
|
|
16914
|
+
var DY;
|
|
16915
|
+
var canAdd = false;
|
|
16916
|
+
|
|
16917
|
+
// 当鼠标落位到节点上半区时
|
|
16918
|
+
if (T - objTOP <= 5 || L - objLEFT <= 5) {
|
|
16919
|
+
// 落位在第一象限
|
|
16920
|
+
if (L - objLEFT <= 5) {
|
|
16921
|
+
if (L - objLEFT <= T - objTOP) {
|
|
16922
|
+
SCALEX = 0;
|
|
16923
|
+
SCALEY = parseFloat((T - objTOP) / objHeight);
|
|
16924
|
+
DX = -1;
|
|
16925
|
+
DY = 0;
|
|
16926
|
+
canAdd = true;
|
|
16927
|
+
} else {
|
|
16928
|
+
SCALEY = 0;
|
|
16929
|
+
SCALEX = parseFloat((L - objLEFT) / objWidth);
|
|
16930
|
+
DX = 0;
|
|
16931
|
+
DY = -1;
|
|
16932
|
+
canAdd = true;
|
|
16933
|
+
}
|
|
16934
|
+
} else {
|
|
16935
|
+
// 落位在第二象限
|
|
16936
|
+
if (objWidth - (L - objLEFT) <= T - objTOP) {
|
|
16937
|
+
SCALEX = 1;
|
|
16938
|
+
SCALEY = parseFloat((T - objTOP) / objHeight);
|
|
16939
|
+
DX = 1;
|
|
16940
|
+
DY = 0;
|
|
16941
|
+
canAdd = true;
|
|
16942
|
+
} else {
|
|
16943
|
+
SCALEY = 0;
|
|
16944
|
+
SCALEX = parseFloat((L - objLEFT) / objWidth);
|
|
16945
|
+
DX = 0;
|
|
16946
|
+
DY = -1;
|
|
16947
|
+
canAdd = true;
|
|
16948
|
+
}
|
|
16949
|
+
}
|
|
16950
|
+
} else if (objTOP + objHeight - T <= 5 || objLEFT + objWidth - L <= 5) {
|
|
16951
|
+
// 落位在下半区
|
|
16952
|
+
// 落位在第三象限
|
|
16953
|
+
if (L - objLEFT <= objWidth / 2) {
|
|
16954
|
+
if (objHeight - (T - objTOP) <= L - objLEFT) {
|
|
16955
|
+
SCALEX = parseFloat((L - objLEFT) / objWidth);
|
|
16956
|
+
SCALEY = 1;
|
|
16957
|
+
DX = 0;
|
|
16958
|
+
DY = 1;
|
|
16959
|
+
canAdd = true;
|
|
16960
|
+
} else {
|
|
16961
|
+
SCALEX = 0;
|
|
16962
|
+
SCALEY = parseFloat((T - objTOP) / objHeight);
|
|
16963
|
+
DX = -1;
|
|
16964
|
+
DY = 0;
|
|
16965
|
+
canAdd = true;
|
|
16966
|
+
}
|
|
16967
|
+
} else {
|
|
16968
|
+
// 落位在第四象限
|
|
16969
|
+
if (objHeight - (T - objTOP) <= objWidth - (L - objLEFT)) {
|
|
16970
|
+
SCALEX = parseFloat((L - objLEFT) / objWidth);
|
|
16971
|
+
SCALEY = 1;
|
|
16972
|
+
DX = 0;
|
|
16973
|
+
DY = 1;
|
|
16974
|
+
canAdd = true;
|
|
16975
|
+
} else {
|
|
16976
|
+
SCALEX = 1;
|
|
16977
|
+
SCALEY = parseFloat((T - objTOP) / objHeight);
|
|
16978
|
+
DX = 1;
|
|
16979
|
+
DY = 0;
|
|
16980
|
+
canAdd = true;
|
|
16981
|
+
}
|
|
16982
|
+
}
|
|
16983
|
+
}
|
|
16984
|
+
if (canAdd) {
|
|
16985
|
+
jsPlumb.addEndpoint(e.currentTarget.id, {
|
|
16986
|
+
anchor: [SCALEX, SCALEY, DX, DY]
|
|
16987
|
+
}, hollowCircle);
|
|
16988
|
+
} else {
|
|
16989
|
+
if ($scope.curNodeDbclick) $scope.curNodeDbclick(e.currentTarget.id);
|
|
16990
|
+
}
|
|
16991
|
+
});
|
|
16992
|
+
ecinc_process.bindName = function (id, name) {
|
|
16993
|
+
if ($('#' + id).hasClass('jcjd')) {
|
|
16994
|
+
$('#' + id).html(name);
|
|
16995
|
+
} else {
|
|
16996
|
+
$('#' + id).find('p').html(name);
|
|
16997
|
+
}
|
|
16998
|
+
};
|
|
16999
|
+
ecinc_process.changeNodeType = function ($scope, id, type, curNode) {
|
|
17000
|
+
$('#' + id).removeClass('ptjd');
|
|
17001
|
+
$('#' + id).removeClass('ywjd');
|
|
17002
|
+
$('#' + id).removeClass('drbx');
|
|
17003
|
+
$('#' + id).removeClass('hqjd');
|
|
17004
|
+
$('#' + id).removeClass('drcx');
|
|
17005
|
+
$('#' + id).removeClass('jzjd');
|
|
17006
|
+
switch (type) {
|
|
17007
|
+
case 0:
|
|
17008
|
+
if (curNode.nodeNo !== 'start') {
|
|
17009
|
+
// $('#' + id).removeClass()
|
|
17010
|
+
if (curNode.nodeType === 1) {
|
|
17011
|
+
$('#' + id).addClass('process model_process ptjd');
|
|
17012
|
+
$('#' + id).find('img').attr('src', $scope.ptjd);
|
|
17013
|
+
$('#' + id).find('span').html('普通节点');
|
|
17014
|
+
} else {
|
|
17015
|
+
$('#' + id).addClass('process model_process ywjd');
|
|
17016
|
+
$('#' + id).find('img').attr('src', $scope.ywjd);
|
|
17017
|
+
$('#' + id).find('span').html('阅文节点');
|
|
17018
|
+
}
|
|
17019
|
+
}
|
|
17020
|
+
break;
|
|
17021
|
+
case 1:
|
|
17022
|
+
// $('#' + id).removeClass()
|
|
17023
|
+
$('#' + id).addClass('process model_process drbx');
|
|
17024
|
+
$('#' + id).find('img').attr('src', $scope.drbx);
|
|
17025
|
+
$('#' + id).find('span').html('多人并行');
|
|
17026
|
+
break;
|
|
17027
|
+
case 2:
|
|
17028
|
+
// $('#' + id).removeClass()
|
|
17029
|
+
$('#' + id).addClass('process model_process hqjd');
|
|
17030
|
+
$('#' + id).find('img').attr('src', $scope.hqjd);
|
|
17031
|
+
$('#' + id).find('span').html('会签节点');
|
|
17032
|
+
break;
|
|
17033
|
+
case 3:
|
|
17034
|
+
// $('#' + id).removeClass()
|
|
17035
|
+
$('#' + id).addClass('process model_process drcx');
|
|
17036
|
+
$('#' + id).find('img').attr('src', $scope.drcx);
|
|
17037
|
+
$('#' + id).find('span').html('多人串行');
|
|
17038
|
+
break;
|
|
17039
|
+
case 4:
|
|
17040
|
+
case 5:
|
|
17041
|
+
case 6:
|
|
17042
|
+
// $('#' + id).removeClass()
|
|
17043
|
+
$('#' + id).addClass('process model_process jzjd');
|
|
17044
|
+
$('#' + id).find('img').attr('src', $scope.jzjd);
|
|
17045
|
+
$('#' + id).find('span').html('竞争节点');
|
|
17046
|
+
break;
|
|
17047
|
+
}
|
|
17048
|
+
};
|
|
17049
|
+
};
|
|
17050
|
+
|
|
16845
17051
|
|
|
16846
17052
|
/***/ }),
|
|
16847
17053
|
|
|
@@ -17637,8 +17843,8 @@ var Transform = {
|
|
|
17637
17843
|
}
|
|
17638
17844
|
};
|
|
17639
17845
|
var showAddNodeBtn = function showAddNodeBtn($scope, conn, target, originalEvent) {
|
|
17640
|
-
//是否存在选中的待添加节点
|
|
17641
|
-
var selectedItemType = $scope.$vnode.context.$refs['siderefs'].selectedItemType;
|
|
17846
|
+
//是否存在选中的待添加节点(自由协同流程配置无左侧工具栏,默认为普通节点)
|
|
17847
|
+
var selectedItemType = $scope.$vnode.context.$refs['siderefs'] ? $scope.$vnode.context.$refs['siderefs'].selectedItemType : 'ptjd';
|
|
17642
17848
|
if (selectedItemType && selectedItemType !== 'line') {
|
|
17643
17849
|
var targetDiv = target.parentElement.parentElement;
|
|
17644
17850
|
var btn = document.querySelector('.add-node-btn');
|
|
@@ -17656,6 +17862,10 @@ var addNodeBtnClick = function addNodeBtnClick($scope, event, btn) {
|
|
|
17656
17862
|
top: conn.element.offsetTop + 102,
|
|
17657
17863
|
left: conn.element.offsetLeft + 210
|
|
17658
17864
|
};
|
|
17865
|
+
if (!$scope.$vnode.context.$refs['siderefs']) {
|
|
17866
|
+
position.left += -190;
|
|
17867
|
+
position.top += -10;
|
|
17868
|
+
}
|
|
17659
17869
|
var connectLine = {
|
|
17660
17870
|
ConnectionId: '',
|
|
17661
17871
|
PageSourceId: '',
|
|
@@ -17701,7 +17911,12 @@ var addNodeBtnClick = function addNodeBtnClick($scope, event, btn) {
|
|
|
17701
17911
|
connectLine.firstEndpoints = [conn.anchor.x, conn.anchor.y, -1, 0];
|
|
17702
17912
|
connectLine.secondEndpoints = [0.5, 0, 0, 0];
|
|
17703
17913
|
}
|
|
17704
|
-
var scrollbar =
|
|
17914
|
+
var scrollbar = null;
|
|
17915
|
+
if (document.querySelector('#center-scrollbar')) {
|
|
17916
|
+
scrollbar = document.querySelector('#center-scrollbar').querySelector('.el-scrollbar__wrap'); //支撑平台流程配置
|
|
17917
|
+
} else {
|
|
17918
|
+
scrollbar = document.querySelector('#wfNodelogList').parentElement.parentElement; //自由协同流程配置
|
|
17919
|
+
}
|
|
17705
17920
|
var scrollTop = scrollbar.scrollTop;
|
|
17706
17921
|
var scrollLeft = scrollbar.scrollLeft;
|
|
17707
17922
|
position.top += -scrollTop;
|
|
@@ -17732,7 +17947,12 @@ var addNodeBtnClick = function addNodeBtnClick($scope, event, btn) {
|
|
|
17732
17947
|
//决策节点,左、右侧添加,调整top值
|
|
17733
17948
|
position.top += 10;
|
|
17734
17949
|
}
|
|
17735
|
-
var node =
|
|
17950
|
+
var node = null;
|
|
17951
|
+
if ($scope.$vnode.context.$refs['siderefs']) {
|
|
17952
|
+
node = $scope.$vnode.context.$refs['siderefs'].$el.querySelector('.' + btn.selectedItemType);
|
|
17953
|
+
} else {
|
|
17954
|
+
node = document.querySelector('.ptjd');
|
|
17955
|
+
}
|
|
17736
17956
|
var ui = {
|
|
17737
17957
|
position: position
|
|
17738
17958
|
};
|
|
@@ -41207,7 +41427,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".CodeMirror-hints,.CodeMirror-lint-too
|
|
|
41207
41427
|
|
|
41208
41428
|
/***/ }),
|
|
41209
41429
|
|
|
41210
|
-
/***/
|
|
41430
|
+
/***/ 70588:
|
|
41211
41431
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
41212
41432
|
|
|
41213
41433
|
"use strict";
|
|
@@ -41228,7 +41448,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".form_item .el-date-editor .el-input__
|
|
|
41228
41448
|
|
|
41229
41449
|
/***/ }),
|
|
41230
41450
|
|
|
41231
|
-
/***/
|
|
41451
|
+
/***/ 37708:
|
|
41232
41452
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
41233
41453
|
|
|
41234
41454
|
"use strict";
|
|
@@ -41242,7 +41462,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
41242
41462
|
|
|
41243
41463
|
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()));
|
|
41244
41464
|
// Module
|
|
41245
|
-
___CSS_LOADER_EXPORT___.push([module.id, "span[data-v-
|
|
41465
|
+
___CSS_LOADER_EXPORT___.push([module.id, "span[data-v-109a904c]{white-space:pre-wrap}[data-v-109a904c] .el-upload--text{width:100%}[data-v-109a904c] .el-divider--horizontal{margin:10px 0}.form_item .el-link[data-v-109a904c]{margin-left:6px}", ""]);
|
|
41246
41466
|
// Exports
|
|
41247
41467
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
41248
41468
|
|
|
@@ -41905,7 +42125,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-e6d984d2] .el-upload--text{wid
|
|
|
41905
42125
|
|
|
41906
42126
|
/***/ }),
|
|
41907
42127
|
|
|
41908
|
-
/***/
|
|
42128
|
+
/***/ 83517:
|
|
41909
42129
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
41910
42130
|
|
|
41911
42131
|
"use strict";
|
|
@@ -41919,7 +42139,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
41919
42139
|
|
|
41920
42140
|
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()));
|
|
41921
42141
|
// Module
|
|
41922
|
-
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-
|
|
42142
|
+
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-0f1489c8]:export{stdMenuBgcolor:var(--lmBgColor);stdMenuHover:var(--lmBgColorActive)!important;stdMenuText:var(--lmTextColor)!important;stdMenuAcitveText:var(--lmTextColorActive)!important;stdSubMenuBgcolor:var(--lmBgColor);stdSubMenuHover:hsla(193,8%,67%,.42);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)}.commandbar-dropdown-menu[data-v-0f1489c8]{margin-top:0!important;text-align:center}.commandBar[data-v-0f1489c8]{background:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.commandBar .commandBtn[data-v-0f1489c8]{margin-right:14px}.commandBar .glyphicon-off[data-v-0f1489c8]{color:red}.commandBar .download[data-v-0f1489c8]{color:#0e830e}.commandBar .save[data-v-0f1489c8]{color:#00008b}.commandBar .el-icon-setting[data-v-0f1489c8]{color:#ff7b00d8}.commandBar .el-icon-edit[data-v-0f1489c8],.commandBar .el-icon-edit-outline[data-v-0f1489c8]{color:#00008b}.commandBar .el-icon-back[data-v-0f1489c8],.commandBar .el-icon-refresh-left[data-v-0f1489c8]{color:#ff7b00d8}.bottom-bar[data-v-0f1489c8]{z-index:1000!important;margin:0 auto;position:fixed;bottom:0;left:0;right:0;height:76px;-webkit-box-shadow:0 -2px 4px 0 rgba(0,0,0,.06);box-shadow:0 -2px 4px 0 rgba(0,0,0,.06)}", ""]);
|
|
41923
42143
|
// Exports
|
|
41924
42144
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
41925
42145
|
|
|
@@ -42073,7 +42293,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-1ee1c827] .el-dialog__body{min
|
|
|
42073
42293
|
|
|
42074
42294
|
/***/ }),
|
|
42075
42295
|
|
|
42076
|
-
/***/
|
|
42296
|
+
/***/ 71096:
|
|
42077
42297
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
42078
42298
|
|
|
42079
42299
|
"use strict";
|
|
@@ -42087,7 +42307,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42087
42307
|
|
|
42088
42308
|
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()));
|
|
42089
42309
|
// Module
|
|
42090
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".tdcont[data-v-
|
|
42310
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".tdcont[data-v-12571ea7]{line-height:25px!important}", ""]);
|
|
42091
42311
|
// Exports
|
|
42092
42312
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
42093
42313
|
|
|
@@ -42136,7 +42356,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-c8e64c1a] .el-dialog__body .su
|
|
|
42136
42356
|
|
|
42137
42357
|
/***/ }),
|
|
42138
42358
|
|
|
42139
|
-
/***/
|
|
42359
|
+
/***/ 42918:
|
|
42140
42360
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
42141
42361
|
|
|
42142
42362
|
"use strict";
|
|
@@ -42150,7 +42370,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42150
42370
|
|
|
42151
42371
|
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()));
|
|
42152
42372
|
// Module
|
|
42153
|
-
___CSS_LOADER_EXPORT___.push([module.id, "@media (max-width:1569px){.users-container .el-button[data-v-
|
|
42373
|
+
___CSS_LOADER_EXPORT___.push([module.id, "@media (max-width:1569px){.users-container .el-button[data-v-2df2737a]{display:none}}.area-title[data-v-2df2737a]{margin-bottom:10px;font-weight:600}.area-title .el-icon-check[data-v-2df2737a],.area-title .el-icon-plus[data-v-2df2737a]{margin-right:5px;font-size:14px;font-weight:600}.submit-handle-container[data-v-2df2737a]{margin-top:20px}.submit-handle-container .tnLimit-container[data-v-2df2737a]{border-bottom:1px solid #ebeef5;margin-left:-4px;margin-right:-4px;padding-left:4px;padding-bottom:5px;margin-bottom:5px}.submit-handle-container .tnLimit-container .el-input[data-v-2df2737a]{width:40px}.submit-handle-container .tnLimit-container .el-input[data-v-2df2737a] .el-input__inner{border-top:0;border-left:0;border-right:0;border-radius:0;text-align:center}.submit-handle-container .users-container[data-v-2df2737a]{margin-right:45px}.submit-handle-container .users-container .el-button[data-v-2df2737a]{padding-left:6px;padding-right:6px}.submit-handle-container .users-container div[data-v-2df2737a]{float:left}.submit-handle-container .users-container div[data-v-2df2737a]:after{content:\"、\"}.submit-handle-container .users-container div[data-v-2df2737a]:last-child:after{content:\"\"}.submit-handle-container .selectPath[data-v-2df2737a] .el-radio{width:130px;line-height:30px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submit-handle-container[data-v-2df2737a] .el-upload--text{width:100%}.submit-handle-container[data-v-2df2737a] .el-upload .el-input-group .el-input__inner{display:inline-block;vertical-align:baseline}.submit-handle-container .shortcut-button[data-v-2df2737a]{text-align:right}.submit-handle-container .shortcut-button[data-v-2df2737a] .el-button{font-weight:600}.submit-handle-container .sidebar-area[data-v-2df2737a]{border-bottom:1px solid #eee}.submit-handle-container .sidebar-area .sidebar-area-title[data-v-2df2737a]{font-weight:600;line-height:24px;padding:10px}.submit-handle-container .sidebar-area .sidebar-area-title .el-button--primary[data-v-2df2737a]{width:6px;padding:0;margin-right:6px;margin-top:5px;border-radius:1px;height:14px;cursor:default;vertical-align:top;display:inline-block}.submit-handle-container .sidebar-area .sidebar-area-title .required[data-v-2df2737a]{padding-left:5px;color:red}.submit-handle-container .sidebar-area .sidebar-area-title div[data-v-2df2737a]{display:inline-block;vertical-align:top}.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a]{padding-left:20px;padding-right:10px;padding-bottom:10px}.submit-handle-container .sidebar-area .sidebar-area-content .el-checkbox[data-v-2df2737a]{line-height:30px}.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a] .select-group-container{padding-top:8px!important}.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a] .el-button--medium,.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a] .el-input__inner{line-height:30px!important;height:30px}.submit-handle-container .sidebar-area .sidebar-area-content .el-radio[data-v-2df2737a]{display:block}.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a] .el-timeline{padding-left:0}.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a] .el-timeline .el-timeline-item{padding-bottom:15px}.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a] .el-timeline .el-timeline-item .el-timeline-item__node{background-color:#fff}.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a] .el-timeline .el-timeline-item .el-timeline-item__node .el-timeline-item__icon{color:#606266}.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a] .el-timeline .el-timeline-item .el-timeline-item__content{text-align:right}.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a] .el-timeline .el-timeline-item .el-timeline-item__content span{float:left}.submit-handle-container .sidebar-area .sidebar-area-content[data-v-2df2737a] .el-timeline .el-timeline-item .el-timeline-item__timestamp{width:calc(100% - 50px);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.submit-handle-container .sidebar-area[data-v-2df2737a]:last-child{border-bottom:0!important}", ""]);
|
|
42154
42374
|
// Exports
|
|
42155
42375
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
42156
42376
|
|
|
@@ -42178,7 +42398,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".bottombar[data-v-822a4e50]{position:a
|
|
|
42178
42398
|
|
|
42179
42399
|
/***/ }),
|
|
42180
42400
|
|
|
42181
|
-
/***/
|
|
42401
|
+
/***/ 23385:
|
|
42182
42402
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
42183
42403
|
|
|
42184
42404
|
"use strict";
|
|
@@ -42192,14 +42412,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42192
42412
|
|
|
42193
42413
|
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()));
|
|
42194
42414
|
// Module
|
|
42195
|
-
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-
|
|
42415
|
+
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-50899534] .todo-row .cell{line-height:18px}[data-v-50899534] .todo-row td{padding:5px 0}[data-v-50899534] .timeout-row .cell{color:red}.el-tab-pane[data-v-50899534]{height:550px;overflow-y:auto}[data-v-50899534] .col-time .cell{word-break:break-word}[data-v-50899534] .wfNodeLoglist-dialog .el-scrollbar{width:100%;height:100%}[data-v-50899534] .wfNodeLoglist-dialog .el-scrollbar .el-scrollbar__wrap{overflow-x:auto;height:calc(100% + 17px);padding-right:20px;padding-bottom:40px}[data-v-50899534] .wfNodeLoglist-dialog .el-dialog__body{padding-right:0;padding-bottom:0}[data-v-50899534] .wfNodeLoglist-dialog .el-dialog__body .handwritingIdea{width:100px}[data-v-50899534] .wfNodeLoglist-dialog .el-tabs__nav-wrap:after{width:calc(100% - 20px)}[data-v-50899534] .wfNodeLoglist-dialog .flow-node-logs .el-scrollbar__view,[data-v-50899534] .wfNodeLoglist-dialog .read-node-logs .el-scrollbar__view{height:100%}.height100[data-v-50899534]{height:calc(100vh - 120px)}[data-v-50899534] .el-dialog__headerbtn{top:18px}.form-wflog-container[data-v-50899534]{min-height:calc(100vh - 70px);min-width:1200px;background-color:#fff;padding:20px}.historyIdea-container[data-v-50899534]{z-index:2000;background-color:#fff;padding:10px 20px 20px 20px}.historyIdea-container[data-v-50899534] .el-tabs__content{display:none}.historyIdea-container[data-v-50899534] .el-tabs__nav-wrap:after{height:0}.historyIdea-container[data-v-50899534] .el-table .cell{white-space:inherit}.historyIdea-container .export-icon[data-v-50899534]{cursor:pointer;float:right;margin-top:-40px}.historyIdea-container .export-icon .svg-icon[data-v-50899534]{color:red;font-size:16px;margin-right:5px}.historyIdea-container .collapse-icon[data-v-50899534]{cursor:pointer;float:right;margin-top:-40px;margin-right:70px}.historyIdea-container .collapse-icon .svg-icon[data-v-50899534]{font-size:16px;margin-right:5px}", ""]);
|
|
42196
42416
|
// Exports
|
|
42197
42417
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
42198
42418
|
|
|
42199
42419
|
|
|
42200
42420
|
/***/ }),
|
|
42201
42421
|
|
|
42202
|
-
/***/
|
|
42422
|
+
/***/ 45537:
|
|
42203
42423
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
42204
42424
|
|
|
42205
42425
|
"use strict";
|
|
@@ -42213,7 +42433,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42213
42433
|
|
|
42214
42434
|
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()));
|
|
42215
42435
|
// Module
|
|
42216
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".tdw17[data-v-
|
|
42436
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".tdw17[data-v-783e7e24]{width:20%!important}.tdw83[data-v-783e7e24]{width:80%!important}", ""]);
|
|
42217
42437
|
// Exports
|
|
42218
42438
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
42219
42439
|
|
|
@@ -43186,7 +43406,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-1c364978]:export{stdMenuBgcolo
|
|
|
43186
43406
|
|
|
43187
43407
|
/***/ }),
|
|
43188
43408
|
|
|
43189
|
-
/***/
|
|
43409
|
+
/***/ 71525:
|
|
43190
43410
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
43191
43411
|
|
|
43192
43412
|
"use strict";
|
|
@@ -43200,7 +43420,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
43200
43420
|
|
|
43201
43421
|
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()));
|
|
43202
43422
|
// Module
|
|
43203
|
-
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-
|
|
43423
|
+
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-191e1748]:export{stdMenuBgcolor:var(--lmBgColor);stdMenuHover:var(--lmBgColorActive)!important;stdMenuText:var(--lmTextColor)!important;stdMenuAcitveText:var(--lmTextColorActive)!important;stdSubMenuBgcolor:var(--lmBgColor);stdSubMenuHover:hsla(193,8%,67%,.42);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)}.list-style-container[data-v-191e1748]{width:1150px;margin:auto}.list-style-container .el-col-12[data-v-191e1748]{padding-left:10px;padding-right:10px}.list-style-container .el-col-12[data-v-191e1748] .el-table__body{font-size:13px;width:100%}.list-style-container .el-col-12[data-v-191e1748] .el-table__body td{padding:4px;height:38px;line-height:38px}.list-style-container .el-col-12[data-v-191e1748] .el-table__body td .svg-icon{margin:auto 8px;cursor:move}.list-style-container[data-v-191e1748] .el-input__inner{padding:0 5px}.list-style-container .toolbar-container[data-v-191e1748]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:20px}.list-style-container .list-style-define[data-v-191e1748]{margin-top:5px;display:inline-block;border:1px solid #d8dce5}.list-style-container .cell label[data-v-191e1748]{display:block;width:100%;cursor:pointer}.list-style-container #card-list .card-item[data-v-191e1748]{background:#f7f9ff;border-radius:2px 0 0 2px;padding:20px;cursor:pointer}.list-style-container #card-list .card-item .card-top[data-v-191e1748]{color:#333;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:21px}.list-style-container #card-list .card-item .card-top .card-top-left[data-v-191e1748]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.list-style-container #card-list .card-item .card-top .card-top-right[data-v-191e1748]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-align:end}.list-style-container #card-list .card-item .card-bottom[data-v-191e1748]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:17px;margin-top:10px;color:#999;font-size:13px}.list-style-container #card-list .card-item .card-bottom .card-bottom-left[data-v-191e1748]{display:-webkit-box;display:-ms-flexbox;display:flex}.list-style-container #card-list .card-item .card-bottom .card-bottom-left .span-item[data-v-191e1748]{margin-right:30px}.list-style-container #card-list .card-item .card-bottom .card-bottom-right[data-v-191e1748]{display:-webkit-box;display:-ms-flexbox;display:flex}.list-style-container #card-list .card-item .card-bottom .card-bottom-right .span-item[data-v-191e1748]{margin-left:30px}", ""]);
|
|
43204
43424
|
// Exports
|
|
43205
43425
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
43206
43426
|
|
|
@@ -43291,7 +43511,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-42e3a616]:export{stdMenuBgcolo
|
|
|
43291
43511
|
|
|
43292
43512
|
/***/ }),
|
|
43293
43513
|
|
|
43294
|
-
/***/
|
|
43514
|
+
/***/ 72113:
|
|
43295
43515
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
43296
43516
|
|
|
43297
43517
|
"use strict";
|
|
@@ -43305,7 +43525,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
43305
43525
|
|
|
43306
43526
|
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()));
|
|
43307
43527
|
// Module
|
|
43308
|
-
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-
|
|
43528
|
+
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-a1780b48]:export{stdMenuBgcolor:var(--lmBgColor);stdMenuHover:var(--lmBgColorActive)!important;stdMenuText:var(--lmTextColor)!important;stdMenuAcitveText:var(--lmTextColorActive)!important;stdSubMenuBgcolor:var(--lmBgColor);stdSubMenuHover:hsla(193,8%,67%,.42);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)}.designer-container .designer-header-container[data-v-a1780b48]{height:60px;width:100%;background:var(--bgColor)}.designer-container .designer-header-container .header-navbar[data-v-a1780b48]{float:left;top:0;height:60px;line-height:60px;color:var(--textColor)!important;padding-top:5px}.designer-container .designer-header-container .right-menu[data-v-a1780b48]{margin-right:10px}.designer-container .designer-body-container[data-v-a1780b48]{height:calc(100vh - 60px);padding:20px;overflow-y:auto;background-color:#fff}.designer-container[data-v-a1780b48] .el-loading-mask{margin-top:50px}", ""]);
|
|
43309
43529
|
// Exports
|
|
43310
43530
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
43311
43531
|
|
|
@@ -43774,7 +43994,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".setting .header[data-v-4dea7ff5]{widt
|
|
|
43774
43994
|
|
|
43775
43995
|
/***/ }),
|
|
43776
43996
|
|
|
43777
|
-
/***/
|
|
43997
|
+
/***/ 20846:
|
|
43778
43998
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
43779
43999
|
|
|
43780
44000
|
"use strict";
|
|
@@ -43788,14 +44008,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
43788
44008
|
|
|
43789
44009
|
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()));
|
|
43790
44010
|
// Module
|
|
43791
|
-
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-
|
|
44011
|
+
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-142c1963] .el-scrollbar__wrap{overflow-x:auto}#center[data-v-142c1963]{background-image:-webkit-gradient(linear,left top,right top,color-stop(3%,rgba(50,0,0,.05)),color-stop(3%,transparent)),-webkit-gradient(linear,left bottom,left top,color-stop(3%,rgba(50,0,0,.05)),color-stop(3%,transparent));background-image:linear-gradient(90deg,rgba(50,0,0,.05) 3%,transparent 0),linear-gradient(1turn,rgba(50,0,0,.05) 3%,transparent 0);background-size:20px 20px;background-repeat:repeat;background-position:0 0}#center .add-node-btn[data-v-142c1963]{position:relative;margin:-15px -10px;z-index:4000;display:none}#center .insert-node-btn[data-v-142c1963]{position:fixed;margin:-15px -10px;z-index:4000;display:none}.dropdown-menu[data-v-142c1963]{width:160px;display:none;position:fixed;z-index:9999;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu li a[data-v-142c1963]{padding:5px 20px;line-height:2;white-space:nowrap;color:#333}.dropdown-menu li[data-v-142c1963]:hover{background:#f5f5f5}[data-v-142c1963] .line_text{cursor:pointer;position:absolute;left:0;top:0;font-size:14px}[data-v-142c1963] svg:hover path:last-child{fill:red}[data-v-142c1963] path{stroke-width:2;cursor:pointer}[data-v-142c1963] path:last-child{fill:#438eb9}[data-v-142c1963] circle{fill:#438eb9;stroke:none}li[data-v-142c1963],ul[data-v-142c1963]{list-style:none}.move[data-v-142c1963],.move[data-v-142c1963] path{cursor:move}", ""]);
|
|
43792
44012
|
// Exports
|
|
43793
44013
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
43794
44014
|
|
|
43795
44015
|
|
|
43796
44016
|
/***/ }),
|
|
43797
44017
|
|
|
43798
|
-
/***/
|
|
44018
|
+
/***/ 262:
|
|
43799
44019
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
43800
44020
|
|
|
43801
44021
|
"use strict";
|
|
@@ -43809,14 +44029,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
43809
44029
|
|
|
43810
44030
|
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()));
|
|
43811
44031
|
// Module
|
|
43812
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".process-desc-container{width:
|
|
44032
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".process-desc-container{width:350px;border:1px solid #dadada;background-color:#f8f8ff;font-size:14px}.process-desc-container .label{padding-left:5px;padding-right:5px;height:30px;line-height:30px;cursor:pointer}.process-desc-container .label span{float:left}.process-desc-container .label img{margin-top:3px;float:right}.process-desc-container .content{border-top:1px solid #dadada;background-color:#fff}.process-desc-container .content textarea{width:100%;min-height:120px;border:0}", ""]);
|
|
43813
44033
|
// Exports
|
|
43814
44034
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
43815
44035
|
|
|
43816
44036
|
|
|
43817
44037
|
/***/ }),
|
|
43818
44038
|
|
|
43819
|
-
/***/
|
|
44039
|
+
/***/ 33297:
|
|
43820
44040
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
43821
44041
|
|
|
43822
44042
|
"use strict";
|
|
@@ -43849,7 +44069,7 @@ var ___CSS_LOADER_URL_REPLACEMENT_5___ = _node_modules_css_loader_dist_runtime_g
|
|
|
43849
44069
|
var ___CSS_LOADER_URL_REPLACEMENT_6___ = _node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_6___);
|
|
43850
44070
|
var ___CSS_LOADER_URL_REPLACEMENT_7___ = _node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_7___);
|
|
43851
44071
|
// Module
|
|
43852
|
-
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-
|
|
44072
|
+
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-720c8d3e]:export{stdMenuBgcolor:var(--lmBgColor);stdMenuHover:var(--lmBgColorActive)!important;stdMenuText:var(--lmTextColor)!important;stdMenuAcitveText:var(--lmTextColorActive)!important;stdSubMenuBgcolor:var(--lmBgColor);stdSubMenuHover:hsla(193,8%,67%,.42);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)}#center[data-v-720c8d3e]{width:100%;height:100%;overflow-y:hidden!important}#center .add-node-btn[data-v-720c8d3e]{position:relative;margin:-15px -10px;z-index:4000;display:none}#center .icon-drag-line[data-v-720c8d3e]{position:relative;margin:-10px 10px;z-index:4000;display:none}.dropdown-menu[data-v-720c8d3e]{width:160px;display:none;position:fixed;z-index:9999;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu li a[data-v-720c8d3e]{padding:5px 20px;line-height:1.5;white-space:nowrap;color:#333}.dropdown-menu li[data-v-720c8d3e]:hover{background:#f5f5f5}[data-v-720c8d3e] .line_text{cursor:pointer;position:absolute;left:0;top:0;font-size:14px}[data-v-720c8d3e] svg:hover path{stroke:red}[data-v-720c8d3e] svg:hover path:last-child{fill:red}[data-v-720c8d3e] path{cursor:pointer}[data-v-720c8d3e] path:last-child{fill:#438eb9}[data-v-720c8d3e] circle{fill:#438eb9;stroke:none}li[data-v-720c8d3e],ul[data-v-720c8d3e]{list-style:none}body[data-v-720c8d3e]{margin:0;padding:0;background:#f3f3f3;overflow-x:hidden}[data-v-720c8d3e] #center{background:#fff;position:relative;overflow:hidden;overflow-y:auto;height:100%}[data-v-720c8d3e] #center .model_process{position:absolute;border:1px solid #dadada;width:140px;background:#fff;overflow:hidden}[data-v-720c8d3e] #center .model_process .title{background:#f8f8ff;height:30px;line-height:30px;border-bottom:1px solid #dadada;padding:1px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;cursor:pointer}[data-v-720c8d3e] #center .model_process .title img{width:16px;height:18px;margin-left:18px;margin-right:7px}[data-v-720c8d3e] #center .model_process .title span{color:#666;font-size:14px}[data-v-720c8d3e] #center .model_process p{padding:0 4px;background:#fff;word-break:break-all;color:#666;width:140px;height:48px;text-align:center;line-height:16px;font-size:14px;margin:0 auto;vertical-align:middle;display:table-cell}[data-v-720c8d3e] #center .model_process_yb p{background:#48ba79;color:#fff}[data-v-720c8d3e] #center .model_process_yth p{background:#fa7d08;color:#fff}[data-v-720c8d3e] #center .model_process_wwc .title{background:#eee}[data-v-720c8d3e] #center .model_process_wwc p{background:#d8d8d8;color:#333}[data-v-720c8d3e] #center .model_process_jxz .title{background:#dbe1eb}[data-v-720c8d3e] #center .model_process_jxz p{background:#4477bc;color:#fff}[data-v-720c8d3e] #center .seled .title{background:#ffffe0}[data-v-720c8d3e] #center .start{width:60px;height:60px;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_0___ + ") 50% no-repeat;background-size:60px 60px}[data-v-720c8d3e] #center .jslc{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_1___ + ") no-repeat;background-size:60px 60px}[data-v-720c8d3e] #center .jslc,[data-v-720c8d3e] #center .jsrw{width:60px;height:60px;position:absolute}[data-v-720c8d3e] #center .jsrw{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_2___ + ") no-repeat;background-size:60px 60px}[data-v-720c8d3e] #center .parentWf{width:60px;height:60px;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_3___ + ") no-repeat;background-size:60px 60px}[data-v-720c8d3e] #center .zyjd{width:60px;height:60px;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_4___ + ") no-repeat;background-size:60px 60px}[data-v-720c8d3e] #center .dfzjd{width:60px;height:60px;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_5___ + ") no-repeat;background-size:60px 60px}[data-v-720c8d3e] #center .jhjd{width:60px;height:60px;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_6___ + ") no-repeat;background-size:60px 60px}[data-v-720c8d3e] #center .jcjd{width:140px;height:60px;line-height:60px;text-align:center;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_7___ + ") no-repeat 50%;white-space:nowrap;background-size:140px 60px;border:0;font-size:14px}[data-v-720c8d3e] #center .jcjd_model_process_yb{color:#fff}[data-v-720c8d3e] #center .li{height:44px;line-height:44px;padding-left:30px}[data-v-720c8d3e] #center #centextMenu{border:1px solid rgba(0,0,0,.15);position:absolute;z-index:9999;background:#fff;width:160px;padding:4px 0;border-radius:4px}[data-v-720c8d3e] #center #centextMenu a{padding:4px 10px;text-decoration:none;display:block;height:26px;font-size:14px;color:#545454}[data-v-720c8d3e] #center #centextMenu a:hover{background:#f5f5f5}[data-v-720c8d3e] #center .el-loading-spinner{top:100px}[data-v-720c8d3e] #center .el-loading-spinner circle{fill:#fff}.node-bg-desc[data-v-720c8d3e]{position:absolute;right:10px;z-index:1000}.node-bg-desc[data-v-720c8d3e] .el-col{width:90px;padding-left:10px}.node-bg-desc .node-bg[data-v-720c8d3e]{width:30px;height:15px;margin-bottom:5px;float:left;margin-right:5px}.node-bg-desc .model_process_yb[data-v-720c8d3e]{background-color:#48ba79}.node-bg-desc .model_process_yth[data-v-720c8d3e]{background-color:#fa7d08}.node-bg-desc .model_process_wwc[data-v-720c8d3e]{background-color:#4477bc}.node-bg-desc .model_process_wks[data-v-720c8d3e]{background-color:#d8d8d8}.wflogInfo[data-v-720c8d3e]{width:300px;position:absolute;border:1px solid #e1e1e1}.wflogInfo[data-v-720c8d3e] .el-card__header{padding:12px}.wflogInfo[data-v-720c8d3e] .el-card__header .el-button--text{font-size:15px}.wflogInfo[data-v-720c8d3e] .el-card__body{max-height:400px;overflow-y:auto;padding:10px}.wflogInfo[data-v-720c8d3e] .el-card__body div:last-child{border-bottom:0 solid #e1e1e1!important}.wflogInfo .el-descriptions[data-v-720c8d3e]{padding-top:5px;border-bottom:1px solid #e1e1e1}", ""]);
|
|
43853
44073
|
// Exports
|
|
43854
44074
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
43855
44075
|
|
|
@@ -44276,7 +44496,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".attr_title[data-v-311f67d4]{height:44
|
|
|
44276
44496
|
|
|
44277
44497
|
/***/ }),
|
|
44278
44498
|
|
|
44279
|
-
/***/
|
|
44499
|
+
/***/ 52719:
|
|
44280
44500
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
44281
44501
|
|
|
44282
44502
|
"use strict";
|
|
@@ -44290,7 +44510,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44290
44510
|
|
|
44291
44511
|
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()));
|
|
44292
44512
|
// Module
|
|
44293
|
-
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-
|
|
44513
|
+
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-dfecb90a] .el-select{width:100%}.btnpreview[data-v-dfecb90a]{color:#337ab7}.btnpreview[data-v-dfecb90a]:hover{color:#23527c;text-decoration:underline}.tdw17[data-v-dfecb90a]{width:20%!important}", ""]);
|
|
44294
44514
|
// Exports
|
|
44295
44515
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
44296
44516
|
|
|
@@ -44486,7 +44706,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".hoverPop .line-box .line-item:hover{b
|
|
|
44486
44706
|
|
|
44487
44707
|
/***/ }),
|
|
44488
44708
|
|
|
44489
|
-
/***/
|
|
44709
|
+
/***/ 96249:
|
|
44490
44710
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
44491
44711
|
|
|
44492
44712
|
"use strict";
|
|
@@ -44500,14 +44720,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44500
44720
|
|
|
44501
44721
|
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()));
|
|
44502
44722
|
// Module
|
|
44503
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".right-form[data-v-
|
|
44723
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".right-form[data-v-9d29e058]{height:100%;position:fixed;right:50px;top:140px;width:480px;height:640px;background:#fff;-webkit-box-sizing:border-box;box-sizing:border-box;overflow-y:hidden;border-radius:3px;-webkit-box-shadow:0 0 3px rgba(0,0,0,.3);box-shadow:0 0 3px rgba(0,0,0,.3)}.right-form[data-v-9d29e058] .tdlbl{width:33%!important}.right-form[data-v-9d29e058] .tdcont{width:67%!important}[data-v-9d29e058] .el-form{height:100%}[data-v-9d29e058] .column_flSubject{cursor:pointer}.attr_title[data-v-9d29e058]{height:44px;line-height:42px;background:#f8f8f8;position:relative}.attr_title h3[data-v-9d29e058]{font-size:14px;font-weight:400;margin:0;height:44px;line-height:44px;text-indent:10px}.attr_title i[data-v-9d29e058]{position:absolute;right:12px;top:14px;cursor:pointer}[data-v-9d29e058] .el-tabs__content{padding:5px!important}[data-v-9d29e058] .el-tabs__item{font-size:13px;padding-left:16px!important;padding-right:10px}[data-v-9d29e058] .el-tabs{height:calc(100% - 44px)}[data-v-9d29e058] .el-tabs .el-tabs__content{height:calc(100% - 54px);overflow-y:auto}", ""]);
|
|
44504
44724
|
// Exports
|
|
44505
44725
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
44506
44726
|
|
|
44507
44727
|
|
|
44508
44728
|
/***/ }),
|
|
44509
44729
|
|
|
44510
|
-
/***/
|
|
44730
|
+
/***/ 60944:
|
|
44511
44731
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
44512
44732
|
|
|
44513
44733
|
"use strict";
|
|
@@ -44540,7 +44760,7 @@ var ___CSS_LOADER_URL_REPLACEMENT_5___ = _node_modules_css_loader_dist_runtime_g
|
|
|
44540
44760
|
var ___CSS_LOADER_URL_REPLACEMENT_6___ = _node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_6___);
|
|
44541
44761
|
var ___CSS_LOADER_URL_REPLACEMENT_7___ = _node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_7___);
|
|
44542
44762
|
// Module
|
|
44543
|
-
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-
|
|
44763
|
+
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-71fdf580]:export{stdMenuBgcolor:var(--lmBgColor);stdMenuHover:var(--lmBgColorActive)!important;stdMenuText:var(--lmTextColor)!important;stdMenuAcitveText:var(--lmTextColorActive)!important;stdSubMenuBgcolor:var(--lmBgColor);stdSubMenuHover:hsla(193,8%,67%,.42);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)}#center[data-v-71fdf580]{width:100%;overflow-y:hidden!important}[data-v-71fdf580] .el-scrollbar__wrap{overflow-x:hidden}.dropdown-menu[data-v-71fdf580]{width:160px;display:none;position:fixed;z-index:9999;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu li a[data-v-71fdf580]{padding:5px 20px;line-height:1.5;white-space:nowrap;color:#333}.dropdown-menu li[data-v-71fdf580]:hover{background:#f5f5f5}[data-v-71fdf580] .line_text{cursor:pointer;position:absolute;left:0;top:0;font-size:14px}[data-v-71fdf580] svg:hover path{stroke:red}[data-v-71fdf580] svg:hover path:last-child{fill:red}[data-v-71fdf580] path{cursor:pointer}[data-v-71fdf580] path:last-child{fill:#438eb9}[data-v-71fdf580] circle{fill:#438eb9;stroke:none}li[data-v-71fdf580],ul[data-v-71fdf580]{list-style:none}body[data-v-71fdf580]{margin:0;padding:0;background:#f3f3f3;overflow-x:hidden}[data-v-71fdf580] #center{background:#fff;position:relative;overflow:hidden;overflow-y:auto;height:100%}[data-v-71fdf580] #center .model_process{position:absolute;border:1px solid #dadada;width:140px;background:#fff;overflow:hidden}[data-v-71fdf580] #center .model_process .title{background:#f8f8ff;height:30px;line-height:30px;border-bottom:1px solid #dadada;padding:1px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;cursor:pointer}[data-v-71fdf580] #center .model_process .title img{width:16px;height:18px;margin-left:18px;margin-right:7px}[data-v-71fdf580] #center .model_process .title span{color:#666;font-size:14px}[data-v-71fdf580] #center .model_process p{padding:0 4px;background:#fff;word-break:break-all;color:#666;width:140px;height:48px;text-align:center;line-height:16px;font-size:14px;margin:0 auto;vertical-align:middle;display:table-cell}[data-v-71fdf580] #center .model_process_yb p{background:#48ba79;color:#fff}[data-v-71fdf580] #center .model_process_yth p{background:#fa7d08;color:#fff}[data-v-71fdf580] #center .model_process_wwc .title{background:#eee}[data-v-71fdf580] #center .model_process_wwc p{background:#d8d8d8;color:#333}[data-v-71fdf580] #center .model_process_jxz .title{background:#dbe1eb}[data-v-71fdf580] #center .model_process_jxz p{background:#4477bc;color:#fff}[data-v-71fdf580] #center .seled .title{background:#ffffe0}[data-v-71fdf580] #center .start{width:60px;height:60px;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_0___ + ") 50% no-repeat;background-size:60px 60px}[data-v-71fdf580] #center .jslc{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_1___ + ") no-repeat;background-size:60px 60px}[data-v-71fdf580] #center .jslc,[data-v-71fdf580] #center .jsrw{width:60px;height:60px;position:absolute}[data-v-71fdf580] #center .jsrw{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_2___ + ") no-repeat;background-size:60px 60px}[data-v-71fdf580] #center .parentWf{width:60px;height:60px;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_3___ + ") no-repeat;background-size:60px 60px}[data-v-71fdf580] #center .zyjd{width:60px;height:60px;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_4___ + ") no-repeat;background-size:60px 60px}[data-v-71fdf580] #center .dfzjd{width:60px;height:60px;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_5___ + ") no-repeat;background-size:60px 60px}[data-v-71fdf580] #center .jhjd{width:60px;height:60px;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_6___ + ") no-repeat;background-size:60px 60px}[data-v-71fdf580] #center .jcjd{width:140px;height:60px;line-height:60px;text-align:center;position:absolute;background:url(" + ___CSS_LOADER_URL_REPLACEMENT_7___ + ") no-repeat 50%;white-space:nowrap;background-size:140px 60px;border:0;font-size:14px}[data-v-71fdf580] #center .jcjd_model_process_yb{color:#fff}[data-v-71fdf580] #center .li{height:44px;line-height:44px;padding-left:30px}[data-v-71fdf580] #center #centextMenu{border:1px solid rgba(0,0,0,.15);position:absolute;z-index:9999;background:#fff;width:160px;padding:4px 0;border-radius:4px}[data-v-71fdf580] #center #centextMenu a{padding:4px 10px;text-decoration:none;display:block;height:26px;font-size:14px;color:#545454}[data-v-71fdf580] #center #centextMenu a:hover{background:#f5f5f5}[data-v-71fdf580] #center .el-loading-spinner{top:100px}[data-v-71fdf580] #center .el-loading-spinner circle{fill:#fff}.node-bg-desc[data-v-71fdf580]{font-size:13px;position:absolute;right:10px;z-index:1000;margin-top:10px}.node-bg-desc[data-v-71fdf580] .el-col{width:90px;padding-left:10px}.node-bg-desc .node-bg[data-v-71fdf580]{width:30px;height:15px;margin-bottom:5px;float:left;margin-right:5px}.node-bg-desc .model_process_yb[data-v-71fdf580]{background-color:#48ba79}.node-bg-desc .model_process_yth[data-v-71fdf580]{background-color:#fa7d08}.node-bg-desc .model_process_wwc[data-v-71fdf580]{background-color:#4477bc}.node-bg-desc .model_process_wks[data-v-71fdf580]{background-color:#d8d8d8}.wflogInfo[data-v-71fdf580]{width:300px;position:absolute;border:1px solid #e1e1e1}.wflogInfo[data-v-71fdf580] .el-card__header{padding:12px}.wflogInfo[data-v-71fdf580] .el-card__header .el-button--text{font-size:15px}.wflogInfo[data-v-71fdf580] .el-card__body{max-height:400px;overflow-y:auto;padding:10px}.wflogInfo[data-v-71fdf580] .el-card__body div:last-child{border-bottom:0 solid #e1e1e1!important}.wflogInfo .el-descriptions[data-v-71fdf580]{padding-top:5px;border-bottom:1px solid #e1e1e1}.el-icon-document-checked[data-v-71fdf580]{margin-right:5px;color:#fa7d08}", ""]);
|
|
44544
44764
|
// Exports
|
|
44545
44765
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
44546
44766
|
|
|
@@ -150088,35 +150308,35 @@ var update = add("f9ee0d56", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
150088
150308
|
|
|
150089
150309
|
/***/ }),
|
|
150090
150310
|
|
|
150091
|
-
/***/
|
|
150311
|
+
/***/ 41946:
|
|
150092
150312
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
150093
150313
|
|
|
150094
150314
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
150095
150315
|
|
|
150096
150316
|
// load the styles
|
|
150097
|
-
var content = __webpack_require__(
|
|
150317
|
+
var content = __webpack_require__(70588);
|
|
150098
150318
|
if(content.__esModule) content = content.default;
|
|
150099
150319
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
150100
150320
|
if(content.locals) module.exports = content.locals;
|
|
150101
150321
|
// add the styles to the DOM
|
|
150102
150322
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
150103
|
-
var update = add("
|
|
150323
|
+
var update = add("2f988974", content, true, {"sourceMap":false,"shadowMode":false});
|
|
150104
150324
|
|
|
150105
150325
|
/***/ }),
|
|
150106
150326
|
|
|
150107
|
-
/***/
|
|
150327
|
+
/***/ 99462:
|
|
150108
150328
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
150109
150329
|
|
|
150110
150330
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
150111
150331
|
|
|
150112
150332
|
// load the styles
|
|
150113
|
-
var content = __webpack_require__(
|
|
150333
|
+
var content = __webpack_require__(37708);
|
|
150114
150334
|
if(content.__esModule) content = content.default;
|
|
150115
150335
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
150116
150336
|
if(content.locals) module.exports = content.locals;
|
|
150117
150337
|
// add the styles to the DOM
|
|
150118
150338
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
150119
|
-
var update = add("
|
|
150339
|
+
var update = add("0b244412", content, true, {"sourceMap":false,"shadowMode":false});
|
|
150120
150340
|
|
|
150121
150341
|
/***/ }),
|
|
150122
150342
|
|
|
@@ -150616,19 +150836,19 @@ var update = add("1e12b67d", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
150616
150836
|
|
|
150617
150837
|
/***/ }),
|
|
150618
150838
|
|
|
150619
|
-
/***/
|
|
150839
|
+
/***/ 20991:
|
|
150620
150840
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
150621
150841
|
|
|
150622
150842
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
150623
150843
|
|
|
150624
150844
|
// load the styles
|
|
150625
|
-
var content = __webpack_require__(
|
|
150845
|
+
var content = __webpack_require__(83517);
|
|
150626
150846
|
if(content.__esModule) content = content.default;
|
|
150627
150847
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
150628
150848
|
if(content.locals) module.exports = content.locals;
|
|
150629
150849
|
// add the styles to the DOM
|
|
150630
150850
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
150631
|
-
var update = add("
|
|
150851
|
+
var update = add("1afcd588", content, true, {"sourceMap":false,"shadowMode":false});
|
|
150632
150852
|
|
|
150633
150853
|
/***/ }),
|
|
150634
150854
|
|
|
@@ -150744,19 +150964,19 @@ var update = add("fef27986", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
150744
150964
|
|
|
150745
150965
|
/***/ }),
|
|
150746
150966
|
|
|
150747
|
-
/***/
|
|
150967
|
+
/***/ 9250:
|
|
150748
150968
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
150749
150969
|
|
|
150750
150970
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
150751
150971
|
|
|
150752
150972
|
// load the styles
|
|
150753
|
-
var content = __webpack_require__(
|
|
150973
|
+
var content = __webpack_require__(71096);
|
|
150754
150974
|
if(content.__esModule) content = content.default;
|
|
150755
150975
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
150756
150976
|
if(content.locals) module.exports = content.locals;
|
|
150757
150977
|
// add the styles to the DOM
|
|
150758
150978
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
150759
|
-
var update = add("
|
|
150979
|
+
var update = add("18bd4384", content, true, {"sourceMap":false,"shadowMode":false});
|
|
150760
150980
|
|
|
150761
150981
|
/***/ }),
|
|
150762
150982
|
|
|
@@ -150792,19 +151012,19 @@ var update = add("5ee75cdc", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
150792
151012
|
|
|
150793
151013
|
/***/ }),
|
|
150794
151014
|
|
|
150795
|
-
/***/
|
|
151015
|
+
/***/ 47672:
|
|
150796
151016
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
150797
151017
|
|
|
150798
151018
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
150799
151019
|
|
|
150800
151020
|
// load the styles
|
|
150801
|
-
var content = __webpack_require__(
|
|
151021
|
+
var content = __webpack_require__(42918);
|
|
150802
151022
|
if(content.__esModule) content = content.default;
|
|
150803
151023
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
150804
151024
|
if(content.locals) module.exports = content.locals;
|
|
150805
151025
|
// add the styles to the DOM
|
|
150806
151026
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
150807
|
-
var update = add("
|
|
151027
|
+
var update = add("4a6f4c51", content, true, {"sourceMap":false,"shadowMode":false});
|
|
150808
151028
|
|
|
150809
151029
|
/***/ }),
|
|
150810
151030
|
|
|
@@ -150824,35 +151044,35 @@ var update = add("1e759e82", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
150824
151044
|
|
|
150825
151045
|
/***/ }),
|
|
150826
151046
|
|
|
150827
|
-
/***/
|
|
151047
|
+
/***/ 59104:
|
|
150828
151048
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
150829
151049
|
|
|
150830
151050
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
150831
151051
|
|
|
150832
151052
|
// load the styles
|
|
150833
|
-
var content = __webpack_require__(
|
|
151053
|
+
var content = __webpack_require__(23385);
|
|
150834
151054
|
if(content.__esModule) content = content.default;
|
|
150835
151055
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
150836
151056
|
if(content.locals) module.exports = content.locals;
|
|
150837
151057
|
// add the styles to the DOM
|
|
150838
151058
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
150839
|
-
var update = add("
|
|
151059
|
+
var update = add("4da45fbc", content, true, {"sourceMap":false,"shadowMode":false});
|
|
150840
151060
|
|
|
150841
151061
|
/***/ }),
|
|
150842
151062
|
|
|
150843
|
-
/***/
|
|
151063
|
+
/***/ 5135:
|
|
150844
151064
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
150845
151065
|
|
|
150846
151066
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
150847
151067
|
|
|
150848
151068
|
// load the styles
|
|
150849
|
-
var content = __webpack_require__(
|
|
151069
|
+
var content = __webpack_require__(45537);
|
|
150850
151070
|
if(content.__esModule) content = content.default;
|
|
150851
151071
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
150852
151072
|
if(content.locals) module.exports = content.locals;
|
|
150853
151073
|
// add the styles to the DOM
|
|
150854
151074
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
150855
|
-
var update = add("
|
|
151075
|
+
var update = add("b5b5afa0", content, true, {"sourceMap":false,"shadowMode":false});
|
|
150856
151076
|
|
|
150857
151077
|
/***/ }),
|
|
150858
151078
|
|
|
@@ -151592,19 +151812,19 @@ var update = add("2891253e", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
151592
151812
|
|
|
151593
151813
|
/***/ }),
|
|
151594
151814
|
|
|
151595
|
-
/***/
|
|
151815
|
+
/***/ 5707:
|
|
151596
151816
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
151597
151817
|
|
|
151598
151818
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
151599
151819
|
|
|
151600
151820
|
// load the styles
|
|
151601
|
-
var content = __webpack_require__(
|
|
151821
|
+
var content = __webpack_require__(71525);
|
|
151602
151822
|
if(content.__esModule) content = content.default;
|
|
151603
151823
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
151604
151824
|
if(content.locals) module.exports = content.locals;
|
|
151605
151825
|
// add the styles to the DOM
|
|
151606
151826
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
151607
|
-
var update = add("
|
|
151827
|
+
var update = add("88897376", content, true, {"sourceMap":false,"shadowMode":false});
|
|
151608
151828
|
|
|
151609
151829
|
/***/ }),
|
|
151610
151830
|
|
|
@@ -151672,19 +151892,19 @@ var update = add("94bf36aa", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
151672
151892
|
|
|
151673
151893
|
/***/ }),
|
|
151674
151894
|
|
|
151675
|
-
/***/
|
|
151895
|
+
/***/ 54639:
|
|
151676
151896
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
151677
151897
|
|
|
151678
151898
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
151679
151899
|
|
|
151680
151900
|
// load the styles
|
|
151681
|
-
var content = __webpack_require__(
|
|
151901
|
+
var content = __webpack_require__(72113);
|
|
151682
151902
|
if(content.__esModule) content = content.default;
|
|
151683
151903
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
151684
151904
|
if(content.locals) module.exports = content.locals;
|
|
151685
151905
|
// add the styles to the DOM
|
|
151686
151906
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
151687
|
-
var update = add("
|
|
151907
|
+
var update = add("1dd17082", content, true, {"sourceMap":false,"shadowMode":false});
|
|
151688
151908
|
|
|
151689
151909
|
/***/ }),
|
|
151690
151910
|
|
|
@@ -152040,51 +152260,51 @@ var update = add("672bfe9c", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
152040
152260
|
|
|
152041
152261
|
/***/ }),
|
|
152042
152262
|
|
|
152043
|
-
/***/
|
|
152263
|
+
/***/ 8700:
|
|
152044
152264
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
152045
152265
|
|
|
152046
152266
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
152047
152267
|
|
|
152048
152268
|
// load the styles
|
|
152049
|
-
var content = __webpack_require__(
|
|
152269
|
+
var content = __webpack_require__(20846);
|
|
152050
152270
|
if(content.__esModule) content = content.default;
|
|
152051
152271
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
152052
152272
|
if(content.locals) module.exports = content.locals;
|
|
152053
152273
|
// add the styles to the DOM
|
|
152054
152274
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
152055
|
-
var update = add("
|
|
152275
|
+
var update = add("f0a218fe", content, true, {"sourceMap":false,"shadowMode":false});
|
|
152056
152276
|
|
|
152057
152277
|
/***/ }),
|
|
152058
152278
|
|
|
152059
|
-
/***/
|
|
152279
|
+
/***/ 95200:
|
|
152060
152280
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
152061
152281
|
|
|
152062
152282
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
152063
152283
|
|
|
152064
152284
|
// load the styles
|
|
152065
|
-
var content = __webpack_require__(
|
|
152285
|
+
var content = __webpack_require__(262);
|
|
152066
152286
|
if(content.__esModule) content = content.default;
|
|
152067
152287
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
152068
152288
|
if(content.locals) module.exports = content.locals;
|
|
152069
152289
|
// add the styles to the DOM
|
|
152070
152290
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
152071
|
-
var update = add("
|
|
152291
|
+
var update = add("a107a96a", content, true, {"sourceMap":false,"shadowMode":false});
|
|
152072
152292
|
|
|
152073
152293
|
/***/ }),
|
|
152074
152294
|
|
|
152075
|
-
/***/
|
|
152295
|
+
/***/ 53267:
|
|
152076
152296
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
152077
152297
|
|
|
152078
152298
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
152079
152299
|
|
|
152080
152300
|
// load the styles
|
|
152081
|
-
var content = __webpack_require__(
|
|
152301
|
+
var content = __webpack_require__(33297);
|
|
152082
152302
|
if(content.__esModule) content = content.default;
|
|
152083
152303
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
152084
152304
|
if(content.locals) module.exports = content.locals;
|
|
152085
152305
|
// add the styles to the DOM
|
|
152086
152306
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
152087
|
-
var update = add("
|
|
152307
|
+
var update = add("71d52398", content, true, {"sourceMap":false,"shadowMode":false});
|
|
152088
152308
|
|
|
152089
152309
|
/***/ }),
|
|
152090
152310
|
|
|
@@ -152408,19 +152628,19 @@ var update = add("5610b0a5", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
152408
152628
|
|
|
152409
152629
|
/***/ }),
|
|
152410
152630
|
|
|
152411
|
-
/***/
|
|
152631
|
+
/***/ 56313:
|
|
152412
152632
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
152413
152633
|
|
|
152414
152634
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
152415
152635
|
|
|
152416
152636
|
// load the styles
|
|
152417
|
-
var content = __webpack_require__(
|
|
152637
|
+
var content = __webpack_require__(52719);
|
|
152418
152638
|
if(content.__esModule) content = content.default;
|
|
152419
152639
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
152420
152640
|
if(content.locals) module.exports = content.locals;
|
|
152421
152641
|
// add the styles to the DOM
|
|
152422
152642
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
152423
|
-
var update = add("
|
|
152643
|
+
var update = add("dcbb0a02", content, true, {"sourceMap":false,"shadowMode":false});
|
|
152424
152644
|
|
|
152425
152645
|
/***/ }),
|
|
152426
152646
|
|
|
@@ -152568,35 +152788,35 @@ var update = add("37503cf4", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
152568
152788
|
|
|
152569
152789
|
/***/ }),
|
|
152570
152790
|
|
|
152571
|
-
/***/
|
|
152791
|
+
/***/ 77399:
|
|
152572
152792
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
152573
152793
|
|
|
152574
152794
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
152575
152795
|
|
|
152576
152796
|
// load the styles
|
|
152577
|
-
var content = __webpack_require__(
|
|
152797
|
+
var content = __webpack_require__(96249);
|
|
152578
152798
|
if(content.__esModule) content = content.default;
|
|
152579
152799
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
152580
152800
|
if(content.locals) module.exports = content.locals;
|
|
152581
152801
|
// add the styles to the DOM
|
|
152582
152802
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
152583
|
-
var update = add("
|
|
152803
|
+
var update = add("5de04e20", content, true, {"sourceMap":false,"shadowMode":false});
|
|
152584
152804
|
|
|
152585
152805
|
/***/ }),
|
|
152586
152806
|
|
|
152587
|
-
/***/
|
|
152807
|
+
/***/ 1678:
|
|
152588
152808
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
152589
152809
|
|
|
152590
152810
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
152591
152811
|
|
|
152592
152812
|
// load the styles
|
|
152593
|
-
var content = __webpack_require__(
|
|
152813
|
+
var content = __webpack_require__(60944);
|
|
152594
152814
|
if(content.__esModule) content = content.default;
|
|
152595
152815
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
152596
152816
|
if(content.locals) module.exports = content.locals;
|
|
152597
152817
|
// add the styles to the DOM
|
|
152598
152818
|
var add = (__webpack_require__(99548)/* ["default"] */ .A)
|
|
152599
|
-
var update = add("
|
|
152819
|
+
var update = add("60903185", content, true, {"sourceMap":false,"shadowMode":false});
|
|
152600
152820
|
|
|
152601
152821
|
/***/ }),
|
|
152602
152822
|
|
|
@@ -159565,6 +159785,16 @@ var wfengine_install = function install(Vue) {
|
|
|
159565
159785
|
}
|
|
159566
159786
|
});
|
|
159567
159787
|
}
|
|
159788
|
+
if ($scope.wfInstance.udmNodes && $scope.wfInstance.udmNodes !== '') {
|
|
159789
|
+
var udmNodes = JSON.parse($scope.wfInstance.udmNodes);
|
|
159790
|
+
for (var _i = 0; _i < udmNodes.length; _i++) {
|
|
159791
|
+
if (udmNodes[_i].name === 'chartData') {
|
|
159792
|
+
$scope.wfInstance.passenger.chartData = udmNodes[_i];
|
|
159793
|
+
udmNodes.splice(_i--, 1);
|
|
159794
|
+
}
|
|
159795
|
+
}
|
|
159796
|
+
$scope.wfInstance.udmNodes = udmNodes;
|
|
159797
|
+
}
|
|
159568
159798
|
$scope.commonIdeaList = $scope.wfInstance.passenger.commonIdeaList;
|
|
159569
159799
|
if ($scope.commonIdeaList === undefined) $scope.commonIdeaList = [];
|
|
159570
159800
|
// $scope.commonIdeaList.unshift('---选择常用意见---')
|
|
@@ -159708,6 +159938,124 @@ var wfengine_install = function install(Vue) {
|
|
|
159708
159938
|
});
|
|
159709
159939
|
});
|
|
159710
159940
|
},
|
|
159941
|
+
setUdmCustomRoutes: function setUdmCustomRoutes($scope) {
|
|
159942
|
+
var curNode = null;
|
|
159943
|
+
var curNodeIndex = -1;
|
|
159944
|
+
var customRoutes = [];
|
|
159945
|
+
$scope.wfInstance.udmNodes.forEach(function (taskNode, index) {
|
|
159946
|
+
if (taskNode.name === $scope.curTN.tnNodeName) {
|
|
159947
|
+
curNode = taskNode;
|
|
159948
|
+
curNodeIndex = index;
|
|
159949
|
+
if ($scope.wfInstance.passenger.udmNodeUsers) {
|
|
159950
|
+
var nextRoute = null;
|
|
159951
|
+
if ($scope.wfInstance.passenger.chartData) {
|
|
159952
|
+
//从流程配置图中获取提交路径、下一节点
|
|
159953
|
+
curNode.canEndWflow = 0;
|
|
159954
|
+
var paths = $scope.wfInstance.passenger.chartData.paths;
|
|
159955
|
+
paths.forEach(function (path) {
|
|
159956
|
+
if (path.preNodeId === curNode.uuid) {
|
|
159957
|
+
var nextNodes = $scope.wfInstance.udmNodes.filter(function (udmNode) {
|
|
159958
|
+
if (udmNode.uuid === path.targetNodeId) {
|
|
159959
|
+
if (!udmNode.users) udmNode.users = [];
|
|
159960
|
+
return true;
|
|
159961
|
+
}
|
|
159962
|
+
});
|
|
159963
|
+
nextRoute = {
|
|
159964
|
+
evtMsg: '',
|
|
159965
|
+
mustNextTN: '',
|
|
159966
|
+
evtCplPercent: '0',
|
|
159967
|
+
name: path.name,
|
|
159968
|
+
fullName: path.name,
|
|
159969
|
+
taskNodes: [],
|
|
159970
|
+
type: path.pathType + '' || '0'
|
|
159971
|
+
};
|
|
159972
|
+
if (nextNodes.length > 0) {
|
|
159973
|
+
nextRoute.taskNodes.push(JSON.parse(JSON.stringify(nextNodes[0])));
|
|
159974
|
+
nextRoute.taskNodes[0].users = $scope.wfInstance.passenger.udmNodeUsers[nextNodes[0].name] || [];
|
|
159975
|
+
}
|
|
159976
|
+
customRoutes.push(nextRoute);
|
|
159977
|
+
}
|
|
159978
|
+
});
|
|
159979
|
+
}
|
|
159980
|
+
if (nextRoute === null) {
|
|
159981
|
+
//根据自定义环节数组,动态计算生成提交路径、下一节点
|
|
159982
|
+
if ($scope.wfInstance.udmNodes.length > index + 1) {
|
|
159983
|
+
curNode.canEndWflow = 0;
|
|
159984
|
+
var nextNode = $scope.wfInstance.udmNodes[index + 1];
|
|
159985
|
+
if (!nextNode.users) {
|
|
159986
|
+
nextNode.users = [];
|
|
159987
|
+
}
|
|
159988
|
+
nextRoute = {
|
|
159989
|
+
evtMsg: '',
|
|
159990
|
+
mustNextTN: '',
|
|
159991
|
+
evtCplPercent: '0',
|
|
159992
|
+
name: $scope.$tx('ecwapp.Wflowform.SubmitHandle.sendRoute', {
|
|
159993
|
+
nextNode: nextNode.name
|
|
159994
|
+
}, "\u9001".concat(nextNode.name)),
|
|
159995
|
+
fullName: $scope.$tx('ecwapp.Wflowform.SubmitHandle.sendRoute', {
|
|
159996
|
+
nextNode: nextNode.name
|
|
159997
|
+
}, "\u9001".concat(nextNode.name)),
|
|
159998
|
+
taskNodes: [JSON.parse(JSON.stringify(nextNode))],
|
|
159999
|
+
type: '0'
|
|
160000
|
+
};
|
|
160001
|
+
nextRoute.taskNodes[0].users = $scope.wfInstance.passenger.udmNodeUsers[nextNode.name] || [];
|
|
160002
|
+
customRoutes.push(nextRoute);
|
|
160003
|
+
} else {
|
|
160004
|
+
curNode.canEndWflow = 1;
|
|
160005
|
+
}
|
|
160006
|
+
}
|
|
160007
|
+
}
|
|
160008
|
+
}
|
|
160009
|
+
if (index === 0) {
|
|
160010
|
+
taskNode.icon = 'el-icon-video-play';
|
|
160011
|
+
} else if (index + 1 === $scope.wfInstance.udmNodes.length) {
|
|
160012
|
+
taskNode.icon = 'el-icon-finished';
|
|
160013
|
+
} else {
|
|
160014
|
+
taskNode.icon = 'el-icon-edit-outline';
|
|
160015
|
+
}
|
|
160016
|
+
});
|
|
160017
|
+
if (curNode == null) {
|
|
160018
|
+
$scope.udmNode = null;
|
|
160019
|
+
$scope.wfInstance.udmNodes = null;
|
|
160020
|
+
return customRoutes;
|
|
160021
|
+
}
|
|
160022
|
+
if (curNode.canEndWflow !== 0) {
|
|
160023
|
+
var endRoute = {
|
|
160024
|
+
evtMsg: '',
|
|
160025
|
+
mustNextTN: '',
|
|
160026
|
+
evtCplPercent: '0',
|
|
160027
|
+
name: $scope.$tx('ecwapp.Wflowform.SubmitHandle.endProcessing', '结束处理'),
|
|
160028
|
+
fullName: $scope.$tx('ecwapp.Wflowform.SubmitHandle.endProcessing', '结束处理'),
|
|
160029
|
+
taskNodes: [],
|
|
160030
|
+
type: '4'
|
|
160031
|
+
};
|
|
160032
|
+
customRoutes.push(endRoute);
|
|
160033
|
+
}
|
|
160034
|
+
if (curNode.returnHistoryTN !== 0 && curNodeIndex > 0 && $scope.wfInstance.passenger.udmNodeUsers) {
|
|
160035
|
+
var backRoute = {
|
|
160036
|
+
evtMsg: '',
|
|
160037
|
+
mustNextTN: '',
|
|
160038
|
+
evtCplPercent: '0',
|
|
160039
|
+
name: $scope.$tx('ecwapp.Wflowform.SubmitHandle.sendBack', '退回'),
|
|
160040
|
+
taskNodes: [],
|
|
160041
|
+
type: '3'
|
|
160042
|
+
};
|
|
160043
|
+
if (curNode.returnHistoryTN == 2) {
|
|
160044
|
+
//退回到发起节点
|
|
160045
|
+
backRoute.name = '退回发起人';
|
|
160046
|
+
backRoute.taskNodes.push(JSON.parse(JSON.stringify($scope.wfInstance.udmNodes[0])));
|
|
160047
|
+
backRoute.taskNodes[0].users = $scope.wfInstance.passenger.udmNodeUsers.returnHistoryTNUser;
|
|
160048
|
+
} else {
|
|
160049
|
+
//退回到上一节点
|
|
160050
|
+
backRoute.name = '退回上一节点';
|
|
160051
|
+
backRoute.taskNodes.push(JSON.parse(JSON.stringify($scope.wfInstance.udmNodes[curNodeIndex - 1])));
|
|
160052
|
+
backRoute.taskNodes[0].users = $scope.wfInstance.passenger.udmNodeUsers.returnHistoryTNUser;
|
|
160053
|
+
}
|
|
160054
|
+
backRoute.fullName = backRoute.name;
|
|
160055
|
+
customRoutes.push(backRoute);
|
|
160056
|
+
}
|
|
160057
|
+
return customRoutes;
|
|
160058
|
+
},
|
|
159711
160059
|
setCommandBar: function setCommandBar($scope, commandBar) {
|
|
159712
160060
|
commandBar.forEach(function (btn) {
|
|
159713
160061
|
if (btn.btnAlign === 2) btn.btnAlign = 1;
|
|
@@ -159850,8 +160198,12 @@ var wfengine_install = function install(Vue) {
|
|
|
159850
160198
|
params.copyWfNodeUser = 1;
|
|
159851
160199
|
params.asyncLoading = 1;
|
|
159852
160200
|
params.submitMode = window.submitMode;
|
|
160201
|
+
var wfInstanceVo = JSON.parse(JSON.stringify(wfInstance));
|
|
160202
|
+
if (wfInstanceVo.udmNodes && wfInstanceVo.passenger.chartData) {
|
|
160203
|
+
wfInstanceVo.udmNodes.push(wfInstanceVo.passenger.chartData);
|
|
160204
|
+
}
|
|
159853
160205
|
var saveData = {
|
|
159854
|
-
wfInstance: JSON.stringify(
|
|
160206
|
+
wfInstance: JSON.stringify(wfInstanceVo),
|
|
159855
160207
|
curTN: JSON.stringify($scope.curTN)
|
|
159856
160208
|
};
|
|
159857
160209
|
$scope.$http({
|
|
@@ -159930,13 +160282,17 @@ var wfengine_install = function install(Vue) {
|
|
|
159930
160282
|
$scope.vobak = JSON.parse(JSON.stringify($scope.vo));
|
|
159931
160283
|
$scope.wfJsonDatabak = JSON.parse(JSON.stringify($scope.wfJsonData || {}));
|
|
159932
160284
|
$scope.wfInstancebak = JSON.parse(JSON.stringify($scope.wfInstance));
|
|
159933
|
-
$scope.wfInstance.title = $scope.vo.flSubject || $scope.wfInstance.wfName + '-' + $scope.wfInstance.creator + '-' + $scope.wfInstance.startTime;
|
|
159934
160285
|
if ($scope.vo.status === -1) $scope.vo.status = 0;
|
|
159935
160286
|
$scope.wfInstance.passenger.busiData = $scope.vo;
|
|
159936
160287
|
if ($scope.wfInstance.udmNodes && $scope.wfInstance.udmNodes !== '') {
|
|
160288
|
+
$scope.wfInstance.title = $scope.vo.flSubject || $scope.vo.flFormName + '-' + $scope.wfInstance.creator + '-' + $scope.wfInstance.startTime;
|
|
159937
160289
|
$scope.wfInstance.passenger.wfName = $scope.vo.flFormName;
|
|
160290
|
+
if ($scope.wfInstance.passenger.chartData) {
|
|
160291
|
+
$scope.wfInstance.udmNodes.push($scope.wfInstance.passenger.chartData);
|
|
160292
|
+
}
|
|
159938
160293
|
} else {
|
|
159939
160294
|
$scope.wfInstance.udmNodes = '';
|
|
160295
|
+
$scope.wfInstance.title = $scope.vo.flSubject || $scope.wfInstance.wfName + '-' + $scope.wfInstance.creator + '-' + $scope.wfInstance.startTime;
|
|
159940
160296
|
}
|
|
159941
160297
|
|
|
159942
160298
|
// 数据封装
|
|
@@ -161839,8 +162195,8 @@ var component = (0,componentNormalizer/* default */.A)(
|
|
|
161839
162195
|
)
|
|
161840
162196
|
|
|
161841
162197
|
/* harmony default export */ var Basicform_src = (component.exports);
|
|
161842
|
-
;// 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/Basicform/src/DynamicForm.vue?vue&type=template&id=
|
|
161843
|
-
var
|
|
162198
|
+
;// 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/Basicform/src/DynamicForm.vue?vue&type=template&id=1a7d28ac
|
|
162199
|
+
var DynamicFormvue_type_template_id_1a7d28ac_render = function render() {
|
|
161844
162200
|
var _vm = this,
|
|
161845
162201
|
_c = _vm._self._c;
|
|
161846
162202
|
return _c('el-form', {
|
|
@@ -161957,10 +162313,10 @@ var DynamicFormvue_type_template_id_2fbe6fe7_render = function render() {
|
|
|
161957
162313
|
})], 2) : _vm._e()];
|
|
161958
162314
|
})], 2)])])])]);
|
|
161959
162315
|
};
|
|
161960
|
-
var
|
|
162316
|
+
var DynamicFormvue_type_template_id_1a7d28ac_staticRenderFns = [];
|
|
161961
162317
|
|
|
161962
|
-
;// 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/Basicform/src/FormItem.vue?vue&type=template&id=
|
|
161963
|
-
var
|
|
162318
|
+
;// 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/Basicform/src/FormItem.vue?vue&type=template&id=109a904c&scoped=true
|
|
162319
|
+
var FormItemvue_type_template_id_109a904c_scoped_true_render = function render() {
|
|
161964
162320
|
var _vm = this,
|
|
161965
162321
|
_c = _vm._self._c;
|
|
161966
162322
|
return _c('div', {
|
|
@@ -162500,29 +162856,6 @@ var FormItemvue_type_template_id_9d54b740_scoped_true_render = function render()
|
|
|
162500
162856
|
},
|
|
162501
162857
|
expression: "formItem.value"
|
|
162502
162858
|
}
|
|
162503
|
-
}) : _vm.formItem.elementType === 'colorPicker' ? _c('el-color-picker', {
|
|
162504
|
-
staticClass: "date_color_inner",
|
|
162505
|
-
staticStyle: {
|
|
162506
|
-
"width": "auto"
|
|
162507
|
-
},
|
|
162508
|
-
attrs: {
|
|
162509
|
-
"show-alpha": _vm.formItem.showAlpha ? true : false,
|
|
162510
|
-
"name": _vm.formItem.propName,
|
|
162511
|
-
"placeholder": _vm.formItem.emptyMessage,
|
|
162512
|
-
"predefine": _vm.formItem.predefineColors,
|
|
162513
|
-
"clearable": _vm.formItem.clearable,
|
|
162514
|
-
"color-format": _vm.formItem.colorFormat
|
|
162515
|
-
},
|
|
162516
|
-
on: {
|
|
162517
|
-
"change": _vm.valueChange
|
|
162518
|
-
},
|
|
162519
|
-
model: {
|
|
162520
|
-
value: _vm.formItem.value,
|
|
162521
|
-
callback: function callback($$v) {
|
|
162522
|
-
_vm.$set(_vm.formItem, "value", $$v);
|
|
162523
|
-
},
|
|
162524
|
-
expression: "formItem.value"
|
|
162525
|
-
}
|
|
162526
162859
|
}) : _vm._e()], 2), _vm.formItem.showAmountWords > 0 && _vm.formItem.amountWordShowPosition === 'amountWordPosition' ? _c('span', {
|
|
162527
162860
|
staticStyle: {
|
|
162528
162861
|
"padding-left": "10px"
|
|
@@ -162532,7 +162865,7 @@ var FormItemvue_type_template_id_9d54b740_scoped_true_render = function render()
|
|
|
162532
162865
|
}])
|
|
162533
162866
|
})], 1);
|
|
162534
162867
|
};
|
|
162535
|
-
var
|
|
162868
|
+
var FormItemvue_type_template_id_109a904c_scoped_true_staticRenderFns = [];
|
|
162536
162869
|
|
|
162537
162870
|
;// CONCATENATED MODULE: ./src/global/filters/index.js
|
|
162538
162871
|
|
|
@@ -162713,7 +163046,7 @@ var FormItemvue_type_script_lang_js_moment = __webpack_require__(95093);
|
|
|
162713
163046
|
nValue = newValue[propNames[0]][propNames[1]];
|
|
162714
163047
|
}
|
|
162715
163048
|
if (nValue === null || nValue === undefined) return;
|
|
162716
|
-
if (this.formItem.elementType === 'input' || this.formItem.elementType === 'textarea' || this.formItem.elementType === 'date' || this.formItem.elementType === 'datetime'
|
|
163049
|
+
if (this.formItem.elementType === 'input' || this.formItem.elementType === 'textarea' || this.formItem.elementType === 'date' || this.formItem.elementType === 'datetime') {
|
|
162717
163050
|
var formatter = null;
|
|
162718
163051
|
if (this.formItem.formatter) {
|
|
162719
163052
|
formatter = this.formItem.formatter.replace(/\r\n/g, '').replace(/\n/g, '').replace(/\r/g, '');
|
|
@@ -163620,13 +163953,13 @@ var FormItemvue_type_script_lang_js_moment = __webpack_require__(95093);
|
|
|
163620
163953
|
});
|
|
163621
163954
|
;// CONCATENATED MODULE: ./packages/ecwapp/Basicform/src/FormItem.vue?vue&type=script&lang=js
|
|
163622
163955
|
/* harmony default export */ var src_FormItemvue_type_script_lang_js = (FormItemvue_type_script_lang_js);
|
|
163623
|
-
// 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/Basicform/src/FormItem.vue?vue&type=style&index=0&id=
|
|
163624
|
-
var
|
|
163625
|
-
;// CONCATENATED MODULE: ./packages/ecwapp/Basicform/src/FormItem.vue?vue&type=style&index=0&id=
|
|
163956
|
+
// 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/Basicform/src/FormItem.vue?vue&type=style&index=0&id=109a904c&prod&lang=scss
|
|
163957
|
+
var FormItemvue_type_style_index_0_id_109a904c_prod_lang_scss = __webpack_require__(41946);
|
|
163958
|
+
;// CONCATENATED MODULE: ./packages/ecwapp/Basicform/src/FormItem.vue?vue&type=style&index=0&id=109a904c&prod&lang=scss
|
|
163626
163959
|
|
|
163627
|
-
// 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/Basicform/src/FormItem.vue?vue&type=style&index=1&id=
|
|
163628
|
-
var
|
|
163629
|
-
;// CONCATENATED MODULE: ./packages/ecwapp/Basicform/src/FormItem.vue?vue&type=style&index=1&id=
|
|
163960
|
+
// 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/Basicform/src/FormItem.vue?vue&type=style&index=1&id=109a904c&prod&lang=scss&scoped=true
|
|
163961
|
+
var FormItemvue_type_style_index_1_id_109a904c_prod_lang_scss_scoped_true = __webpack_require__(99462);
|
|
163962
|
+
;// CONCATENATED MODULE: ./packages/ecwapp/Basicform/src/FormItem.vue?vue&type=style&index=1&id=109a904c&prod&lang=scss&scoped=true
|
|
163630
163963
|
|
|
163631
163964
|
;// CONCATENATED MODULE: ./packages/ecwapp/Basicform/src/FormItem.vue
|
|
163632
163965
|
|
|
@@ -163640,11 +163973,11 @@ var FormItemvue_type_style_index_1_id_9d54b740_prod_lang_scss_scoped_true = __we
|
|
|
163640
163973
|
|
|
163641
163974
|
var FormItem_component = (0,componentNormalizer/* default */.A)(
|
|
163642
163975
|
src_FormItemvue_type_script_lang_js,
|
|
163643
|
-
|
|
163644
|
-
|
|
163976
|
+
FormItemvue_type_template_id_109a904c_scoped_true_render,
|
|
163977
|
+
FormItemvue_type_template_id_109a904c_scoped_true_staticRenderFns,
|
|
163645
163978
|
false,
|
|
163646
163979
|
null,
|
|
163647
|
-
"
|
|
163980
|
+
"109a904c",
|
|
163648
163981
|
null
|
|
163649
163982
|
|
|
163650
163983
|
)
|
|
@@ -163701,7 +164034,6 @@ var FormItem_component = (0,componentNormalizer/* default */.A)(
|
|
|
163701
164034
|
this.$nextTick(function () {
|
|
163702
164035
|
_this2.tbRows = _this2.getTbRows();
|
|
163703
164036
|
_this2.rowMaxFieldCount = _this2.getRowMaxFieldCount();
|
|
163704
|
-
console.log(_this2.tbRows, _this2.rowMaxFieldCount, 'this.rowMaxFieldCount');
|
|
163705
164037
|
});
|
|
163706
164038
|
},
|
|
163707
164039
|
immediate: true
|
|
@@ -163835,8 +164167,8 @@ var FormItem_component = (0,componentNormalizer/* default */.A)(
|
|
|
163835
164167
|
;
|
|
163836
164168
|
var DynamicForm_component = (0,componentNormalizer/* default */.A)(
|
|
163837
164169
|
src_DynamicFormvue_type_script_lang_js,
|
|
163838
|
-
|
|
163839
|
-
|
|
164170
|
+
DynamicFormvue_type_template_id_1a7d28ac_render,
|
|
164171
|
+
DynamicFormvue_type_template_id_1a7d28ac_staticRenderFns,
|
|
163840
164172
|
false,
|
|
163841
164173
|
null,
|
|
163842
164174
|
null,
|
|
@@ -181711,8 +182043,8 @@ var BodyFile_component = (0,componentNormalizer/* default */.A)(
|
|
|
181711
182043
|
)
|
|
181712
182044
|
|
|
181713
182045
|
/* harmony default export */ var BodyFile = (BodyFile_component.exports);
|
|
181714
|
-
;// 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/CommandBar.vue?vue&type=template&id=
|
|
181715
|
-
var
|
|
182046
|
+
;// 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/CommandBar.vue?vue&type=template&id=0f1489c8&scoped=true
|
|
182047
|
+
var CommandBarvue_type_template_id_0f1489c8_scoped_true_render = function render() {
|
|
181716
182048
|
var _vm = this,
|
|
181717
182049
|
_c = _vm._self._c;
|
|
181718
182050
|
return _c('div', {
|
|
@@ -181875,7 +182207,7 @@ var CommandBarvue_type_template_id_077cfe88_scoped_true_render = function render
|
|
|
181875
182207
|
}]
|
|
181876
182208
|
}, [_vm._v(_vm._s(_vm.submitBtn.btnName))])], 1)], 1) : _vm._e()], 2)]);
|
|
181877
182209
|
};
|
|
181878
|
-
var
|
|
182210
|
+
var CommandBarvue_type_template_id_0f1489c8_scoped_true_staticRenderFns = [];
|
|
181879
182211
|
|
|
181880
182212
|
;// 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/CommandBar.vue?vue&type=script&lang=js
|
|
181881
182213
|
function CommandBarvue_type_script_lang_js_toConsumableArray(r) { return CommandBarvue_type_script_lang_js_arrayWithoutHoles(r) || CommandBarvue_type_script_lang_js_iterableToArray(r) || CommandBarvue_type_script_lang_js_unsupportedIterableToArray(r) || CommandBarvue_type_script_lang_js_nonIterableSpread(); }
|
|
@@ -181944,7 +182276,7 @@ function CommandBarvue_type_script_lang_js_arrayLikeToArray(r, a) { (null == a |
|
|
|
181944
182276
|
if (document.querySelector('.formTapBtn')) {
|
|
181945
182277
|
hiddenBtnNames.push('流程跟踪');
|
|
181946
182278
|
}
|
|
181947
|
-
var allShowBtnNames = ['关闭', '保存', '编辑正文', '修改正文', '填写文号', '清稿', '套红', '盖章', '签章', '流程管控', '撤销授权', '收回文件', '签收', '签收文件', '已阅', '增加协办人', '驳回'];
|
|
182279
|
+
var allShowBtnNames = ['关闭', '保存', '编辑正文', '修改正文', '填写文号', '清稿', '套红', '盖章', '签章', '流程管控', '流程自测', '撤销授权', '收回文件', '签收', '签收文件', '已阅', '增加协办人', '驳回'];
|
|
181948
182280
|
if (this.showBtnNames && this.showBtnNames.length > 0) {
|
|
181949
182281
|
this.showBtnNames.forEach(function (btn) {
|
|
181950
182282
|
if (allShowBtnNames.indexOf(btn) === -1) {
|
|
@@ -182052,14 +182384,17 @@ function CommandBarvue_type_script_lang_js_arrayLikeToArray(r, a) { (null == a |
|
|
|
182052
182384
|
},
|
|
182053
182385
|
btnReturnHistoryClick: function btnReturnHistoryClick() {
|
|
182054
182386
|
this.$bus.emit('btnReturnHistoryClick');
|
|
182387
|
+
},
|
|
182388
|
+
btnOpenWfTesterClick: function btnOpenWfTesterClick() {
|
|
182389
|
+
this.$bus.emit('btnOpenWfTesterClick');
|
|
182055
182390
|
}
|
|
182056
182391
|
}
|
|
182057
182392
|
});
|
|
182058
182393
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/CommandBar.vue?vue&type=script&lang=js
|
|
182059
182394
|
/* harmony default export */ var src_CommandBarvue_type_script_lang_js = (CommandBarvue_type_script_lang_js);
|
|
182060
|
-
// 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/CommandBar.vue?vue&type=style&index=0&id=
|
|
182061
|
-
var
|
|
182062
|
-
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/CommandBar.vue?vue&type=style&index=0&id=
|
|
182395
|
+
// 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/CommandBar.vue?vue&type=style&index=0&id=0f1489c8&prod&scoped=true&lang=scss
|
|
182396
|
+
var CommandBarvue_type_style_index_0_id_0f1489c8_prod_scoped_true_lang_scss = __webpack_require__(20991);
|
|
182397
|
+
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/CommandBar.vue?vue&type=style&index=0&id=0f1489c8&prod&scoped=true&lang=scss
|
|
182063
182398
|
|
|
182064
182399
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/CommandBar.vue
|
|
182065
182400
|
|
|
@@ -182072,11 +182407,11 @@ var CommandBarvue_type_style_index_0_id_077cfe88_prod_scoped_true_lang_scss = __
|
|
|
182072
182407
|
|
|
182073
182408
|
var CommandBar_component = (0,componentNormalizer/* default */.A)(
|
|
182074
182409
|
src_CommandBarvue_type_script_lang_js,
|
|
182075
|
-
|
|
182076
|
-
|
|
182410
|
+
CommandBarvue_type_template_id_0f1489c8_scoped_true_render,
|
|
182411
|
+
CommandBarvue_type_template_id_0f1489c8_scoped_true_staticRenderFns,
|
|
182077
182412
|
false,
|
|
182078
182413
|
null,
|
|
182079
|
-
"
|
|
182414
|
+
"0f1489c8",
|
|
182080
182415
|
null
|
|
182081
182416
|
|
|
182082
182417
|
)
|
|
@@ -185270,8 +185605,8 @@ var WriteToReadIdea_component = (0,componentNormalizer/* default */.A)(
|
|
|
185270
185605
|
)
|
|
185271
185606
|
|
|
185272
185607
|
/* harmony default export */ var WriteToReadIdea = (WriteToReadIdea_component.exports);
|
|
185273
|
-
;// 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/ModifyWflogSubmitFile.vue?vue&type=template&id=
|
|
185274
|
-
var
|
|
185608
|
+
;// 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/ModifyWflogSubmitFile.vue?vue&type=template&id=12571ea7&scoped=true
|
|
185609
|
+
var ModifyWflogSubmitFilevue_type_template_id_12571ea7_scoped_true_render = function render() {
|
|
185275
185610
|
var _vm = this,
|
|
185276
185611
|
_c = _vm._self._c;
|
|
185277
185612
|
return _vm.dialogFormVisible ? _c('el-dialog', {
|
|
@@ -185335,7 +185670,7 @@ var ModifyWflogSubmitFilevue_type_template_id_6d39c95e_scoped_true_render = func
|
|
|
185335
185670
|
staticClass: "el-table__cell tdlbl tdw17"
|
|
185336
185671
|
}, [_vm._v("文件类型")]), _c('td', {
|
|
185337
185672
|
staticClass: "el-table__cell tdcont tdw33"
|
|
185338
|
-
}, [_vm._v(_vm._s(_vm.wfInstance.wfName))]), _c('td', {
|
|
185673
|
+
}, [_vm._v(_vm._s(_vm.wfInstance.wfAlias || _vm.wfInstance.wfName))]), _c('td', {
|
|
185339
185674
|
directives: [{
|
|
185340
185675
|
name: "text-lbl",
|
|
185341
185676
|
rawName: "v-text-lbl",
|
|
@@ -185394,7 +185729,7 @@ var ModifyWflogSubmitFilevue_type_template_id_6d39c95e_scoped_true_render = func
|
|
|
185394
185729
|
}
|
|
185395
185730
|
}, [_vm._v("确 定")])], 1) : _vm._e(), _c('SelectOuterDeputy')], 1) : _vm._e();
|
|
185396
185731
|
};
|
|
185397
|
-
var
|
|
185732
|
+
var ModifyWflogSubmitFilevue_type_template_id_12571ea7_scoped_true_staticRenderFns = [];
|
|
185398
185733
|
|
|
185399
185734
|
;// 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/ModifyWflogSubmitFile.vue?vue&type=script&lang=js
|
|
185400
185735
|
function ModifyWflogSubmitFilevue_type_script_lang_js_typeof(o) { "@babel/helpers - typeof"; return ModifyWflogSubmitFilevue_type_script_lang_js_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; }, ModifyWflogSubmitFilevue_type_script_lang_js_typeof(o); }
|
|
@@ -185624,9 +185959,9 @@ function ModifyWflogSubmitFilevue_type_script_lang_js_asyncToGenerator(n) { retu
|
|
|
185624
185959
|
});
|
|
185625
185960
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/ModifyWflogSubmitFile.vue?vue&type=script&lang=js
|
|
185626
185961
|
/* harmony default export */ var src_ModifyWflogSubmitFilevue_type_script_lang_js = (ModifyWflogSubmitFilevue_type_script_lang_js);
|
|
185627
|
-
// 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/ModifyWflogSubmitFile.vue?vue&type=style&index=0&id=
|
|
185628
|
-
var
|
|
185629
|
-
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/ModifyWflogSubmitFile.vue?vue&type=style&index=0&id=
|
|
185962
|
+
// 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/ModifyWflogSubmitFile.vue?vue&type=style&index=0&id=12571ea7&prod&scoped=true&lang=scss
|
|
185963
|
+
var ModifyWflogSubmitFilevue_type_style_index_0_id_12571ea7_prod_scoped_true_lang_scss = __webpack_require__(9250);
|
|
185964
|
+
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/ModifyWflogSubmitFile.vue?vue&type=style&index=0&id=12571ea7&prod&scoped=true&lang=scss
|
|
185630
185965
|
|
|
185631
185966
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/ModifyWflogSubmitFile.vue
|
|
185632
185967
|
|
|
@@ -185639,11 +185974,11 @@ var ModifyWflogSubmitFilevue_type_style_index_0_id_6d39c95e_prod_scoped_true_lan
|
|
|
185639
185974
|
|
|
185640
185975
|
var ModifyWflogSubmitFile_component = (0,componentNormalizer/* default */.A)(
|
|
185641
185976
|
src_ModifyWflogSubmitFilevue_type_script_lang_js,
|
|
185642
|
-
|
|
185643
|
-
|
|
185977
|
+
ModifyWflogSubmitFilevue_type_template_id_12571ea7_scoped_true_render,
|
|
185978
|
+
ModifyWflogSubmitFilevue_type_template_id_12571ea7_scoped_true_staticRenderFns,
|
|
185644
185979
|
false,
|
|
185645
185980
|
null,
|
|
185646
|
-
"
|
|
185981
|
+
"12571ea7",
|
|
185647
185982
|
null
|
|
185648
185983
|
|
|
185649
185984
|
)
|
|
@@ -186732,8 +187067,8 @@ var SelectOuterDeputy_component = (0,componentNormalizer/* default */.A)(
|
|
|
186732
187067
|
)
|
|
186733
187068
|
|
|
186734
187069
|
/* harmony default export */ var SelectOuterDeputy = (SelectOuterDeputy_component.exports);
|
|
186735
|
-
;// 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/SubmitHandle.vue?vue&type=template&id=
|
|
186736
|
-
var
|
|
187070
|
+
;// 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/SubmitHandle.vue?vue&type=template&id=2df2737a&scoped=true
|
|
187071
|
+
var SubmitHandlevue_type_template_id_2df2737a_scoped_true_render = function render() {
|
|
186737
187072
|
var _vm = this,
|
|
186738
187073
|
_c = _vm._self._c;
|
|
186739
187074
|
return _c('div', {
|
|
@@ -186749,7 +187084,7 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
186749
187084
|
value: 'SubmitHandle.defineSteps',
|
|
186750
187085
|
expression: "'SubmitHandle.defineSteps'"
|
|
186751
187086
|
}]
|
|
186752
|
-
}, [_vm._v("
|
|
187087
|
+
}, [_vm._v("流程配置")])]) : _vm._e(), _vm.isUdmNodes && _vm.wfInstance.udmNodes && _vm.curTN.modifyUdmNode !== 0 && (_vm.wfInstance.status < 1 || _vm.curTN.tnNodeID != null && _vm.curTN.userAccount == _vm.wfInstance.creatorAccount) ? _c('div', {
|
|
186753
187088
|
staticClass: "el-table el-table--fit el-table--border",
|
|
186754
187089
|
staticStyle: {
|
|
186755
187090
|
"margin-bottom": "20px"
|
|
@@ -186790,10 +187125,10 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
186790
187125
|
}
|
|
186791
187126
|
}, [_c('el-button', {
|
|
186792
187127
|
directives: [{
|
|
186793
|
-
name: "
|
|
186794
|
-
rawName: "v-
|
|
186795
|
-
value: '
|
|
186796
|
-
expression: "'
|
|
187128
|
+
name: "text-lbl",
|
|
187129
|
+
rawName: "v-text-lbl",
|
|
187130
|
+
value: 'SubmitHandle.defineSteps',
|
|
187131
|
+
expression: "'SubmitHandle.defineSteps'"
|
|
186797
187132
|
}],
|
|
186798
187133
|
staticStyle: {
|
|
186799
187134
|
"border": "0px"
|
|
@@ -186804,10 +187139,10 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
186804
187139
|
},
|
|
186805
187140
|
nativeOn: {
|
|
186806
187141
|
"click": function click($event) {
|
|
186807
|
-
return _vm.
|
|
187142
|
+
return _vm.showFlowTrace.apply(null, arguments);
|
|
186808
187143
|
}
|
|
186809
187144
|
}
|
|
186810
|
-
}, [_vm._v("
|
|
187145
|
+
}, [_vm._v("流程配置")])], 1)]), _vm._l(_vm.wfInstance.udmNodes, function (taskNode, index) {
|
|
186811
187146
|
return _c('tr', {
|
|
186812
187147
|
key: index
|
|
186813
187148
|
}, [_c('td', {
|
|
@@ -186823,7 +187158,7 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
186823
187158
|
"width": "90px",
|
|
186824
187159
|
"text-align": "center"
|
|
186825
187160
|
}
|
|
186826
|
-
}, [_c('el-link', {
|
|
187161
|
+
}, [_vm.wfInstance.status < 1 ? _c('el-link', {
|
|
186827
187162
|
staticStyle: {
|
|
186828
187163
|
"font-size": "16px !important",
|
|
186829
187164
|
"display": "contents"
|
|
@@ -186840,25 +187175,7 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
186840
187175
|
return _vm.editUdmNode(taskNode);
|
|
186841
187176
|
}
|
|
186842
187177
|
}
|
|
186843
|
-
})
|
|
186844
|
-
staticStyle: {
|
|
186845
|
-
"font-size": "16px !important",
|
|
186846
|
-
"display": "contents"
|
|
186847
|
-
},
|
|
186848
|
-
attrs: {
|
|
186849
|
-
"underline": false,
|
|
186850
|
-
"type": "danger",
|
|
186851
|
-
"disabled": taskNode.startNode,
|
|
186852
|
-
"icon": "el-icon-close",
|
|
186853
|
-
"size": "mini",
|
|
186854
|
-
"title": _vm.$tx('pageBtns.del', '删除')
|
|
186855
|
-
},
|
|
186856
|
-
nativeOn: {
|
|
186857
|
-
"click": function click($event) {
|
|
186858
|
-
return _vm.delUdmNode(index);
|
|
186859
|
-
}
|
|
186860
|
-
}
|
|
186861
|
-
})], 1)]);
|
|
187178
|
+
}) : _vm._e()], 1)]);
|
|
186862
187179
|
})], 2)])])]) : _vm._e(), _vm.isUdmNodes && _vm.wfInstance.udmNodes && _vm.curTN.modifyUdmNode !== 0 && (_vm.wfInstance.status < 1 || _vm.curTN.tnNodeID != null && _vm.curTN.userAccount == _vm.wfInstance.creatorAccount) ? _c('div', {
|
|
186863
187180
|
staticClass: "area-title"
|
|
186864
187181
|
}, [_c('i', {
|
|
@@ -187298,13 +187615,15 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
187298
187615
|
value: 'SubmitHandle.defineSteps',
|
|
187299
187616
|
expression: "'SubmitHandle.defineSteps'"
|
|
187300
187617
|
}]
|
|
187301
|
-
}, [_vm._v("
|
|
187618
|
+
}, [_vm._v("流程环节")])], 1), _c('div', {
|
|
187302
187619
|
staticClass: "sidebar-area-content"
|
|
187303
187620
|
}, [_c('el-timeline', {
|
|
187304
187621
|
attrs: {
|
|
187305
187622
|
"reverse": _vm.reverse
|
|
187306
187623
|
}
|
|
187307
|
-
}, _vm._l(_vm.wfInstance.udmNodes
|
|
187624
|
+
}, _vm._l(_vm.wfInstance.udmNodes.filter(function (un) {
|
|
187625
|
+
return un.name != 'chartData';
|
|
187626
|
+
}), function (taskNode, index) {
|
|
187308
187627
|
return _c('el-timeline-item', {
|
|
187309
187628
|
key: index,
|
|
187310
187629
|
attrs: {
|
|
@@ -187312,7 +187631,11 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
187312
187631
|
"icon": taskNode.icon,
|
|
187313
187632
|
"timestamp": '环节处理人:' + (taskNode.selectRule || taskNode.userNames || taskNode.orgNames || taskNode.workgroupNames || taskNode.jobPositionNames || '')
|
|
187314
187633
|
}
|
|
187315
|
-
}, [_c('span',
|
|
187634
|
+
}, [_c('span', {
|
|
187635
|
+
staticStyle: {
|
|
187636
|
+
"margin-bottom": "5px"
|
|
187637
|
+
}
|
|
187638
|
+
}, [_vm._v(" 流程环节: "), _c('b', [_vm._v(_vm._s(taskNode.name))])]), _vm.wfInstance.status < 1 ? _c('el-link', {
|
|
187316
187639
|
staticStyle: {
|
|
187317
187640
|
"font-size": "16px !important",
|
|
187318
187641
|
"display": "contents"
|
|
@@ -187329,25 +187652,7 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
187329
187652
|
return _vm.editUdmNode(taskNode);
|
|
187330
187653
|
}
|
|
187331
187654
|
}
|
|
187332
|
-
})
|
|
187333
|
-
staticStyle: {
|
|
187334
|
-
"font-size": "16px !important",
|
|
187335
|
-
"display": "contents"
|
|
187336
|
-
},
|
|
187337
|
-
attrs: {
|
|
187338
|
-
"underline": false,
|
|
187339
|
-
"type": "danger",
|
|
187340
|
-
"disabled": taskNode.startNode,
|
|
187341
|
-
"icon": "el-icon-close",
|
|
187342
|
-
"size": "mini",
|
|
187343
|
-
"title": _vm.$tx('pageBtns.del', '删除')
|
|
187344
|
-
},
|
|
187345
|
-
nativeOn: {
|
|
187346
|
-
"click": function click($event) {
|
|
187347
|
-
return _vm.delUdmNode(index);
|
|
187348
|
-
}
|
|
187349
|
-
}
|
|
187350
|
-
})], 1);
|
|
187655
|
+
}) : _vm._e()], 1);
|
|
187351
187656
|
}), 1), _c('div', {
|
|
187352
187657
|
staticStyle: {
|
|
187353
187658
|
"padding-right": "10px",
|
|
@@ -187356,10 +187661,10 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
187356
187661
|
}
|
|
187357
187662
|
}, [_c('el-button', {
|
|
187358
187663
|
directives: [{
|
|
187359
|
-
name: "
|
|
187360
|
-
rawName: "v-
|
|
187361
|
-
value: '
|
|
187362
|
-
expression: "'
|
|
187664
|
+
name: "text-lbl",
|
|
187665
|
+
rawName: "v-text-lbl",
|
|
187666
|
+
value: 'SubmitHandle.defineSteps',
|
|
187667
|
+
expression: "'SubmitHandle.defineSteps'"
|
|
187363
187668
|
}],
|
|
187364
187669
|
staticStyle: {
|
|
187365
187670
|
"width": "60%",
|
|
@@ -187371,10 +187676,10 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
187371
187676
|
},
|
|
187372
187677
|
nativeOn: {
|
|
187373
187678
|
"click": function click($event) {
|
|
187374
|
-
return _vm.
|
|
187679
|
+
return _vm.showFlowTrace.apply(null, arguments);
|
|
187375
187680
|
}
|
|
187376
187681
|
}
|
|
187377
|
-
}, [_vm._v("
|
|
187682
|
+
}, [_vm._v("流程配置")])], 1)], 1)]) : _vm._e(), _vm.wfJsonData.routes && _vm.wfJsonData.routes.length > 0 ? _c('div', {
|
|
187378
187683
|
staticClass: "submit-route-container"
|
|
187379
187684
|
}, [_c('div', {
|
|
187380
187685
|
staticClass: "sidebar-area"
|
|
@@ -187835,10 +188140,10 @@ var SubmitHandlevue_type_template_id_25bc8e5f_scoped_true_render = function rend
|
|
|
187835
188140
|
}
|
|
187836
188141
|
}) : _vm._e()], 1);
|
|
187837
188142
|
};
|
|
187838
|
-
var
|
|
188143
|
+
var SubmitHandlevue_type_template_id_2df2737a_scoped_true_staticRenderFns = [];
|
|
187839
188144
|
|
|
187840
|
-
;// 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/WfTaskNode.vue?vue&type=template&id=
|
|
187841
|
-
var
|
|
188145
|
+
;// 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/WfTaskNode.vue?vue&type=template&id=783e7e24&scoped=true
|
|
188146
|
+
var WfTaskNodevue_type_template_id_783e7e24_scoped_true_render = function render() {
|
|
187842
188147
|
var _vm = this,
|
|
187843
188148
|
_c = _vm._self._c;
|
|
187844
188149
|
return _c('el-dialog', {
|
|
@@ -188723,7 +189028,7 @@ var WfTaskNodevue_type_template_id_01852e14_scoped_true_render = function render
|
|
|
188723
189028
|
}
|
|
188724
189029
|
}, [_vm._v("关 闭")])]], 2)], 1);
|
|
188725
189030
|
};
|
|
188726
|
-
var
|
|
189031
|
+
var WfTaskNodevue_type_template_id_783e7e24_scoped_true_staticRenderFns = [];
|
|
188727
189032
|
|
|
188728
189033
|
;// 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/WfTaskNode.vue?vue&type=script&lang=js
|
|
188729
189034
|
|
|
@@ -188801,6 +189106,9 @@ var WfTaskNodevue_type_template_id_01852e14_scoped_true_staticRenderFns = [];
|
|
|
188801
189106
|
},
|
|
188802
189107
|
watch: {},
|
|
188803
189108
|
created: function created() {
|
|
189109
|
+
if (this.taskNode.nodeType === undefined) {
|
|
189110
|
+
this.taskNode.nodeType = 1;
|
|
189111
|
+
}
|
|
188804
189112
|
if (this.taskNode.selectType === undefined) {
|
|
188805
189113
|
this.taskNode.selectType = 3;
|
|
188806
189114
|
}
|
|
@@ -188959,10 +189267,12 @@ var WfTaskNodevue_type_template_id_01852e14_scoped_true_staticRenderFns = [];
|
|
|
188959
189267
|
udmNode.selectRule = selectRule;
|
|
188960
189268
|
} else if (udmNode.selectType == 2) {
|
|
188961
189269
|
//按历史节点处理人
|
|
188962
|
-
udmNode.selectRule = udmNode.
|
|
189270
|
+
udmNode.selectRule = udmNode.historyNodeId + '节点处理人';
|
|
188963
189271
|
} else if (udmNode.selectType == 9) {
|
|
188964
189272
|
//按用户职级
|
|
188965
189273
|
udmNode.selectRule = '不大于' + (udmNode.orgStaffType - 4) + '个职级';
|
|
189274
|
+
} else {
|
|
189275
|
+
udmNode.selectRule = '';
|
|
188966
189276
|
}
|
|
188967
189277
|
var wfdNodeList = _this2.$vnode.context.wfInstance.passenger.wfdNodeList;
|
|
188968
189278
|
if (wfdNodeList) {
|
|
@@ -188974,7 +189284,7 @@ var WfTaskNodevue_type_template_id_01852e14_scoped_true_staticRenderFns = [];
|
|
|
188974
189284
|
}
|
|
188975
189285
|
if (udmNode.status !== 1) {
|
|
188976
189286
|
udmNode.status = 1;
|
|
188977
|
-
udmNode.uuid = _this2.uuid();
|
|
189287
|
+
udmNode.uuid = udmNode.uuid || _this2.uuid();
|
|
188978
189288
|
_this2.$vnode.context.wfInstance.udmNodes.push(udmNode);
|
|
188979
189289
|
} else {
|
|
188980
189290
|
_this2.$vnode.context.wfInstance.udmNodes.forEach(function (wfnode, index) {
|
|
@@ -189013,6 +189323,7 @@ var WfTaskNodevue_type_template_id_01852e14_scoped_true_staticRenderFns = [];
|
|
|
189013
189323
|
url: 'workflow/wfInstance/getUdmNodeUsers'
|
|
189014
189324
|
}).then(function (res) {
|
|
189015
189325
|
if (res.code === 'success') {
|
|
189326
|
+
_this2.$bus.emit('bindName', udmNode.uuid, udmNode.name);
|
|
189016
189327
|
_this2.$set(_this2.$vnode.context.wfInstance.passenger, 'udmNodeUsers', res.body.udmNodeUsers);
|
|
189017
189328
|
_this2.closeDialog();
|
|
189018
189329
|
} else {
|
|
@@ -189055,9 +189366,9 @@ var WfTaskNodevue_type_template_id_01852e14_scoped_true_staticRenderFns = [];
|
|
|
189055
189366
|
});
|
|
189056
189367
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/WfTaskNode.vue?vue&type=script&lang=js
|
|
189057
189368
|
/* harmony default export */ var src_WfTaskNodevue_type_script_lang_js = (WfTaskNodevue_type_script_lang_js);
|
|
189058
|
-
// 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/WfTaskNode.vue?vue&type=style&index=0&id=
|
|
189059
|
-
var
|
|
189060
|
-
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/WfTaskNode.vue?vue&type=style&index=0&id=
|
|
189369
|
+
// 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/WfTaskNode.vue?vue&type=style&index=0&id=783e7e24&prod&scoped=true&lang=scss
|
|
189370
|
+
var WfTaskNodevue_type_style_index_0_id_783e7e24_prod_scoped_true_lang_scss = __webpack_require__(5135);
|
|
189371
|
+
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/WfTaskNode.vue?vue&type=style&index=0&id=783e7e24&prod&scoped=true&lang=scss
|
|
189061
189372
|
|
|
189062
189373
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/WfTaskNode.vue
|
|
189063
189374
|
|
|
@@ -189070,11 +189381,11 @@ var WfTaskNodevue_type_style_index_0_id_01852e14_prod_scoped_true_lang_scss = __
|
|
|
189070
189381
|
|
|
189071
189382
|
var WfTaskNode_component = (0,componentNormalizer/* default */.A)(
|
|
189072
189383
|
src_WfTaskNodevue_type_script_lang_js,
|
|
189073
|
-
|
|
189074
|
-
|
|
189384
|
+
WfTaskNodevue_type_template_id_783e7e24_scoped_true_render,
|
|
189385
|
+
WfTaskNodevue_type_template_id_783e7e24_scoped_true_staticRenderFns,
|
|
189075
189386
|
false,
|
|
189076
189387
|
null,
|
|
189077
|
-
"
|
|
189388
|
+
"783e7e24",
|
|
189078
189389
|
null
|
|
189079
189390
|
|
|
189080
189391
|
)
|
|
@@ -189238,88 +189549,10 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189238
189549
|
},
|
|
189239
189550
|
wfInstance: {
|
|
189240
189551
|
handler: function handler(newValue, oldValue) {
|
|
189241
|
-
var _this2 = this;
|
|
189242
189552
|
var _this = this;
|
|
189243
189553
|
if (this.wfInstance.udmNodes && this.wfInstance.udmNodes !== '[]' && typeof this.wfInstance.udmNodes === 'string') this.wfInstance.udmNodes = JSON.parse(this.wfInstance.udmNodes);
|
|
189244
189554
|
if (this.wfInstance.udmNodes && SubmitHandlevue_type_script_lang_js_typeof(this.wfInstance.udmNodes) === 'object' && this.curTN.tnNodeID !== null) {
|
|
189245
|
-
|
|
189246
|
-
var curNodeIndex = -1;
|
|
189247
|
-
var customRoutes = [];
|
|
189248
|
-
this.wfInstance.udmNodes.forEach(function (taskNode, index) {
|
|
189249
|
-
if (taskNode.name === _this2.curTN.tnNodeName) {
|
|
189250
|
-
curNode = taskNode;
|
|
189251
|
-
curNodeIndex = index;
|
|
189252
|
-
if (curNode.canSendToNext !== 0 && _this.wfInstance.udmNodes.length > index + 1 && _this.wfInstance.passenger.udmNodeUsers) {
|
|
189253
|
-
var nextNode = _this2.wfInstance.udmNodes[index + 1];
|
|
189254
|
-
if (!nextNode.users) {
|
|
189255
|
-
nextNode.users = [];
|
|
189256
|
-
}
|
|
189257
|
-
var nextRoute = {
|
|
189258
|
-
evtMsg: '',
|
|
189259
|
-
mustNextTN: '',
|
|
189260
|
-
evtCplPercent: '0',
|
|
189261
|
-
name: _this2.$tx('ecwapp.Wflowform.SubmitHandle.sendRoute', {
|
|
189262
|
-
nextNode: nextNode.name
|
|
189263
|
-
}, "\u9001".concat(nextNode.name)),
|
|
189264
|
-
fullName: _this2.$tx('ecwapp.Wflowform.SubmitHandle.sendRoute', {
|
|
189265
|
-
nextNode: nextNode.name
|
|
189266
|
-
}, "\u9001".concat(nextNode.name)),
|
|
189267
|
-
taskNodes: [JSON.parse(JSON.stringify(nextNode))],
|
|
189268
|
-
type: '0'
|
|
189269
|
-
};
|
|
189270
|
-
nextRoute.taskNodes[0].users = _this2.wfInstance.passenger.udmNodeUsers.nextUsers || [];
|
|
189271
|
-
customRoutes.push(nextRoute);
|
|
189272
|
-
}
|
|
189273
|
-
}
|
|
189274
|
-
if (index === 0) {
|
|
189275
|
-
taskNode.icon = 'el-icon-video-play';
|
|
189276
|
-
} else if (index + 1 === _this2.wfInstance.udmNodes.length) {
|
|
189277
|
-
taskNode.icon = 'el-icon-finished';
|
|
189278
|
-
} else {
|
|
189279
|
-
taskNode.icon = 'el-icon-edit-outline';
|
|
189280
|
-
}
|
|
189281
|
-
});
|
|
189282
|
-
if (curNode == null) {
|
|
189283
|
-
this.udmNode = null;
|
|
189284
|
-
this.wfInstance.udmNodes = null;
|
|
189285
|
-
return;
|
|
189286
|
-
}
|
|
189287
|
-
if (curNode.canEndWflow !== 0) {
|
|
189288
|
-
var endRoute = {
|
|
189289
|
-
evtMsg: '',
|
|
189290
|
-
mustNextTN: '',
|
|
189291
|
-
evtCplPercent: '0',
|
|
189292
|
-
name: this.$tx('ecwapp.Wflowform.SubmitHandle.endProcessing', '结束处理'),
|
|
189293
|
-
fullName: this.$tx('ecwapp.Wflowform.SubmitHandle.endProcessing', '结束处理'),
|
|
189294
|
-
taskNodes: [],
|
|
189295
|
-
type: '4'
|
|
189296
|
-
};
|
|
189297
|
-
customRoutes.push(endRoute);
|
|
189298
|
-
}
|
|
189299
|
-
if (curNode.returnHistoryTN !== 0 && curNodeIndex > 0 && this.wfInstance.passenger.udmNodeUsers) {
|
|
189300
|
-
var backRoute = {
|
|
189301
|
-
evtMsg: '',
|
|
189302
|
-
mustNextTN: '',
|
|
189303
|
-
evtCplPercent: '0',
|
|
189304
|
-
name: this.$tx('ecwapp.Wflowform.SubmitHandle.sendBack', '退回'),
|
|
189305
|
-
taskNodes: [],
|
|
189306
|
-
type: '3'
|
|
189307
|
-
};
|
|
189308
|
-
if (curNode.returnHistoryTN == 2) {
|
|
189309
|
-
//退回到发起节点
|
|
189310
|
-
backRoute.name = '退回发起人';
|
|
189311
|
-
backRoute.taskNodes.push(JSON.parse(JSON.stringify(this.wfInstance.udmNodes[0])));
|
|
189312
|
-
backRoute.taskNodes[0].users = this.wfInstance.passenger.udmNodeUsers.returnHistoryTNUser;
|
|
189313
|
-
} else {
|
|
189314
|
-
//退回到上一节点
|
|
189315
|
-
backRoute.name = '退回上一节点';
|
|
189316
|
-
backRoute.taskNodes.push(JSON.parse(JSON.stringify(this.wfInstance.udmNodes[curNodeIndex - 1])));
|
|
189317
|
-
backRoute.taskNodes[0].users = this.wfInstance.passenger.udmNodeUsers.returnHistoryTNUser;
|
|
189318
|
-
}
|
|
189319
|
-
backRoute.fullName = backRoute.name;
|
|
189320
|
-
customRoutes.push(backRoute);
|
|
189321
|
-
}
|
|
189322
|
-
this.wfJsonData.routes = customRoutes;
|
|
189555
|
+
this.wfJsonData.routes = _this.$wfEngine.setUdmCustomRoutes(_this);
|
|
189323
189556
|
this.initSubmitHandle();
|
|
189324
189557
|
}
|
|
189325
189558
|
this.$forceUpdate();
|
|
@@ -189338,16 +189571,18 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189338
189571
|
},
|
|
189339
189572
|
created: function created() {
|
|
189340
189573
|
this.$bus.on('initSubmitHandle', this.initSubmitHandle);
|
|
189574
|
+
this.$bus.on('delUdmNode', this.delUdmNode);
|
|
189341
189575
|
},
|
|
189342
189576
|
beforeDestroy: function beforeDestroy() {
|
|
189343
189577
|
this.$bus.off('initSubmitHandle', this.initSubmitHandle);
|
|
189578
|
+
this.$bus.off('delUdmNode', this.delUdmNode);
|
|
189344
189579
|
},
|
|
189345
189580
|
updated: function updated() {
|
|
189346
|
-
var
|
|
189581
|
+
var _this2 = this;
|
|
189347
189582
|
this.submitMode = this.$vnode.context.submitMode;
|
|
189348
189583
|
if (window.submitMode === 'dialog' || this.submitMode === 'dialog') {
|
|
189349
189584
|
this.$nextTick(function () {
|
|
189350
|
-
|
|
189585
|
+
_this2.$bus.emit('submitHanddleUpdate');
|
|
189351
189586
|
});
|
|
189352
189587
|
}
|
|
189353
189588
|
},
|
|
@@ -189387,13 +189622,13 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189387
189622
|
this.$bus.emit('submitHandleValChange', this);
|
|
189388
189623
|
},
|
|
189389
189624
|
initSubmitHandle: function initSubmitHandle() {
|
|
189390
|
-
var
|
|
189625
|
+
var _this3 = this;
|
|
189391
189626
|
if (this.wfJsonData.routes && this.wfJsonData.routes.length > 0) {
|
|
189392
189627
|
//给路径添加索引编号,避免第一个路径是增加协办处理人类型隐藏不显示后,用户选择的路径序号与wfJsonData.routes中的序号不一致,所导致的路径、环节错乱问题
|
|
189393
189628
|
this.wfJsonData.routes.forEach(function (r, i) {
|
|
189394
189629
|
r.routeIndex = i;
|
|
189395
|
-
if (r.type == 16 &&
|
|
189396
|
-
|
|
189630
|
+
if (r.type == 16 && _this3.submitHandle.route.index == i && _this3.wfJsonData.routes.length > _this3.submitHandle.route.index + 1) {
|
|
189631
|
+
_this3.submitHandle.route.index++;
|
|
189397
189632
|
}
|
|
189398
189633
|
});
|
|
189399
189634
|
if (this.wfJsonData.routes.length === 1 && this.wfJsonData.routes[0].name.indexOf('结束') > -1) {
|
|
@@ -189404,11 +189639,11 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189404
189639
|
}
|
|
189405
189640
|
}
|
|
189406
189641
|
this.wfJsonData.routes[this.submitHandle.route.index].taskNodes.forEach(function (taskNode) {
|
|
189407
|
-
|
|
189642
|
+
_this3.submitHandle.route[taskNode.name] = {
|
|
189408
189643
|
users: []
|
|
189409
189644
|
};
|
|
189410
189645
|
if (taskNode.users === null) taskNode.users = [];
|
|
189411
|
-
delete
|
|
189646
|
+
delete _this3.wfNodeUser[taskNode.name];
|
|
189412
189647
|
if (taskNode.autoCheckedAll === '1' && (taskNode.type === '3' || taskNode.todoMode === '0' || taskNode.todoMode === '1' || taskNode.todoMode === '3' || taskNode.todoMode === '4' || taskNode.todoMode === '5')) {
|
|
189413
189648
|
var userIds = '';
|
|
189414
189649
|
var deptIds = '';
|
|
@@ -189436,10 +189671,10 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189436
189671
|
}
|
|
189437
189672
|
});
|
|
189438
189673
|
}
|
|
189439
|
-
|
|
189440
|
-
|
|
189674
|
+
_this3.$set(_this3.wfNodeUser, taskNode.name, userIds);
|
|
189675
|
+
_this3.submitHandle.route[taskNode.name].users = selectedNodes;
|
|
189441
189676
|
} else {
|
|
189442
|
-
var wfusers = js_cookie_default().get('route-wfuser-' +
|
|
189677
|
+
var wfusers = js_cookie_default().get('route-wfuser-' + _this3.wfInstance.id + '-' + taskNode.id);
|
|
189443
189678
|
if (wfusers !== undefined && wfusers !== null) {
|
|
189444
189679
|
var _selectedNodes = [];
|
|
189445
189680
|
taskNode.users.forEach(function (user) {
|
|
@@ -189447,8 +189682,8 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189447
189682
|
_selectedNodes.push(user);
|
|
189448
189683
|
}
|
|
189449
189684
|
});
|
|
189450
|
-
|
|
189451
|
-
|
|
189685
|
+
_this3.$set(_this3.wfNodeUser, taskNode.name, wfusers);
|
|
189686
|
+
_this3.submitHandle.route[taskNode.name].users = _selectedNodes;
|
|
189452
189687
|
}
|
|
189453
189688
|
}
|
|
189454
189689
|
if (taskNode.type === '1' && taskNode.todoMode === '3') {
|
|
@@ -189456,15 +189691,15 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189456
189691
|
} else {
|
|
189457
189692
|
taskNode.selectedOrderBy = 'orgOrderNo';
|
|
189458
189693
|
}
|
|
189459
|
-
if (
|
|
189694
|
+
if (_this3.wfJsonData.routes[_this3.submitHandle.route.index].taskNodes.length === 1 || _this3.wfJsonData.routes[_this3.submitHandle.route.index].mustNextTN.indexOf(taskNode.name) !== -1) {
|
|
189460
189695
|
if (taskNode.users.length === 1 && taskNode.users[0].type !== 'asyncLoadingUsers') {
|
|
189461
|
-
|
|
189696
|
+
_this3.submitHandle.route[taskNode.name].users = taskNode.users;
|
|
189462
189697
|
}
|
|
189463
189698
|
}
|
|
189464
189699
|
});
|
|
189465
189700
|
this.forceUpdate = true;
|
|
189466
189701
|
this.$nextTick(function () {
|
|
189467
|
-
|
|
189702
|
+
_this3.forceUpdate = false;
|
|
189468
189703
|
});
|
|
189469
189704
|
} else if (this.wfInstance.udmNodes && this.wfInstance.udmNodes !== '[]') {
|
|
189470
189705
|
if (typeof this.wfInstance.udmNodes === 'string') {
|
|
@@ -189498,7 +189733,7 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189498
189733
|
}
|
|
189499
189734
|
},
|
|
189500
189735
|
onSelectWfNodeUserCompleted: function onSelectWfNodeUserCompleted(selectedNodes, attrs) {
|
|
189501
|
-
var
|
|
189736
|
+
var _this4 = this;
|
|
189502
189737
|
var userIds = '';
|
|
189503
189738
|
var userNames = '';
|
|
189504
189739
|
selectedNodes.forEach(function (user) {
|
|
@@ -189538,7 +189773,7 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189538
189773
|
if (!this.submitHandle.route[attrs.name]) this.submitHandle.route[attrs.name] = {};
|
|
189539
189774
|
this.submitHandle.route[attrs.name].users = selectedNodes;
|
|
189540
189775
|
this.$nextTick(function () {
|
|
189541
|
-
|
|
189776
|
+
_this4.submitHandleValChange();
|
|
189542
189777
|
});
|
|
189543
189778
|
},
|
|
189544
189779
|
removeSelectNodeUser: function removeSelectNodeUser(wfNodeId, wfNodeName, user) {
|
|
@@ -189589,7 +189824,7 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189589
189824
|
}
|
|
189590
189825
|
},
|
|
189591
189826
|
saveSubmitTemplate: function saveSubmitTemplate() {
|
|
189592
|
-
var
|
|
189827
|
+
var _this5 = this;
|
|
189593
189828
|
if (this.curTN.tnIdeaLabelID && this.curTN.tnIdeaIsMust === 1) {
|
|
189594
189829
|
if (this.submitHandle.curUserIdea === null || this.submitHandle.curUserIdea.trim() === '') {
|
|
189595
189830
|
this.$alert(this.$tx('ecwapp.Wflowform.IdeaInputBox.pWriteOpinion', '请填写处理意见。'), this.$tx('common.operationTip', '操作提示'), {
|
|
@@ -189608,7 +189843,7 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189608
189843
|
this.formTitle = this.$tx('ecwapp.Wflowform.SubmitHandle.processTemplate', '办理模板');
|
|
189609
189844
|
this.$options.components['BusiForm'] = this.$wfEngine.loadBusiform(this, this.submitTemplateModuleInfo.formTemplate, 'W');
|
|
189610
189845
|
this.$nextTick(function () {
|
|
189611
|
-
|
|
189846
|
+
_this5.$bus.emit('openBusiform', _this5.submitTemplateModuleInfo, null, 1);
|
|
189612
189847
|
});
|
|
189613
189848
|
},
|
|
189614
189849
|
applySubmitTemplate: function applySubmitTemplate(val) {
|
|
@@ -189616,6 +189851,9 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189616
189851
|
this.$wfEngine.applySubmitTemplate(this, JSON.parse(this.submitTemplateList[this.submitTemplateIndex].submitJsondata));
|
|
189617
189852
|
}
|
|
189618
189853
|
},
|
|
189854
|
+
showFlowTrace: function showFlowTrace() {
|
|
189855
|
+
this.$vnode.context.$vnode.context.handleTabsClick('flowChart');
|
|
189856
|
+
},
|
|
189619
189857
|
addUdmNode: function addUdmNode() {
|
|
189620
189858
|
this.udmNode = {
|
|
189621
189859
|
todoMode: 0,
|
|
@@ -189629,7 +189867,7 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189629
189867
|
this.$forceUpdate();
|
|
189630
189868
|
},
|
|
189631
189869
|
delUdmNode: function delUdmNode(index) {
|
|
189632
|
-
var
|
|
189870
|
+
var _this6 = this;
|
|
189633
189871
|
if (this.curTN.tnNodeID) {
|
|
189634
189872
|
this.wfInstance.udmNodes.splice(index, 1);
|
|
189635
189873
|
this.$forceUpdate();
|
|
@@ -189645,18 +189883,18 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189645
189883
|
}).then(function (res) {
|
|
189646
189884
|
if (res.code === 'success') {
|
|
189647
189885
|
var historyWflogs = res.body.listdata.filter(function (wflog) {
|
|
189648
|
-
return wflog.nodeName ===
|
|
189886
|
+
return wflog.nodeName === _this6.wfInstance.udmNodes[index].name;
|
|
189649
189887
|
});
|
|
189650
189888
|
if (historyWflogs.length > 0) {
|
|
189651
|
-
|
|
189889
|
+
_this6.$alert('不允许删除已经送审批或办理的节点!', _this6.$tx('common.operationTip', '操作提示'), {
|
|
189652
189890
|
type: 'warning'
|
|
189653
189891
|
});
|
|
189654
189892
|
} else {
|
|
189655
|
-
|
|
189656
|
-
|
|
189893
|
+
_this6.wfInstance.udmNodes.splice(index, 1);
|
|
189894
|
+
_this6.$forceUpdate();
|
|
189657
189895
|
}
|
|
189658
189896
|
} else {
|
|
189659
|
-
|
|
189897
|
+
_this6.$alert(res.message, _this6.$tx('common.operationTip', '操作提示'), {
|
|
189660
189898
|
type: 'error'
|
|
189661
189899
|
});
|
|
189662
189900
|
}
|
|
@@ -189709,9 +189947,9 @@ function SubmitHandlevue_type_script_lang_js_toPrimitive(t, r) { if ("object" !=
|
|
|
189709
189947
|
});
|
|
189710
189948
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/SubmitHandle.vue?vue&type=script&lang=js
|
|
189711
189949
|
/* harmony default export */ var src_SubmitHandlevue_type_script_lang_js = (SubmitHandlevue_type_script_lang_js);
|
|
189712
|
-
// 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/SubmitHandle.vue?vue&type=style&index=0&id=
|
|
189713
|
-
var
|
|
189714
|
-
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/SubmitHandle.vue?vue&type=style&index=0&id=
|
|
189950
|
+
// 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/SubmitHandle.vue?vue&type=style&index=0&id=2df2737a&prod&scoped=true&lang=scss
|
|
189951
|
+
var SubmitHandlevue_type_style_index_0_id_2df2737a_prod_scoped_true_lang_scss = __webpack_require__(47672);
|
|
189952
|
+
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/SubmitHandle.vue?vue&type=style&index=0&id=2df2737a&prod&scoped=true&lang=scss
|
|
189715
189953
|
|
|
189716
189954
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/SubmitHandle.vue
|
|
189717
189955
|
|
|
@@ -189724,11 +189962,11 @@ var SubmitHandlevue_type_style_index_0_id_25bc8e5f_prod_scoped_true_lang_scss =
|
|
|
189724
189962
|
|
|
189725
189963
|
var SubmitHandle_component = (0,componentNormalizer/* default */.A)(
|
|
189726
189964
|
src_SubmitHandlevue_type_script_lang_js,
|
|
189727
|
-
|
|
189728
|
-
|
|
189965
|
+
SubmitHandlevue_type_template_id_2df2737a_scoped_true_render,
|
|
189966
|
+
SubmitHandlevue_type_template_id_2df2737a_scoped_true_staticRenderFns,
|
|
189729
189967
|
false,
|
|
189730
189968
|
null,
|
|
189731
|
-
"
|
|
189969
|
+
"2df2737a",
|
|
189732
189970
|
null
|
|
189733
189971
|
|
|
189734
189972
|
)
|
|
@@ -190121,11 +190359,15 @@ var SubmitDialog_component = (0,componentNormalizer/* default */.A)(
|
|
|
190121
190359
|
)
|
|
190122
190360
|
|
|
190123
190361
|
/* harmony default export */ var SubmitDialog = (SubmitDialog_component.exports);
|
|
190124
|
-
;// 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/WfNodelogList.vue?vue&type=template&id=
|
|
190125
|
-
var
|
|
190362
|
+
;// 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/WfNodelogList.vue?vue&type=template&id=50899534&scoped=true
|
|
190363
|
+
var WfNodelogListvue_type_template_id_50899534_scoped_true_render = function render() {
|
|
190126
190364
|
var _vm = this,
|
|
190127
190365
|
_c = _vm._self._c;
|
|
190128
|
-
return _c('div',
|
|
190366
|
+
return _c('div', {
|
|
190367
|
+
attrs: {
|
|
190368
|
+
"id": "wfNodelogList"
|
|
190369
|
+
}
|
|
190370
|
+
}, [_vm.dialogFormVisible ? _c('el-dialog', {
|
|
190129
190371
|
directives: [{
|
|
190130
190372
|
name: "el-drag-dialog",
|
|
190131
190373
|
rawName: "v-el-drag-dialog"
|
|
@@ -190432,15 +190674,16 @@ var WfNodelogListvue_type_template_id_773c61ce_scoped_true_render = function ren
|
|
|
190432
190674
|
staticClass: "technological-WflowTrace",
|
|
190433
190675
|
attrs: {
|
|
190434
190676
|
"label": _vm.$tx('ecwapp.Wflowform.WfNodelogList.trackingMap', '流程跟踪图'),
|
|
190435
|
-
"name": "
|
|
190677
|
+
"name": "flowChart"
|
|
190436
190678
|
}
|
|
190437
190679
|
}, [_c('el-scrollbar', {
|
|
190438
190680
|
staticClass: "WflowTrace-scrollbar",
|
|
190439
190681
|
attrs: {
|
|
190682
|
+
"id": "center-scrollbar",
|
|
190440
190683
|
"native": false,
|
|
190441
190684
|
"tag": "div"
|
|
190442
190685
|
}
|
|
190443
|
-
}, [_vm.
|
|
190686
|
+
}, [_vm.wfInstance.wfId && !_vm.disabledWflowTrace ? _c('WflowTrace', {
|
|
190444
190687
|
attrs: {
|
|
190445
190688
|
"wflog-list": _vm.WflowTraceList,
|
|
190446
190689
|
"wf-instance": _vm.wfInstance
|
|
@@ -190586,7 +190829,26 @@ var WfNodelogListvue_type_template_id_773c61ce_scoped_true_render = function ren
|
|
|
190586
190829
|
})];
|
|
190587
190830
|
}
|
|
190588
190831
|
}], null, false, 1522020880)
|
|
190589
|
-
})], 1)], 1)], 1)], 1)], 2) : _c('div', [
|
|
190832
|
+
})], 1)], 1)], 1)], 1)], 2) : _c('div', [_c('div', {
|
|
190833
|
+
directives: [{
|
|
190834
|
+
name: "show",
|
|
190835
|
+
rawName: "v-show",
|
|
190836
|
+
value: _vm.activeName === 'flowChart',
|
|
190837
|
+
expression: "activeName === 'flowChart'"
|
|
190838
|
+
}],
|
|
190839
|
+
staticClass: "form-wflog-container wflog-container flowChart"
|
|
190840
|
+
}, [!_vm.disabledWflowTrace && _vm.wfInstance.wfId ? _c('WflowTrace', {
|
|
190841
|
+
ref: "wflowTrace",
|
|
190842
|
+
attrs: {
|
|
190843
|
+
"wflog-list": _vm.WflowTraceList,
|
|
190844
|
+
"wf-instance": _vm.wfInstance,
|
|
190845
|
+
"wf-json-data": _vm.wfJsonData,
|
|
190846
|
+
"curTN": _vm.curTN
|
|
190847
|
+
},
|
|
190848
|
+
on: {
|
|
190849
|
+
"clickloading": _vm.clickloading
|
|
190850
|
+
}
|
|
190851
|
+
}) : _vm._e()], 1), _vm.activeName === 'todoLog' ? _c('div', {
|
|
190590
190852
|
staticClass: "form-wflog-container flow-node-logs"
|
|
190591
190853
|
}, [!_vm.loading ? _c('el-table', {
|
|
190592
190854
|
staticClass: "wfNodelog-container",
|
|
@@ -190821,17 +191083,7 @@ var WfNodelogListvue_type_template_id_773c61ce_scoped_true_render = function ren
|
|
|
190821
191083
|
})];
|
|
190822
191084
|
}
|
|
190823
191085
|
}], null, false, 3178096288)
|
|
190824
|
-
})], 1) : _vm._e()], 1) : _vm.activeName === '
|
|
190825
|
-
staticClass: "form-wflog-container wflog-container flowChart"
|
|
190826
|
-
}, [_vm.activeName === 'flowChart' && _vm.wfInstance.wfId ? _c('WflowTrace', {
|
|
190827
|
-
attrs: {
|
|
190828
|
-
"wflog-list": _vm.WflowTraceList,
|
|
190829
|
-
"wf-instance": _vm.wfInstance
|
|
190830
|
-
},
|
|
190831
|
-
on: {
|
|
190832
|
-
"clickloading": _vm.clickloading
|
|
190833
|
-
}
|
|
190834
|
-
}) : _vm._e()], 1) : _vm.activeName === 'completeLog' ? _c('div', {
|
|
191086
|
+
})], 1) : _vm._e()], 1) : _vm.activeName === 'completeLog' ? _c('div', {
|
|
190835
191087
|
staticClass: "form-wflog-container"
|
|
190836
191088
|
}, [_c('div', {
|
|
190837
191089
|
staticStyle: {
|
|
@@ -191154,7 +191406,7 @@ var WfNodelogListvue_type_template_id_773c61ce_scoped_true_render = function ren
|
|
|
191154
191406
|
}], null, false, 1872946213)
|
|
191155
191407
|
})], 1) : _vm._e()], 1)]) : _vm._e()])], 1);
|
|
191156
191408
|
};
|
|
191157
|
-
var
|
|
191409
|
+
var WfNodelogListvue_type_template_id_50899534_scoped_true_staticRenderFns = [];
|
|
191158
191410
|
|
|
191159
191411
|
;// 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/WfNodelogList.vue?vue&type=script&lang=js
|
|
191160
191412
|
function WfNodelogListvue_type_script_lang_js_typeof(o) { "@babel/helpers - typeof"; return WfNodelogListvue_type_script_lang_js_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; }, WfNodelogListvue_type_script_lang_js_typeof(o); }
|
|
@@ -191172,6 +191424,11 @@ function WfNodelogListvue_type_script_lang_js_toPrimitive(t, r) { if ("object" !
|
|
|
191172
191424
|
name: 'WfNodelogList',
|
|
191173
191425
|
components: {},
|
|
191174
191426
|
props: {
|
|
191427
|
+
disabledWflowTrace: {
|
|
191428
|
+
type: Boolean,
|
|
191429
|
+
default: false
|
|
191430
|
+
},
|
|
191431
|
+
// 禁止显示流程图
|
|
191175
191432
|
showStaffOrgName: {
|
|
191176
191433
|
type: Number,
|
|
191177
191434
|
default: 1
|
|
@@ -191206,9 +191463,6 @@ function WfNodelogListvue_type_script_lang_js_toPrimitive(t, r) { if ("object" !
|
|
|
191206
191463
|
return {
|
|
191207
191464
|
title: this.$tx('ecwapp.PageBtns.processTracking', '流程跟踪'),
|
|
191208
191465
|
tableList: [],
|
|
191209
|
-
showWflowTrace: true,
|
|
191210
|
-
// 是否显示图形化流程跟踪,udm流程不显示
|
|
191211
|
-
showtechnological: false,
|
|
191212
191466
|
colors: ['#409EFF', '#67C23A', '#F56C6C'],
|
|
191213
191467
|
xdata: [],
|
|
191214
191468
|
ydata: [[]],
|
|
@@ -191237,6 +191491,8 @@ function WfNodelogListvue_type_script_lang_js_toPrimitive(t, r) { if ("object" !
|
|
|
191237
191491
|
historyIdeaActiveName: 'allHistoryIdea',
|
|
191238
191492
|
historyIdeaCollapse: 'down',
|
|
191239
191493
|
wfInstance: {},
|
|
191494
|
+
wfJsonData: null,
|
|
191495
|
+
curTN: {},
|
|
191240
191496
|
todoLogList: [],
|
|
191241
191497
|
toreadLogList: [],
|
|
191242
191498
|
loading: false,
|
|
@@ -191256,20 +191512,24 @@ function WfNodelogListvue_type_script_lang_js_toPrimitive(t, r) { if ("object" !
|
|
|
191256
191512
|
if (val === 'completeLog') {
|
|
191257
191513
|
this.getXdata();
|
|
191258
191514
|
this.echarts = true;
|
|
191259
|
-
} else if (val === '
|
|
191515
|
+
} else if (val === 'flowChart') {
|
|
191260
191516
|
this.$nextTick(function () {
|
|
191261
|
-
_this2
|
|
191517
|
+
if (_this2.$refs['wflowTrace']) {
|
|
191518
|
+
_this2.$refs['wflowTrace'].initFlowTrace();
|
|
191519
|
+
}
|
|
191262
191520
|
});
|
|
191263
191521
|
}
|
|
191264
191522
|
}
|
|
191265
191523
|
},
|
|
191266
191524
|
created: function created() {
|
|
191267
191525
|
var _this3 = this;
|
|
191526
|
+
if (!this.disabledWflowTrace) console.log('wfNodelogList created');
|
|
191268
191527
|
this.$options.components['echartColumnar'] = this.$loadComponent('@/wapp/common/components/Echarts/src/EchartColumnar');
|
|
191269
191528
|
this.$bus.on('showWfNodelogList', this.showWfNodelogList);
|
|
191270
191529
|
this.$bus.on('setHistoryIdeaHeight', this.setHistoryIdeaHeight);
|
|
191271
191530
|
this.$bus.on('btnReadedClick', this.btnReadedClick);
|
|
191272
191531
|
this.$bus.on('btnReturnHistoryClick', this.btnReturnHistoryClick);
|
|
191532
|
+
this.$bus.on('btnOpenWfTesterClick', this.openWfTester);
|
|
191273
191533
|
window.addEventListener('resize', function () {
|
|
191274
191534
|
var pgeContainer = document.querySelector('.page-container');
|
|
191275
191535
|
if (pgeContainer) {
|
|
@@ -191296,6 +191556,7 @@ function WfNodelogListvue_type_script_lang_js_toPrimitive(t, r) { if ("object" !
|
|
|
191296
191556
|
this.$bus.off('setHistoryIdeaHeight', this.setHistoryIdeaHeight);
|
|
191297
191557
|
this.$bus.off('btnReadedClick', this.btnReadedClick);
|
|
191298
191558
|
this.$bus.off('btnReturnHistoryClick', this.btnReturnHistoryClick);
|
|
191559
|
+
this.$bus.off('btnOpenWfTesterClick', this.openWfTester);
|
|
191299
191560
|
},
|
|
191300
191561
|
methods: {
|
|
191301
191562
|
historyIdeaHandleClick: function historyIdeaHandleClick() {
|
|
@@ -191322,6 +191583,8 @@ function WfNodelogListvue_type_script_lang_js_toPrimitive(t, r) { if ("object" !
|
|
|
191322
191583
|
var _this5 = this;
|
|
191323
191584
|
var _this = this;
|
|
191324
191585
|
this.wfInstance = wfInstance;
|
|
191586
|
+
this.wfJsonData = this.$vnode.context.wfJsonData;
|
|
191587
|
+
this.curTN = this.$vnode.context.curTN;
|
|
191325
191588
|
if (activeName === 'flowChart') {
|
|
191326
191589
|
_this.activeName = activeName;
|
|
191327
191590
|
}
|
|
@@ -191905,14 +192168,58 @@ function WfNodelogListvue_type_script_lang_js_toPrimitive(t, r) { if ("object" !
|
|
|
191905
192168
|
return _ref.apply(this, arguments);
|
|
191906
192169
|
};
|
|
191907
192170
|
}());
|
|
192171
|
+
},
|
|
192172
|
+
openWfTester: function openWfTester() {
|
|
192173
|
+
var _this13 = this;
|
|
192174
|
+
if (this.disabledWflowTrace) return;
|
|
192175
|
+
var $scope = this.$vnode.context;
|
|
192176
|
+
if ($('#center .model_process').length == 0) {
|
|
192177
|
+
if ($scope.activeName !== 'flowChart') {
|
|
192178
|
+
$scope.handleTabsClick('flowChart');
|
|
192179
|
+
setTimeout(function () {
|
|
192180
|
+
_this13.openWfTester();
|
|
192181
|
+
}, 100);
|
|
192182
|
+
}
|
|
192183
|
+
return;
|
|
192184
|
+
}
|
|
192185
|
+
|
|
192186
|
+
//检查是否存在未命名节点
|
|
192187
|
+
var invalidNodeId = '';
|
|
192188
|
+
$('#center .model_process').each(function (index, elem) {
|
|
192189
|
+
if (elem.firstChild && elem.firstChild.nextElementSibling) {
|
|
192190
|
+
var nodeName = elem.firstChild.nextElementSibling.innerText;
|
|
192191
|
+
if (!nodeName && !invalidNodeId) {
|
|
192192
|
+
invalidNodeId = elem.id;
|
|
192193
|
+
}
|
|
192194
|
+
}
|
|
192195
|
+
});
|
|
192196
|
+
if (invalidNodeId) {
|
|
192197
|
+
var message = $scope.$tx('ecwapp.Wflowform.WfNodelogList.udmNodeNameIsNull', '流程环节未命名!');
|
|
192198
|
+
$scope.$alert(message, $scope.$tx('common.operationTip', '操作提示'), {
|
|
192199
|
+
type: 'warning'
|
|
192200
|
+
});
|
|
192201
|
+
$('#' + invalidNodeId).addClass('seled');
|
|
192202
|
+
return;
|
|
192203
|
+
}
|
|
192204
|
+
this.$refs['wflowTrace'].saveChartData();
|
|
192205
|
+
$scope.btnSubmitClick('AutoSave', function (saved) {
|
|
192206
|
+
if (saved) {
|
|
192207
|
+
var url = '/#/designer/wfTester?id=' + $scope.wfInstance.wfId + '&udmWfInstanceId=' + $scope.wfInstance.id + '&udmWfName=' + encodeURIComponent($scope.vo.flFormName);
|
|
192208
|
+
url += '&staffId=' + $scope.curTN.staffID;
|
|
192209
|
+
url += '&staffOrgID=' + $scope.curTN.staffOrgID;
|
|
192210
|
+
url += '&staffOrgName=' + encodeURIComponent($scope.curTN.staffOrgName);
|
|
192211
|
+
url += '&userName=' + encodeURIComponent($scope.curTN.userName);
|
|
192212
|
+
window.open(url, '_blank');
|
|
192213
|
+
}
|
|
192214
|
+
});
|
|
191908
192215
|
}
|
|
191909
192216
|
}
|
|
191910
192217
|
});
|
|
191911
192218
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/WfNodelogList.vue?vue&type=script&lang=js
|
|
191912
192219
|
/* harmony default export */ var src_WfNodelogListvue_type_script_lang_js = (WfNodelogListvue_type_script_lang_js);
|
|
191913
|
-
// 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/WfNodelogList.vue?vue&type=style&index=0&id=
|
|
191914
|
-
var
|
|
191915
|
-
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/WfNodelogList.vue?vue&type=style&index=0&id=
|
|
192220
|
+
// 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/WfNodelogList.vue?vue&type=style&index=0&id=50899534&prod&scoped=true&lang=scss
|
|
192221
|
+
var WfNodelogListvue_type_style_index_0_id_50899534_prod_scoped_true_lang_scss = __webpack_require__(59104);
|
|
192222
|
+
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/WfNodelogList.vue?vue&type=style&index=0&id=50899534&prod&scoped=true&lang=scss
|
|
191916
192223
|
|
|
191917
192224
|
;// CONCATENATED MODULE: ./packages/ecwapp/Wflowform/src/WfNodelogList.vue
|
|
191918
192225
|
|
|
@@ -191925,11 +192232,11 @@ var WfNodelogListvue_type_style_index_0_id_773c61ce_prod_scoped_true_lang_scss =
|
|
|
191925
192232
|
|
|
191926
192233
|
var WfNodelogList_component = (0,componentNormalizer/* default */.A)(
|
|
191927
192234
|
src_WfNodelogListvue_type_script_lang_js,
|
|
191928
|
-
|
|
191929
|
-
|
|
192235
|
+
WfNodelogListvue_type_template_id_50899534_scoped_true_render,
|
|
192236
|
+
WfNodelogListvue_type_template_id_50899534_scoped_true_staticRenderFns,
|
|
191930
192237
|
false,
|
|
191931
192238
|
null,
|
|
191932
|
-
"
|
|
192239
|
+
"50899534",
|
|
191933
192240
|
null
|
|
191934
192241
|
|
|
191935
192242
|
)
|
|
@@ -230065,8 +230372,8 @@ formEventEdit.install = function (Vue) {
|
|
|
230065
230372
|
};
|
|
230066
230373
|
var BusiformDesigner = BusiformDesigner_src;
|
|
230067
230374
|
var FromEventEdit = formEventEdit;
|
|
230068
|
-
;// 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/ecwplus/ListPageDesigner/src/index.vue?vue&type=template&id=
|
|
230069
|
-
var
|
|
230375
|
+
;// 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/ecwplus/ListPageDesigner/src/index.vue?vue&type=template&id=a1780b48&scoped=true
|
|
230376
|
+
var srcvue_type_template_id_a1780b48_scoped_true_render = function render() {
|
|
230070
230377
|
var _vm = this,
|
|
230071
230378
|
_c = _vm._self._c;
|
|
230072
230379
|
return _c('div', {
|
|
@@ -230246,7 +230553,7 @@ var srcvue_type_template_id_5bd746e7_scoped_true_render = function render() {
|
|
|
230246
230553
|
}
|
|
230247
230554
|
}) : _vm._e()], 1)], 1) : _vm._e()], 1), _c('select-dialog')], 1);
|
|
230248
230555
|
};
|
|
230249
|
-
var
|
|
230556
|
+
var srcvue_type_template_id_a1780b48_scoped_true_staticRenderFns = [];
|
|
230250
230557
|
|
|
230251
230558
|
;// 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/ecwplus/ListPageDesigner/src/BasicSetup.vue?vue&type=template&id=19d84f0e
|
|
230252
230559
|
var BasicSetupvue_type_template_id_19d84f0e_render = function render() {
|
|
@@ -230650,8 +230957,8 @@ var BasicSetup_component = (0,componentNormalizer/* default */.A)(
|
|
|
230650
230957
|
)
|
|
230651
230958
|
|
|
230652
230959
|
/* harmony default export */ var BasicSetup = (BasicSetup_component.exports);
|
|
230653
|
-
;// 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/ecwplus/ListPageDesigner/src/ListStyle.vue?vue&type=template&id=
|
|
230654
|
-
var
|
|
230960
|
+
;// 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/ecwplus/ListPageDesigner/src/ListStyle.vue?vue&type=template&id=191e1748&scoped=true
|
|
230961
|
+
var ListStylevue_type_template_id_191e1748_scoped_true_render = function render() {
|
|
230655
230962
|
var _vm = this,
|
|
230656
230963
|
_c = _vm._self._c;
|
|
230657
230964
|
return _c('div', {
|
|
@@ -230705,10 +231012,7 @@ var ListStylevue_type_template_id_7ae7f35a_scoped_true_render = function render(
|
|
|
230705
231012
|
return _vm.handleHeaderClick(column);
|
|
230706
231013
|
}
|
|
230707
231014
|
}
|
|
230708
|
-
}, [
|
|
230709
|
-
staticClass: "cell-inner-th",
|
|
230710
|
-
style: _vm.parseCssString(column.listThStyle)
|
|
230711
|
-
}, [_vm._v(" " + _vm._s(column.propComment) + " ")])])]), _vm._l(column.children, function (subColumn, subKey) {
|
|
231015
|
+
}, [_vm._v(" " + _vm._s(column.propComment) + " ")])]), _vm._l(column.children, function (subColumn, subKey) {
|
|
230712
231016
|
return [_c('el-table-column', {
|
|
230713
231017
|
key: subKey + 1,
|
|
230714
231018
|
attrs: {
|
|
@@ -230725,19 +231029,13 @@ var ListStylevue_type_template_id_7ae7f35a_scoped_true_render = function render(
|
|
|
230725
231029
|
return _vm.handleHeaderClick(subColumn);
|
|
230726
231030
|
}
|
|
230727
231031
|
}
|
|
230728
|
-
}, [_c('span', {
|
|
230729
|
-
staticClass: "cell-inner-th",
|
|
230730
|
-
style: _vm.parseCssString(subColumn.listThStyle)
|
|
230731
|
-
}, [_vm._v(" " + _vm._s(subColumn.propComment) + " ")]), subColumn.listThOrderBy === 1 ? _c('span', {
|
|
231032
|
+
}, [_vm._v(" " + _vm._s(subColumn.propComment) + " "), subColumn.listThOrderBy === 1 ? _c('span', {
|
|
230732
231033
|
staticClass: "caret-wrapper"
|
|
230733
231034
|
}, [_c('i', {
|
|
230734
231035
|
staticClass: "sort-caret ascending"
|
|
230735
231036
|
}), _c('i', {
|
|
230736
231037
|
staticClass: "sort-caret descending"
|
|
230737
|
-
})]) : _vm._e()])]), [_c('span',
|
|
230738
|
-
staticClass: "cell-inner-td",
|
|
230739
|
-
style: _vm.parseCssString(subColumn.listTdStyle)
|
|
230740
|
-
}, [_vm._v(_vm._s(subColumn.joinFieldPropName || subColumn.propName))])]], 2)];
|
|
231038
|
+
})]) : _vm._e()])]), [_c('span', [_vm._v(_vm._s(subColumn.joinFieldPropName || subColumn.propName))])]], 2)];
|
|
230741
231039
|
})], 2) : !column.isChild ? _c('el-table-column', {
|
|
230742
231040
|
key: key + 4,
|
|
230743
231041
|
attrs: {
|
|
@@ -230754,19 +231052,13 @@ var ListStylevue_type_template_id_7ae7f35a_scoped_true_render = function render(
|
|
|
230754
231052
|
return _vm.handleHeaderClick(column);
|
|
230755
231053
|
}
|
|
230756
231054
|
}
|
|
230757
|
-
}, [_c('span', {
|
|
230758
|
-
staticClass: "cell-inner-th",
|
|
230759
|
-
style: _vm.parseCssString(column.listThStyle)
|
|
230760
|
-
}, [_vm._v(" " + _vm._s(column.propComment) + " ")]), column.listThOrderBy === 1 ? _c('span', {
|
|
231055
|
+
}, [_vm._v(" " + _vm._s(column.propComment) + " "), column.listThOrderBy === 1 ? _c('span', {
|
|
230761
231056
|
staticClass: "caret-wrapper"
|
|
230762
231057
|
}, [_c('i', {
|
|
230763
231058
|
staticClass: "sort-caret ascending"
|
|
230764
231059
|
}), _c('i', {
|
|
230765
231060
|
staticClass: "sort-caret descending"
|
|
230766
|
-
})]) : _vm._e()])]), [_c('span',
|
|
230767
|
-
staticClass: "cell-inner-td",
|
|
230768
|
-
style: _vm.parseCssString(column.listTdStyle)
|
|
230769
|
-
}, [_vm._v(_vm._s(column.joinFieldPropName || column.propName))])]], 2) : _vm._e()];
|
|
231061
|
+
})]) : _vm._e()])]), [_c('span', [_vm._v(_vm._s(column.joinFieldPropName || column.propName))])]], 2) : _vm._e()];
|
|
230770
231062
|
})], 2) : _vm._e(), !_vm.doing && _vm.layoutStyle !== 0 ? _c('div', {
|
|
230771
231063
|
staticStyle: {
|
|
230772
231064
|
"margin-top": "10px"
|
|
@@ -231416,7 +231708,7 @@ var ListStylevue_type_template_id_7ae7f35a_scoped_true_render = function render(
|
|
|
231416
231708
|
staticClass: "el-icon-check"
|
|
231417
231709
|
}), _vm._v(" 确 定 ")])], 1)])], 1);
|
|
231418
231710
|
};
|
|
231419
|
-
var
|
|
231711
|
+
var ListStylevue_type_template_id_191e1748_scoped_true_staticRenderFns = [];
|
|
231420
231712
|
|
|
231421
231713
|
;// 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/ecwplus/ListPageDesigner/src/cardSetup.vue?vue&type=template&id=6fd24247&scoped=true
|
|
231422
231714
|
var cardSetupvue_type_template_id_6fd24247_scoped_true_render = function render() {
|
|
@@ -231662,12 +231954,6 @@ var cardSetup_component = (0,componentNormalizer/* default */.A)(
|
|
|
231662
231954
|
|
|
231663
231955
|
/* harmony default export */ var cardSetup = (cardSetup_component.exports);
|
|
231664
231956
|
;// 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/ecwplus/ListPageDesigner/src/ListStyle.vue?vue&type=script&lang=js
|
|
231665
|
-
function ListStylevue_type_script_lang_js_slicedToArray(r, e) { return ListStylevue_type_script_lang_js_arrayWithHoles(r) || ListStylevue_type_script_lang_js_iterableToArrayLimit(r, e) || ListStylevue_type_script_lang_js_unsupportedIterableToArray(r, e) || ListStylevue_type_script_lang_js_nonIterableRest(); }
|
|
231666
|
-
function ListStylevue_type_script_lang_js_nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
231667
|
-
function ListStylevue_type_script_lang_js_unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return ListStylevue_type_script_lang_js_arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? ListStylevue_type_script_lang_js_arrayLikeToArray(r, a) : void 0; } }
|
|
231668
|
-
function ListStylevue_type_script_lang_js_arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
231669
|
-
function ListStylevue_type_script_lang_js_iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
231670
|
-
function ListStylevue_type_script_lang_js_arrayWithHoles(r) { if (Array.isArray(r)) return r; }
|
|
231671
231957
|
//import draggable from 'vuedraggable'
|
|
231672
231958
|
|
|
231673
231959
|
/* harmony default export */ var ListStylevue_type_script_lang_js = ({
|
|
@@ -231845,61 +232131,6 @@ function ListStylevue_type_script_lang_js_arrayWithHoles(r) { if (Array.isArray(
|
|
|
231845
232131
|
textFormatter: 'textfield',
|
|
231846
232132
|
valueMaxLength: 20,
|
|
231847
232133
|
valueMinLength: null
|
|
231848
|
-
},
|
|
231849
|
-
// {
|
|
231850
|
-
// defaultValue: '',
|
|
231851
|
-
// elementCanEdit: '{${canEdit}}',
|
|
231852
|
-
// elementFormatter: '',
|
|
231853
|
-
// elementReadonly: 1,
|
|
231854
|
-
// elementType: 'colorPicker',
|
|
231855
|
-
// emptyMessage: '请选择字体颜色(表头)',
|
|
231856
|
-
// errorMessage: '',
|
|
231857
|
-
// formTdColspan: 12,
|
|
231858
|
-
// isRequired: 0,
|
|
231859
|
-
// propComment: '字体颜色(表头)',
|
|
231860
|
-
// propName: 'listThStyleColor',
|
|
231861
|
-
// propType: 'String',
|
|
231862
|
-
// textFormatter: 'textfield',
|
|
231863
|
-
// valueMaxLength: 100,
|
|
231864
|
-
// valueMinLength: null,
|
|
231865
|
-
// predefineColors: [
|
|
231866
|
-
// '#ff4500',
|
|
231867
|
-
// '#ff8c00',
|
|
231868
|
-
// '#ffd700',
|
|
231869
|
-
// '#90ee90',
|
|
231870
|
-
// '#00ced1',
|
|
231871
|
-
// '#1e90ff',
|
|
231872
|
-
// '#c71585',
|
|
231873
|
-
// 'rgba(255, 69, 0, 0.68)',
|
|
231874
|
-
// 'rgb(255, 120, 0)',
|
|
231875
|
-
// 'hsv(51, 100, 98)',
|
|
231876
|
-
// 'hsva(120, 40, 94, 0.5)',
|
|
231877
|
-
// 'hsl(181, 100%, 37%)',
|
|
231878
|
-
// 'hsla(209, 100%, 56%, 0.73)',
|
|
231879
|
-
// '#c7158577'],
|
|
231880
|
-
// showAlpha: false, // 透明度通道 默认关闭
|
|
231881
|
-
// colorFormat: 'hex' // hsl / hsv / hex / rgb
|
|
231882
|
-
// },
|
|
231883
|
-
{
|
|
231884
|
-
defaultValue: '',
|
|
231885
|
-
elementCanEdit: '{${canEdit}}',
|
|
231886
|
-
elementFormatter: '',
|
|
231887
|
-
elementReadonly: 1,
|
|
231888
|
-
elementType: 'colorPicker',
|
|
231889
|
-
emptyMessage: '请选择字体颜色',
|
|
231890
|
-
errorMessage: '',
|
|
231891
|
-
formTdColspan: 24,
|
|
231892
|
-
isRequired: 0,
|
|
231893
|
-
propComment: '字体颜色',
|
|
231894
|
-
propName: 'listTdStyleColor',
|
|
231895
|
-
propType: 'String',
|
|
231896
|
-
textFormatter: 'textfield',
|
|
231897
|
-
valueMaxLength: 100,
|
|
231898
|
-
valueMinLength: null,
|
|
231899
|
-
predefineColors: ['#ff4500', '#ff8c00', '#ffd700', '#90ee90', '#00ced1', '#1e90ff', '#c71585', 'rgba(255, 69, 0, 0.68)', 'rgb(255, 120, 0)', 'hsv(51, 100, 98)', 'hsva(120, 40, 94, 0.5)', 'hsl(181, 100%, 37%)', 'hsla(209, 100%, 56%, 0.73)', '#c7158577'],
|
|
231900
|
-
showAlpha: false,
|
|
231901
|
-
// 透明度通道 默认关闭
|
|
231902
|
-
colorFormat: 'hex' // hsl / hsv / hex / rgb
|
|
231903
232134
|
}, {
|
|
231904
232135
|
defaultValue: 'false',
|
|
231905
232136
|
elementCanEdit: '{${canEdit}}',
|
|
@@ -232333,44 +232564,14 @@ function ListStylevue_type_script_lang_js_arrayWithHoles(r) { if (Array.isArray(
|
|
|
232333
232564
|
} else {
|
|
232334
232565
|
this.columnDialogVisible = false;
|
|
232335
232566
|
}
|
|
232336
|
-
},
|
|
232337
|
-
// 样式转换方法
|
|
232338
|
-
getHeaderStyle: function getHeaderStyle(style) {
|
|
232339
|
-
return this.parseCssString(style);
|
|
232340
|
-
},
|
|
232341
|
-
// CSS 字符串转对象的核心方法
|
|
232342
|
-
parseCssString: function parseCssString(cssString) {
|
|
232343
|
-
if (!cssString) return {};
|
|
232344
|
-
return cssString.split(';').filter(function (rule) {
|
|
232345
|
-
return rule.trim();
|
|
232346
|
-
}) // 过滤空值
|
|
232347
|
-
.reduce(function (obj, rule) {
|
|
232348
|
-
var _rule$split$map = rule.split(':').map(function (s) {
|
|
232349
|
-
return s.trim();
|
|
232350
|
-
}),
|
|
232351
|
-
_rule$split$map2 = ListStylevue_type_script_lang_js_slicedToArray(_rule$split$map, 2),
|
|
232352
|
-
key = _rule$split$map2[0],
|
|
232353
|
-
value = _rule$split$map2[1];
|
|
232354
|
-
if (key && value) {
|
|
232355
|
-
// 转换 CSS 属性名为小驼峰格式
|
|
232356
|
-
var camelCaseKey = key.replace(/-(\w)/g, function (_, letter) {
|
|
232357
|
-
return letter.toUpperCase();
|
|
232358
|
-
});
|
|
232359
|
-
|
|
232360
|
-
// 处理 !important 等特殊情况
|
|
232361
|
-
var processedValue = value.includes('!important') ? "".concat(value.replace('!important', '').trim(), " !important") : value;
|
|
232362
|
-
obj[camelCaseKey] = processedValue;
|
|
232363
|
-
}
|
|
232364
|
-
return obj;
|
|
232365
|
-
}, {});
|
|
232366
232567
|
}
|
|
232367
232568
|
}
|
|
232368
232569
|
});
|
|
232369
232570
|
;// CONCATENATED MODULE: ./packages/ecwplus/ListPageDesigner/src/ListStyle.vue?vue&type=script&lang=js
|
|
232370
232571
|
/* harmony default export */ var src_ListStylevue_type_script_lang_js = (ListStylevue_type_script_lang_js);
|
|
232371
|
-
// 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/ecwplus/ListPageDesigner/src/ListStyle.vue?vue&type=style&index=0&id=
|
|
232372
|
-
var
|
|
232373
|
-
;// CONCATENATED MODULE: ./packages/ecwplus/ListPageDesigner/src/ListStyle.vue?vue&type=style&index=0&id=
|
|
232572
|
+
// 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/ecwplus/ListPageDesigner/src/ListStyle.vue?vue&type=style&index=0&id=191e1748&prod&lang=scss&scoped=true
|
|
232573
|
+
var ListStylevue_type_style_index_0_id_191e1748_prod_lang_scss_scoped_true = __webpack_require__(5707);
|
|
232574
|
+
;// CONCATENATED MODULE: ./packages/ecwplus/ListPageDesigner/src/ListStyle.vue?vue&type=style&index=0&id=191e1748&prod&lang=scss&scoped=true
|
|
232374
232575
|
|
|
232375
232576
|
;// CONCATENATED MODULE: ./packages/ecwplus/ListPageDesigner/src/ListStyle.vue
|
|
232376
232577
|
|
|
@@ -232383,11 +232584,11 @@ var ListStylevue_type_style_index_0_id_7ae7f35a_prod_lang_scss_scoped_true = __w
|
|
|
232383
232584
|
|
|
232384
232585
|
var ListStyle_component = (0,componentNormalizer/* default */.A)(
|
|
232385
232586
|
src_ListStylevue_type_script_lang_js,
|
|
232386
|
-
|
|
232387
|
-
|
|
232587
|
+
ListStylevue_type_template_id_191e1748_scoped_true_render,
|
|
232588
|
+
ListStylevue_type_template_id_191e1748_scoped_true_staticRenderFns,
|
|
232388
232589
|
false,
|
|
232389
232590
|
null,
|
|
232390
|
-
"
|
|
232591
|
+
"191e1748",
|
|
232391
232592
|
null
|
|
232392
232593
|
|
|
232393
232594
|
)
|
|
@@ -237539,12 +237740,6 @@ var ListSqlJoin_component = (0,componentNormalizer/* default */.A)(
|
|
|
237539
237740
|
/* harmony default export */ var ListSqlJoin = (ListSqlJoin_component.exports);
|
|
237540
237741
|
;// 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/ecwplus/ListPageDesigner/src/index.vue?vue&type=script&lang=js
|
|
237541
237742
|
function ListPageDesigner_srcvue_type_script_lang_js_typeof(o) { "@babel/helpers - typeof"; return ListPageDesigner_srcvue_type_script_lang_js_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; }, ListPageDesigner_srcvue_type_script_lang_js_typeof(o); }
|
|
237542
|
-
function ListPageDesigner_srcvue_type_script_lang_js_slicedToArray(r, e) { return ListPageDesigner_srcvue_type_script_lang_js_arrayWithHoles(r) || ListPageDesigner_srcvue_type_script_lang_js_iterableToArrayLimit(r, e) || ListPageDesigner_srcvue_type_script_lang_js_unsupportedIterableToArray(r, e) || ListPageDesigner_srcvue_type_script_lang_js_nonIterableRest(); }
|
|
237543
|
-
function ListPageDesigner_srcvue_type_script_lang_js_nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
237544
|
-
function ListPageDesigner_srcvue_type_script_lang_js_unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return ListPageDesigner_srcvue_type_script_lang_js_arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? ListPageDesigner_srcvue_type_script_lang_js_arrayLikeToArray(r, a) : void 0; } }
|
|
237545
|
-
function ListPageDesigner_srcvue_type_script_lang_js_arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
237546
|
-
function ListPageDesigner_srcvue_type_script_lang_js_iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
237547
|
-
function ListPageDesigner_srcvue_type_script_lang_js_arrayWithHoles(r) { if (Array.isArray(r)) return r; }
|
|
237548
237743
|
|
|
237549
237744
|
|
|
237550
237745
|
|
|
@@ -237667,7 +237862,7 @@ function ListPageDesigner_srcvue_type_script_lang_js_arrayWithHoles(r) { if (Arr
|
|
|
237667
237862
|
setTbColumns: function setTbColumns() {
|
|
237668
237863
|
var _this = this;
|
|
237669
237864
|
_this.listpage.tbColumns = [];
|
|
237670
|
-
|
|
237865
|
+
this.tableFieldInfo.forEach(function (item, index) {
|
|
237671
237866
|
// 有备注属性的非主键列,做为列表定义的备选列
|
|
237672
237867
|
if (item.propComment !== null && item.propComment !== '' && item.isPrimaryKey !== 1) {
|
|
237673
237868
|
// 隐藏字段、多行文本框默认不显示到列表
|
|
@@ -237727,61 +237922,15 @@ function ListPageDesigner_srcvue_type_script_lang_js_arrayWithHoles(r) { if (Arr
|
|
|
237727
237922
|
} else {
|
|
237728
237923
|
item.listThOrderBy = null;
|
|
237729
237924
|
}
|
|
237730
|
-
if (item.listThStyle) {
|
|
237731
|
-
var thStyleObj = _this.getHeaderStyle(item.listThStyle);
|
|
237732
|
-
// 字体颜色回填(表头)
|
|
237733
|
-
if (thStyleObj.color) {
|
|
237734
|
-
item.listThStyleColor = thStyleObj.color;
|
|
237735
|
-
}
|
|
237736
|
-
}
|
|
237737
|
-
if (item.listTdStyle) {
|
|
237738
|
-
var tdStyleObj = _this.getHeaderStyle(item.listTdStyle);
|
|
237739
|
-
// 字体颜色回填
|
|
237740
|
-
if (tdStyleObj.color) {
|
|
237741
|
-
item.listTdStyleColor = tdStyleObj.color;
|
|
237742
|
-
}
|
|
237743
|
-
}
|
|
237744
237925
|
_this.listpage.tbColumns.push(item);
|
|
237745
237926
|
}
|
|
237746
237927
|
});
|
|
237747
|
-
console.log(_this.listpage, '_this.listpage');
|
|
237748
|
-
console.log(_this.listpage.tbColumns, '_this.listpage');
|
|
237749
237928
|
if (_this.tbEntity.tbName.toLowerCase().indexOf('udm_jysp_') === 0) {
|
|
237750
237929
|
_this.listpage.tbColumns = _this.listpage.tbColumns.sort(function (a, b) {
|
|
237751
237930
|
return a.listIndex - b.listIndex;
|
|
237752
237931
|
});
|
|
237753
237932
|
}
|
|
237754
237933
|
},
|
|
237755
|
-
// 样式转换方法
|
|
237756
|
-
getHeaderStyle: function getHeaderStyle(style) {
|
|
237757
|
-
return this.parseCssString(style);
|
|
237758
|
-
},
|
|
237759
|
-
// CSS 字符串转对象的核心方法
|
|
237760
|
-
parseCssString: function parseCssString(cssString) {
|
|
237761
|
-
if (!cssString) return {};
|
|
237762
|
-
return cssString.split(';').filter(function (rule) {
|
|
237763
|
-
return rule.trim();
|
|
237764
|
-
}) // 过滤空值
|
|
237765
|
-
.reduce(function (obj, rule) {
|
|
237766
|
-
var _rule$split$map = rule.split(':').map(function (s) {
|
|
237767
|
-
return s.trim();
|
|
237768
|
-
}),
|
|
237769
|
-
_rule$split$map2 = ListPageDesigner_srcvue_type_script_lang_js_slicedToArray(_rule$split$map, 2),
|
|
237770
|
-
key = _rule$split$map2[0],
|
|
237771
|
-
value = _rule$split$map2[1];
|
|
237772
|
-
if (key && value) {
|
|
237773
|
-
// 转换 CSS 属性名为小驼峰格式
|
|
237774
|
-
var camelCaseKey = key.replace(/-(\w)/g, function (_, letter) {
|
|
237775
|
-
return letter.toUpperCase();
|
|
237776
|
-
});
|
|
237777
|
-
|
|
237778
|
-
// 处理 !important 等特殊情况
|
|
237779
|
-
var processedValue = value.includes('!important') ? "".concat(value.replace('!important', '').trim(), " !important") : value;
|
|
237780
|
-
obj[camelCaseKey] = processedValue;
|
|
237781
|
-
}
|
|
237782
|
-
return obj;
|
|
237783
|
-
}, {});
|
|
237784
|
-
},
|
|
237785
237934
|
setListColumns: function setListColumns(listpageInfo) {
|
|
237786
237935
|
var _this2 = this;
|
|
237787
237936
|
listpageInfo = listpageInfo || this.listpage;
|
|
@@ -237817,24 +237966,6 @@ function ListPageDesigner_srcvue_type_script_lang_js_arrayWithHoles(r) { if (Arr
|
|
|
237817
237966
|
column.fixed = item.listFixed;
|
|
237818
237967
|
column.listTdEdit = item.listTdEdit;
|
|
237819
237968
|
column.listTdRequired = item.listTdRequired;
|
|
237820
|
-
var RESET_STYLE = '';
|
|
237821
|
-
// 先清空原有样式
|
|
237822
|
-
column.listTdStyle = RESET_STYLE;
|
|
237823
|
-
column.listThStyle = RESET_STYLE;
|
|
237824
|
-
item.listTdStyle = RESET_STYLE;
|
|
237825
|
-
item.listThStyle = RESET_STYLE;
|
|
237826
|
-
|
|
237827
|
-
// 如果设置则给上
|
|
237828
|
-
if (item.listTdStyleColor) {
|
|
237829
|
-
column.listTdStyle += 'color:' + item.listTdStyleColor + ';';
|
|
237830
|
-
item.listTdStyle += 'color:' + item.listTdStyleColor + ';';
|
|
237831
|
-
column.listThStyle = 'color:' + item.listTdStyleColor + ';'; // 目前特殊处理一个设置窗口设置表头跟内容
|
|
237832
|
-
item.listThStyle += 'color:' + item.listTdStyleColor + ';';
|
|
237833
|
-
}
|
|
237834
|
-
if (item.listThStyleColor) {
|
|
237835
|
-
column.listThStyle = 'color:' + item.listThStyleColor + ';';
|
|
237836
|
-
item.listThStyle += 'color:' + item.listThStyleColor + ';';
|
|
237837
|
-
}
|
|
237838
237969
|
if (item.listAdvSearchElement === null && _this2.actionType === 'addNew' && listpageInfo.listViewType === 'W') {
|
|
237839
237970
|
// 新建PC列表,初始化默认高级搜索,避免配置列表样式后直接保存(未打开高级搜索定义标签)后,列表无搜索条件的问题
|
|
237840
237971
|
if (item.elementType === 'input' || item.elementType === 'textarea' || item.elementType === 'richtext') {
|
|
@@ -237984,9 +238115,9 @@ function ListPageDesigner_srcvue_type_script_lang_js_arrayWithHoles(r) { if (Arr
|
|
|
237984
238115
|
});
|
|
237985
238116
|
;// CONCATENATED MODULE: ./packages/ecwplus/ListPageDesigner/src/index.vue?vue&type=script&lang=js
|
|
237986
238117
|
/* harmony default export */ var ecwplus_ListPageDesigner_srcvue_type_script_lang_js = (ListPageDesigner_srcvue_type_script_lang_js);
|
|
237987
|
-
// 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/ecwplus/ListPageDesigner/src/index.vue?vue&type=style&index=0&id=
|
|
237988
|
-
var
|
|
237989
|
-
;// CONCATENATED MODULE: ./packages/ecwplus/ListPageDesigner/src/index.vue?vue&type=style&index=0&id=
|
|
238118
|
+
// 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/ecwplus/ListPageDesigner/src/index.vue?vue&type=style&index=0&id=a1780b48&prod&lang=scss&scoped=true
|
|
238119
|
+
var srcvue_type_style_index_0_id_a1780b48_prod_lang_scss_scoped_true = __webpack_require__(54639);
|
|
238120
|
+
;// CONCATENATED MODULE: ./packages/ecwplus/ListPageDesigner/src/index.vue?vue&type=style&index=0&id=a1780b48&prod&lang=scss&scoped=true
|
|
237990
238121
|
|
|
237991
238122
|
;// CONCATENATED MODULE: ./packages/ecwplus/ListPageDesigner/src/index.vue
|
|
237992
238123
|
|
|
@@ -237999,11 +238130,11 @@ var srcvue_type_style_index_0_id_5bd746e7_prod_lang_scss_scoped_true = __webpack
|
|
|
237999
238130
|
|
|
238000
238131
|
var ListPageDesigner_src_component = (0,componentNormalizer/* default */.A)(
|
|
238001
238132
|
ecwplus_ListPageDesigner_srcvue_type_script_lang_js,
|
|
238002
|
-
|
|
238003
|
-
|
|
238133
|
+
srcvue_type_template_id_a1780b48_scoped_true_render,
|
|
238134
|
+
srcvue_type_template_id_a1780b48_scoped_true_staticRenderFns,
|
|
238004
238135
|
false,
|
|
238005
238136
|
null,
|
|
238006
|
-
"
|
|
238137
|
+
"a1780b48",
|
|
238007
238138
|
null
|
|
238008
238139
|
|
|
238009
238140
|
)
|
|
@@ -253999,8 +254130,8 @@ var SideBar_component = (0,componentNormalizer/* default */.A)(
|
|
|
253999
254130
|
)
|
|
254000
254131
|
|
|
254001
254132
|
/* harmony default export */ var SideBar = (SideBar_component.exports);
|
|
254002
|
-
;// 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/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=template&id=
|
|
254003
|
-
var
|
|
254133
|
+
;// 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/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=template&id=142c1963&scoped=true
|
|
254134
|
+
var Centervue_type_template_id_142c1963_scoped_true_render = function render() {
|
|
254004
254135
|
var _vm = this,
|
|
254005
254136
|
_c = _vm._self._c;
|
|
254006
254137
|
return _c('el-scrollbar', {
|
|
@@ -254116,7 +254247,7 @@ var Centervue_type_template_id_07513432_scoped_true_render = function render() {
|
|
|
254116
254247
|
}
|
|
254117
254248
|
})], 1)], 1)]);
|
|
254118
254249
|
};
|
|
254119
|
-
var
|
|
254250
|
+
var Centervue_type_template_id_142c1963_scoped_true_staticRenderFns = [];
|
|
254120
254251
|
|
|
254121
254252
|
// EXTERNAL MODULE: ./packages/ecwplus/WorkflowDesigner/src/scripts/common.js
|
|
254122
254253
|
var common = __webpack_require__(12885);
|
|
@@ -255595,7 +255726,7 @@ var _require21 = __webpack_require__(53978),
|
|
|
255595
255726
|
return false;
|
|
255596
255727
|
}
|
|
255597
255728
|
},
|
|
255598
|
-
//
|
|
255729
|
+
// 环节数量
|
|
255599
255730
|
getProcessNum: function getProcessNum(nodeType) {
|
|
255600
255731
|
var isPersonNode = nodeType === 'ptjd' || nodeType === 'jzjd' || nodeType === 'drbx' || nodeType === 'drcx' || nodeType === 'hqjd' || nodeType === 'ywjd' || nodeType === 'jcjd' || nodeType === 'jhjd' || nodeType === 'childWf';
|
|
255601
255732
|
var aProcess = jquery_default()('.process');
|
|
@@ -255729,34 +255860,6 @@ var _require21 = __webpack_require__(53978),
|
|
|
255729
255860
|
}
|
|
255730
255861
|
return found;
|
|
255731
255862
|
},
|
|
255732
|
-
// 相同意见
|
|
255733
|
-
filterEqual: function filterEqual(arr1, arr2) {
|
|
255734
|
-
var result = [];
|
|
255735
|
-
for (var i = 0; i < arr1.length; i++) {
|
|
255736
|
-
for (var j = 0; j < arr2.length; j++) {
|
|
255737
|
-
if (arr1[i] === arr2[j].name) {
|
|
255738
|
-
result.push(arr2[j]);
|
|
255739
|
-
}
|
|
255740
|
-
}
|
|
255741
|
-
}
|
|
255742
|
-
return result;
|
|
255743
|
-
},
|
|
255744
|
-
// 不同意见
|
|
255745
|
-
filterDifferent: function filterDifferent(arr1, arr2) {
|
|
255746
|
-
var result = [];
|
|
255747
|
-
for (var i = 0; i < arr1.length; i++) {
|
|
255748
|
-
var flag = true;
|
|
255749
|
-
for (var j = 0; j < arr2.length; j++) {
|
|
255750
|
-
if (arr1[i] === arr2[j].name) {
|
|
255751
|
-
flag = false;
|
|
255752
|
-
}
|
|
255753
|
-
}
|
|
255754
|
-
if (flag) {
|
|
255755
|
-
result.push(arr1[i]);
|
|
255756
|
-
}
|
|
255757
|
-
}
|
|
255758
|
-
return result;
|
|
255759
|
-
},
|
|
255760
255863
|
// 保存流程验证
|
|
255761
255864
|
customValidate: function customValidate(wflow) {
|
|
255762
255865
|
// 1process的名称(显示流程面板)
|
|
@@ -256137,61 +256240,10 @@ var _require21 = __webpack_require__(53978),
|
|
|
256137
256240
|
}
|
|
256138
256241
|
},
|
|
256139
256242
|
bindName: function bindName(id, name) {
|
|
256140
|
-
|
|
256141
|
-
jquery_default()('#' + id).html(name);
|
|
256142
|
-
} else {
|
|
256143
|
-
jquery_default()('#' + id).find('p').html(name);
|
|
256144
|
-
}
|
|
256243
|
+
ecinc_process.bindName(id, name);
|
|
256145
256244
|
},
|
|
256146
256245
|
changeNodeType: function changeNodeType(id, type, curNode) {
|
|
256147
|
-
|
|
256148
|
-
jquery_default()('#' + id).removeClass('ywjd');
|
|
256149
|
-
jquery_default()('#' + id).removeClass('drbx');
|
|
256150
|
-
jquery_default()('#' + id).removeClass('hqjd');
|
|
256151
|
-
jquery_default()('#' + id).removeClass('drcx');
|
|
256152
|
-
jquery_default()('#' + id).removeClass('jzjd');
|
|
256153
|
-
switch (type) {
|
|
256154
|
-
case 0:
|
|
256155
|
-
if (curNode.nodeNo !== 'start') {
|
|
256156
|
-
// $('#' + id).removeClass()
|
|
256157
|
-
if (curNode.nodeType === 1) {
|
|
256158
|
-
jquery_default()('#' + id).addClass('process model_process ptjd');
|
|
256159
|
-
jquery_default()('#' + id).find('img').attr('src', this.ptjd);
|
|
256160
|
-
jquery_default()('#' + id).find('span').html('普通节点');
|
|
256161
|
-
} else {
|
|
256162
|
-
jquery_default()('#' + id).addClass('process model_process ywjd');
|
|
256163
|
-
jquery_default()('#' + id).find('img').attr('src', this.ywjd);
|
|
256164
|
-
jquery_default()('#' + id).find('span').html('阅文节点');
|
|
256165
|
-
}
|
|
256166
|
-
}
|
|
256167
|
-
break;
|
|
256168
|
-
case 1:
|
|
256169
|
-
// $('#' + id).removeClass()
|
|
256170
|
-
jquery_default()('#' + id).addClass('process model_process drbx');
|
|
256171
|
-
jquery_default()('#' + id).find('img').attr('src', this.drbx);
|
|
256172
|
-
jquery_default()('#' + id).find('span').html('多人并行');
|
|
256173
|
-
break;
|
|
256174
|
-
case 2:
|
|
256175
|
-
// $('#' + id).removeClass()
|
|
256176
|
-
jquery_default()('#' + id).addClass('process model_process hqjd');
|
|
256177
|
-
jquery_default()('#' + id).find('img').attr('src', this.hqjd);
|
|
256178
|
-
jquery_default()('#' + id).find('span').html('会签节点');
|
|
256179
|
-
break;
|
|
256180
|
-
case 3:
|
|
256181
|
-
// $('#' + id).removeClass()
|
|
256182
|
-
jquery_default()('#' + id).addClass('process model_process drcx');
|
|
256183
|
-
jquery_default()('#' + id).find('img').attr('src', this.drcx);
|
|
256184
|
-
jquery_default()('#' + id).find('span').html('多人串行');
|
|
256185
|
-
break;
|
|
256186
|
-
case 4:
|
|
256187
|
-
case 5:
|
|
256188
|
-
case 6:
|
|
256189
|
-
// $('#' + id).removeClass()
|
|
256190
|
-
jquery_default()('#' + id).addClass('process model_process jzjd');
|
|
256191
|
-
jquery_default()('#' + id).find('img').attr('src', this.jzjd);
|
|
256192
|
-
jquery_default()('#' + id).find('span').html('竞争节点');
|
|
256193
|
-
break;
|
|
256194
|
-
}
|
|
256246
|
+
ecinc_process.changeNodeType(this, id, type, curNode);
|
|
256195
256247
|
},
|
|
256196
256248
|
// 流程意见标签保存
|
|
256197
256249
|
saveIdeaLable: function saveIdeaLable(ideaLabels) {
|
|
@@ -256461,123 +256513,11 @@ var _require21 = __webpack_require__(53978),
|
|
|
256461
256513
|
}
|
|
256462
256514
|
},
|
|
256463
256515
|
AddAnchor: function AddAnchor() {
|
|
256464
|
-
|
|
256465
|
-
var classList = e.currentTarget.classList;
|
|
256466
|
-
// ($.inArray('jhjd', classList) === 1) || 聚合节点双击增加锚点
|
|
256467
|
-
if (jquery_default().inArray('jcjd', classList) === 1) {
|
|
256468
|
-
// return
|
|
256469
|
-
}
|
|
256470
|
-
var L = e.pageX;
|
|
256471
|
-
var T = e.pageY;
|
|
256472
|
-
var objTOP = jquery_default()('#' + e.currentTarget.id).offset().top;
|
|
256473
|
-
var objLEFT = jquery_default()('#' + e.currentTarget.id).offset().left;
|
|
256474
|
-
var objWidth = jquery_default()('#' + e.currentTarget.id).width();
|
|
256475
|
-
var objHeight = jquery_default()('#' + e.currentTarget.id).height();
|
|
256476
|
-
// console.log("鼠标位置",T,L)
|
|
256477
|
-
// console.log("元素相对视窗位置",objTOP,objLEFT)
|
|
256478
|
-
// console.log("元素宽高",objWidth,objHeight)
|
|
256479
|
-
var SCALEX;
|
|
256480
|
-
var SCALEY;
|
|
256481
|
-
var DX;
|
|
256482
|
-
var DY;
|
|
256483
|
-
// 当鼠标落位到节点上半区时
|
|
256484
|
-
if (T - objTOP <= objHeight / 2) {
|
|
256485
|
-
// 落位在第一象限
|
|
256486
|
-
if (L - objLEFT <= objWidth / 2) {
|
|
256487
|
-
if (L - objLEFT <= T - objTOP) {
|
|
256488
|
-
SCALEX = 0;
|
|
256489
|
-
SCALEY = parseFloat((T - objTOP) / objHeight);
|
|
256490
|
-
DX = -1;
|
|
256491
|
-
DY = 0;
|
|
256492
|
-
} else {
|
|
256493
|
-
SCALEY = 0;
|
|
256494
|
-
SCALEX = parseFloat((L - objLEFT) / objWidth);
|
|
256495
|
-
DX = 0;
|
|
256496
|
-
DY = -1;
|
|
256497
|
-
}
|
|
256498
|
-
} else {
|
|
256499
|
-
// 落位在第二象限
|
|
256500
|
-
if (objWidth - (L - objLEFT) <= T - objTOP) {
|
|
256501
|
-
SCALEX = 1;
|
|
256502
|
-
SCALEY = parseFloat((T - objTOP) / objHeight);
|
|
256503
|
-
DX = 1;
|
|
256504
|
-
DY = 0;
|
|
256505
|
-
} else {
|
|
256506
|
-
SCALEY = 0;
|
|
256507
|
-
SCALEX = parseFloat((L - objLEFT) / objWidth);
|
|
256508
|
-
DX = 0;
|
|
256509
|
-
DY = -1;
|
|
256510
|
-
}
|
|
256511
|
-
}
|
|
256512
|
-
} else {
|
|
256513
|
-
// 落位在下半区
|
|
256514
|
-
// 落位在第三象限
|
|
256515
|
-
if (L - objLEFT <= objWidth / 2) {
|
|
256516
|
-
if (objHeight - (T - objTOP) <= L - objLEFT) {
|
|
256517
|
-
SCALEX = parseFloat((L - objLEFT) / objWidth);
|
|
256518
|
-
SCALEY = 1;
|
|
256519
|
-
DX = 0;
|
|
256520
|
-
DY = 1;
|
|
256521
|
-
} else {
|
|
256522
|
-
SCALEX = 0;
|
|
256523
|
-
SCALEY = parseFloat((T - objTOP) / objHeight);
|
|
256524
|
-
DX = -1;
|
|
256525
|
-
DY = 0;
|
|
256526
|
-
}
|
|
256527
|
-
} else {
|
|
256528
|
-
// 落位在第四象限
|
|
256529
|
-
if (objHeight - (T - objTOP) <= objWidth - (L - objLEFT)) {
|
|
256530
|
-
SCALEX = parseFloat((L - objLEFT) / objWidth);
|
|
256531
|
-
SCALEY = 1;
|
|
256532
|
-
DX = 0;
|
|
256533
|
-
DY = 1;
|
|
256534
|
-
} else {
|
|
256535
|
-
SCALEX = 1;
|
|
256536
|
-
SCALEY = parseFloat((T - objTOP) / objHeight);
|
|
256537
|
-
DX = 1;
|
|
256538
|
-
DY = 0;
|
|
256539
|
-
}
|
|
256540
|
-
}
|
|
256541
|
-
}
|
|
256542
|
-
Centervue_type_script_lang_js_jsPlumb.addEndpoint(e.currentTarget.id, {
|
|
256543
|
-
anchor: [SCALEX, SCALEY, DX, DY]
|
|
256544
|
-
}, globalStyle/* hollowCircle */.Yy);
|
|
256545
|
-
});
|
|
256516
|
+
ecinc_process.AddAnchor(this, globalStyle/* hollowCircle */.Yy);
|
|
256546
256517
|
},
|
|
256547
256518
|
// 判断是否有 路径超出了范围
|
|
256548
256519
|
ComparePath: function ComparePath() {
|
|
256549
|
-
|
|
256550
|
-
var clientWidth = document.querySelector('.center-container').clientWidth;
|
|
256551
|
-
if (scrollWidth > clientWidth) {
|
|
256552
|
-
jquery_default()('#center').width(scrollWidth + 50);
|
|
256553
|
-
}
|
|
256554
|
-
var scrollHeight = document.querySelector('.center-container').scrollHeight;
|
|
256555
|
-
var clientHeight = document.querySelector('.center-container').clientHeight;
|
|
256556
|
-
if (scrollHeight > clientHeight) {
|
|
256557
|
-
jquery_default()('#center').height(scrollHeight + 50);
|
|
256558
|
-
}
|
|
256559
|
-
var offsetLeft = 0;
|
|
256560
|
-
var offsetTop = 0;
|
|
256561
|
-
document.querySelector('.center-container').childNodes.forEach(function (item) {
|
|
256562
|
-
if (item.offsetLeft < offsetLeft) {
|
|
256563
|
-
offsetLeft = item.offsetLeft;
|
|
256564
|
-
}
|
|
256565
|
-
if (item.offsetTop < offsetTop) {
|
|
256566
|
-
offsetTop = item.offsetTop;
|
|
256567
|
-
}
|
|
256568
|
-
});
|
|
256569
|
-
if (offsetLeft < 0 || offsetTop < 112) {
|
|
256570
|
-
document.querySelector('.center-container').childNodes.forEach(function (item) {
|
|
256571
|
-
if (item.tagName === 'DIV' && item.id) {
|
|
256572
|
-
if (offsetLeft < 0) {
|
|
256573
|
-
jquery_default()('#' + item.id).css('left', parseInt(jquery_default()('#' + item.id).css('left')) + offsetLeft * -1 + 50 + 'px');
|
|
256574
|
-
} else if (offsetTop < 0) {
|
|
256575
|
-
jquery_default()('#' + item.id).css('top', parseInt(jquery_default()('#' + item.id).css('top')) + offsetTop * -1 + 50 + 'px');
|
|
256576
|
-
}
|
|
256577
|
-
}
|
|
256578
|
-
});
|
|
256579
|
-
Centervue_type_script_lang_js_jsPlumb.repaintEverything();
|
|
256580
|
-
}
|
|
256520
|
+
ecinc_process.ComparePath();
|
|
256581
256521
|
},
|
|
256582
256522
|
btnAddNodeClick: function btnAddNodeClick(event) {
|
|
256583
256523
|
addNodeBtnClick(this, event, event.currentTarget);
|
|
@@ -256586,13 +256526,13 @@ var _require21 = __webpack_require__(53978),
|
|
|
256586
256526
|
});
|
|
256587
256527
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=script&lang=js
|
|
256588
256528
|
/* harmony default export */ var components_Centervue_type_script_lang_js = (Centervue_type_script_lang_js);
|
|
256589
|
-
// 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/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=style&index=0&id=
|
|
256590
|
-
var
|
|
256591
|
-
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=style&index=0&id=
|
|
256529
|
+
// 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/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=style&index=0&id=142c1963&prod&scoped=true&lang=scss
|
|
256530
|
+
var Centervue_type_style_index_0_id_142c1963_prod_scoped_true_lang_scss = __webpack_require__(8700);
|
|
256531
|
+
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=style&index=0&id=142c1963&prod&scoped=true&lang=scss
|
|
256592
256532
|
|
|
256593
|
-
// 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/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=style&index=1&id=
|
|
256594
|
-
var
|
|
256595
|
-
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=style&index=1&id=
|
|
256533
|
+
// 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/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=style&index=1&id=142c1963&prod&lang=scss
|
|
256534
|
+
var Centervue_type_style_index_1_id_142c1963_prod_lang_scss = __webpack_require__(95200);
|
|
256535
|
+
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Center/index.vue?vue&type=style&index=1&id=142c1963&prod&lang=scss
|
|
256596
256536
|
|
|
256597
256537
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Center/index.vue
|
|
256598
256538
|
|
|
@@ -256606,11 +256546,11 @@ var Centervue_type_style_index_1_id_07513432_prod_lang_scss = __webpack_require_
|
|
|
256606
256546
|
|
|
256607
256547
|
var Center_component = (0,componentNormalizer/* default */.A)(
|
|
256608
256548
|
components_Centervue_type_script_lang_js,
|
|
256609
|
-
|
|
256610
|
-
|
|
256549
|
+
Centervue_type_template_id_142c1963_scoped_true_render,
|
|
256550
|
+
Centervue_type_template_id_142c1963_scoped_true_staticRenderFns,
|
|
256611
256551
|
false,
|
|
256612
256552
|
null,
|
|
256613
|
-
"
|
|
256553
|
+
"142c1963",
|
|
256614
256554
|
null
|
|
256615
256555
|
|
|
256616
256556
|
)
|
|
@@ -258087,8 +258027,8 @@ var Tab1vue_type_template_id_61273c60_scoped_true_staticRenderFns = [function ()
|
|
|
258087
258027
|
|
|
258088
258028
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/RightForm/PanelProcess/Tab1.vue?vue&type=template&id=61273c60&scoped=true
|
|
258089
258029
|
|
|
258090
|
-
;// 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/ecwplus/WorkflowDesigner/src/components/RightForm/PanelProcess/IdeaLabelForm.vue?vue&type=template&id=
|
|
258091
|
-
var
|
|
258030
|
+
;// 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/ecwplus/WorkflowDesigner/src/components/RightForm/PanelProcess/IdeaLabelForm.vue?vue&type=template&id=dfecb90a&scoped=true
|
|
258031
|
+
var IdeaLabelFormvue_type_template_id_dfecb90a_scoped_true_render = function render() {
|
|
258092
258032
|
var _vm = this,
|
|
258093
258033
|
_c = _vm._self._c;
|
|
258094
258034
|
return _c('div', [_c('el-form', {
|
|
@@ -258938,7 +258878,7 @@ var IdeaLabelFormvue_type_template_id_8428b472_scoped_true_render = function ren
|
|
|
258938
258878
|
}, [_c('el-radio', {
|
|
258939
258879
|
attrs: {
|
|
258940
258880
|
"label": 0,
|
|
258941
|
-
"name": "
|
|
258881
|
+
"name": "syncToLinkedwf"
|
|
258942
258882
|
},
|
|
258943
258883
|
model: {
|
|
258944
258884
|
value: _vm.curIdeaLabel.syncToLinkedwf,
|
|
@@ -258950,7 +258890,7 @@ var IdeaLabelFormvue_type_template_id_8428b472_scoped_true_render = function ren
|
|
|
258950
258890
|
}, [_vm._v("否")]), _c('el-radio', {
|
|
258951
258891
|
attrs: {
|
|
258952
258892
|
"label": 1,
|
|
258953
|
-
"name": "
|
|
258893
|
+
"name": "syncToLinkedwf"
|
|
258954
258894
|
},
|
|
258955
258895
|
model: {
|
|
258956
258896
|
value: _vm.curIdeaLabel.syncToLinkedwf,
|
|
@@ -258994,7 +258934,7 @@ var IdeaLabelFormvue_type_template_id_8428b472_scoped_true_render = function ren
|
|
|
258994
258934
|
}
|
|
258995
258935
|
})], 1)]) : _vm._e()] : _vm._e()], 2)])])])])], 1);
|
|
258996
258936
|
};
|
|
258997
|
-
var
|
|
258937
|
+
var IdeaLabelFormvue_type_template_id_dfecb90a_scoped_true_staticRenderFns = [];
|
|
258998
258938
|
|
|
258999
258939
|
;// 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/ecwplus/WorkflowDesigner/src/components/RightForm/PanelProcess/IdeaLabelForm.vue?vue&type=script&lang=js
|
|
259000
258940
|
/* harmony default export */ var IdeaLabelFormvue_type_script_lang_js = ({
|
|
@@ -259216,9 +259156,9 @@ var IdeaLabelFormvue_type_template_id_8428b472_scoped_true_staticRenderFns = [];
|
|
|
259216
259156
|
});
|
|
259217
259157
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/RightForm/PanelProcess/IdeaLabelForm.vue?vue&type=script&lang=js
|
|
259218
259158
|
/* harmony default export */ var PanelProcess_IdeaLabelFormvue_type_script_lang_js = (IdeaLabelFormvue_type_script_lang_js);
|
|
259219
|
-
// 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/ecwplus/WorkflowDesigner/src/components/RightForm/PanelProcess/IdeaLabelForm.vue?vue&type=style&index=0&id=
|
|
259220
|
-
var
|
|
259221
|
-
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/RightForm/PanelProcess/IdeaLabelForm.vue?vue&type=style&index=0&id=
|
|
259159
|
+
// 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/ecwplus/WorkflowDesigner/src/components/RightForm/PanelProcess/IdeaLabelForm.vue?vue&type=style&index=0&id=dfecb90a&prod&scoped=true&lang=scss
|
|
259160
|
+
var IdeaLabelFormvue_type_style_index_0_id_dfecb90a_prod_scoped_true_lang_scss = __webpack_require__(56313);
|
|
259161
|
+
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/RightForm/PanelProcess/IdeaLabelForm.vue?vue&type=style&index=0&id=dfecb90a&prod&scoped=true&lang=scss
|
|
259222
259162
|
|
|
259223
259163
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/RightForm/PanelProcess/IdeaLabelForm.vue
|
|
259224
259164
|
|
|
@@ -259231,11 +259171,11 @@ var IdeaLabelFormvue_type_style_index_0_id_8428b472_prod_scoped_true_lang_scss =
|
|
|
259231
259171
|
|
|
259232
259172
|
var IdeaLabelForm_component = (0,componentNormalizer/* default */.A)(
|
|
259233
259173
|
PanelProcess_IdeaLabelFormvue_type_script_lang_js,
|
|
259234
|
-
|
|
259235
|
-
|
|
259174
|
+
IdeaLabelFormvue_type_template_id_dfecb90a_scoped_true_render,
|
|
259175
|
+
IdeaLabelFormvue_type_template_id_dfecb90a_scoped_true_staticRenderFns,
|
|
259236
259176
|
false,
|
|
259237
259177
|
null,
|
|
259238
|
-
"
|
|
259178
|
+
"dfecb90a",
|
|
259239
259179
|
null
|
|
259240
259180
|
|
|
259241
259181
|
)
|
|
@@ -273788,12 +273728,12 @@ var ImportWf_component = (0,componentNormalizer/* default */.A)(
|
|
|
273788
273728
|
)
|
|
273789
273729
|
|
|
273790
273730
|
/* harmony default export */ var ImportWf = (ImportWf_component.exports);
|
|
273791
|
-
;// 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/ecwplus/WorkflowDesigner/src/components/FlowTrace/index.vue?vue&type=template&id=
|
|
273792
|
-
var
|
|
273731
|
+
;// 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/ecwplus/WorkflowDesigner/src/components/FlowTrace/index.vue?vue&type=template&id=720c8d3e&scoped=true
|
|
273732
|
+
var FlowTracevue_type_template_id_720c8d3e_scoped_true_render = function render() {
|
|
273793
273733
|
var _vm = this,
|
|
273794
273734
|
_c = _vm._self._c;
|
|
273795
273735
|
return _c('div', {
|
|
273796
|
-
staticClass: "
|
|
273736
|
+
staticClass: "wfdialog-center-container"
|
|
273797
273737
|
}, [_c('div', {
|
|
273798
273738
|
staticClass: "node-bg-desc"
|
|
273799
273739
|
}, [_c('el-row', [_c('el-col', {
|
|
@@ -273827,10 +273767,86 @@ var FlowTracevue_type_template_id_11c9d218_scoped_true_render = function render(
|
|
|
273827
273767
|
value: _vm.loading,
|
|
273828
273768
|
expression: "loading"
|
|
273829
273769
|
}],
|
|
273770
|
+
staticClass: "center-container",
|
|
273830
273771
|
attrs: {
|
|
273831
273772
|
"id": "center"
|
|
273832
273773
|
}
|
|
273833
|
-
}
|
|
273774
|
+
}, [_vm._m(0), _c('el-tooltip', {
|
|
273775
|
+
attrs: {
|
|
273776
|
+
"effect": "dark"
|
|
273777
|
+
}
|
|
273778
|
+
}, [_c('div', {
|
|
273779
|
+
attrs: {
|
|
273780
|
+
"slot": "content"
|
|
273781
|
+
},
|
|
273782
|
+
slot: "content"
|
|
273783
|
+
}, [_vm._v(" 点击添加新节点 "), _c('br'), _vm._v(" 右击切换为连接线模式 ")]), _c('el-button', {
|
|
273784
|
+
directives: [{
|
|
273785
|
+
name: "show",
|
|
273786
|
+
rawName: "v-show",
|
|
273787
|
+
value: !_vm.dragLine,
|
|
273788
|
+
expression: "!dragLine"
|
|
273789
|
+
}],
|
|
273790
|
+
staticClass: "add-node-btn",
|
|
273791
|
+
attrs: {
|
|
273792
|
+
"id": "addNodeBtn",
|
|
273793
|
+
"plain": "",
|
|
273794
|
+
"size": "mini",
|
|
273795
|
+
"icon": "el-icon-plus",
|
|
273796
|
+
"circle": ""
|
|
273797
|
+
},
|
|
273798
|
+
on: {
|
|
273799
|
+
"click": _vm.btnAddNodeClick
|
|
273800
|
+
}
|
|
273801
|
+
})], 1), _c('el-tooltip', {
|
|
273802
|
+
attrs: {
|
|
273803
|
+
"effect": "dark"
|
|
273804
|
+
}
|
|
273805
|
+
}, [_c('div', {
|
|
273806
|
+
attrs: {
|
|
273807
|
+
"slot": "content"
|
|
273808
|
+
},
|
|
273809
|
+
slot: "content"
|
|
273810
|
+
}, [_vm._v("右击切换为添加节点模式")]), _c('el-button', {
|
|
273811
|
+
directives: [{
|
|
273812
|
+
name: "show",
|
|
273813
|
+
rawName: "v-show",
|
|
273814
|
+
value: _vm.dragLine,
|
|
273815
|
+
expression: "dragLine"
|
|
273816
|
+
}],
|
|
273817
|
+
staticClass: "icon-drag-line",
|
|
273818
|
+
attrs: {
|
|
273819
|
+
"id": "dragLineBtn",
|
|
273820
|
+
"plain": "",
|
|
273821
|
+
"size": "mini",
|
|
273822
|
+
"icon": "el-icon-right",
|
|
273823
|
+
"circle": ""
|
|
273824
|
+
}
|
|
273825
|
+
})], 1), _c('li', {
|
|
273826
|
+
directives: [{
|
|
273827
|
+
name: "show",
|
|
273828
|
+
rawName: "v-show",
|
|
273829
|
+
value: false,
|
|
273830
|
+
expression: "false"
|
|
273831
|
+
}],
|
|
273832
|
+
staticClass: "ptjd",
|
|
273833
|
+
attrs: {
|
|
273834
|
+
"associated": "ptjd",
|
|
273835
|
+
"resize": "1",
|
|
273836
|
+
"domJoin": "4",
|
|
273837
|
+
"type": "2"
|
|
273838
|
+
}
|
|
273839
|
+
}, [_c('div', {
|
|
273840
|
+
staticClass: "jd-item"
|
|
273841
|
+
}, [_c('img', {
|
|
273842
|
+
attrs: {
|
|
273843
|
+
"src": _vm.sidebarPtjd,
|
|
273844
|
+
"width": "20",
|
|
273845
|
+
"alt": ""
|
|
273846
|
+
}
|
|
273847
|
+
}), _c('div', {
|
|
273848
|
+
staticClass: "jd-text"
|
|
273849
|
+
}, [_vm._v("普通节点")])])])], 1), _vm.showWflog && _vm.showWflog.length > 0 ? _c('el-card', {
|
|
273834
273850
|
ref: "wflogInfo",
|
|
273835
273851
|
staticClass: "wflogInfo"
|
|
273836
273852
|
}, [_c('div', {
|
|
@@ -273885,9 +273901,42 @@ var FlowTracevue_type_template_id_11c9d218_scoped_true_render = function render(
|
|
|
273885
273901
|
"label": "提交路径"
|
|
273886
273902
|
}
|
|
273887
273903
|
}, [_vm._v(_vm._s(wflog.pathName))])], 1);
|
|
273888
|
-
})], 2) : _vm._e()
|
|
273904
|
+
})], 2) : _vm._e(), _vm.udmNode != null ? _c('WfTaskNode', {
|
|
273905
|
+
attrs: {
|
|
273906
|
+
"task-node": _vm.udmNode,
|
|
273907
|
+
"idea-lables": _vm.wfJsonData.ideaLables
|
|
273908
|
+
}
|
|
273909
|
+
}) : _vm._e()], 1);
|
|
273889
273910
|
};
|
|
273890
|
-
var
|
|
273911
|
+
var FlowTracevue_type_template_id_720c8d3e_scoped_true_staticRenderFns = [function () {
|
|
273912
|
+
var _vm = this,
|
|
273913
|
+
_c = _vm._self._c;
|
|
273914
|
+
return _c('ul', {
|
|
273915
|
+
staticClass: "dropdown-menu"
|
|
273916
|
+
}, [_c('li', [_c('a', {
|
|
273917
|
+
attrs: {
|
|
273918
|
+
"id": "deleteNode",
|
|
273919
|
+
"href": "javascript:;"
|
|
273920
|
+
}
|
|
273921
|
+
}, [_vm._v("删除节点")])]), _c('li', [_c('a', {
|
|
273922
|
+
attrs: {
|
|
273923
|
+
"id": "deleteLine",
|
|
273924
|
+
"href": "javascript:;"
|
|
273925
|
+
}
|
|
273926
|
+
}, [_vm._v("删除连接")])]), _c('li', [_c('a', {
|
|
273927
|
+
attrs: {
|
|
273928
|
+
"id": "manualConn",
|
|
273929
|
+
"href": "javascript:;"
|
|
273930
|
+
}
|
|
273931
|
+
}, [_vm._v("设置为连接线模式")])]), _c('li', [_c('a', {
|
|
273932
|
+
attrs: {
|
|
273933
|
+
"id": "autoConn",
|
|
273934
|
+
"href": "javascript:;"
|
|
273935
|
+
}
|
|
273936
|
+
}, [_vm._v("设置为添加新节点模式")])])]);
|
|
273937
|
+
}];
|
|
273938
|
+
|
|
273939
|
+
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/FlowTrace/index.vue?vue&type=template&id=720c8d3e&scoped=true
|
|
273891
273940
|
|
|
273892
273941
|
;// 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/ecwplus/WorkflowDesigner/src/components/FlowTrace/index.vue?vue&type=script&lang=js
|
|
273893
273942
|
function FlowTracevue_type_script_lang_js_typeof(o) { "@babel/helpers - typeof"; return FlowTracevue_type_script_lang_js_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; }, FlowTracevue_type_script_lang_js_typeof(o); }
|
|
@@ -273897,25 +273946,29 @@ function FlowTracevue_type_script_lang_js_defineProperty(e, r, t) { return (r =
|
|
|
273897
273946
|
function FlowTracevue_type_script_lang_js_toPropertyKey(t) { var i = FlowTracevue_type_script_lang_js_toPrimitive(t, "string"); return "symbol" == FlowTracevue_type_script_lang_js_typeof(i) ? i : i + ""; }
|
|
273898
273947
|
function FlowTracevue_type_script_lang_js_toPrimitive(t, r) { if ("object" != FlowTracevue_type_script_lang_js_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != FlowTracevue_type_script_lang_js_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
273899
273948
|
|
|
273900
|
-
__webpack_require__(41758);
|
|
273901
|
-
__webpack_require__(79914);
|
|
273902
|
-
__webpack_require__(91702);
|
|
273903
|
-
var FlowTracevue_type_script_lang_js_jsPlumb = window.jsPlumb;
|
|
273904
273949
|
|
|
273905
273950
|
|
|
273906
273951
|
var FlowTracevue_type_script_lang_js_require = __webpack_require__(61154),
|
|
273907
|
-
FlowTracevue_type_script_lang_js_nodeEvents = FlowTracevue_type_script_lang_js_require.nodeEvents
|
|
273908
|
-
|
|
273952
|
+
FlowTracevue_type_script_lang_js_nodeEvents = FlowTracevue_type_script_lang_js_require.nodeEvents,
|
|
273953
|
+
FlowTracevue_type_script_lang_js_getPathXyData = FlowTracevue_type_script_lang_js_require.getPathXyData;
|
|
273909
273954
|
var FlowTracevue_type_script_lang_js_require2 = __webpack_require__(92399),
|
|
273955
|
+
FlowTracevue_type_script_lang_js_startMove = FlowTracevue_type_script_lang_js_require2.startMove,
|
|
273956
|
+
FlowTracevue_type_script_lang_js_MoveSelectDiv = FlowTracevue_type_script_lang_js_require2.MoveSelectDiv,
|
|
273957
|
+
FlowTracevue_type_script_lang_js_resetLocation = FlowTracevue_type_script_lang_js_require2.resetLocation,
|
|
273910
273958
|
FlowTracevue_type_script_lang_js_showProcessDesc = FlowTracevue_type_script_lang_js_require2.showProcessDesc;
|
|
273911
|
-
|
|
273912
|
-
|
|
273959
|
+
|
|
273960
|
+
var FlowTracevue_type_script_lang_js_require3 = __webpack_require__(92399),
|
|
273961
|
+
FlowTracevue_type_script_lang_js_showAddNodeBtn = FlowTracevue_type_script_lang_js_require3.showAddNodeBtn,
|
|
273962
|
+
FlowTracevue_type_script_lang_js_addNodeBtnClick = FlowTracevue_type_script_lang_js_require3.addNodeBtnClick;
|
|
273913
273963
|
var FlowTracevue_type_script_lang_js_require4 = __webpack_require__(53978),
|
|
273914
|
-
|
|
273964
|
+
FlowTracevue_type_script_lang_js_ecinc_process = FlowTracevue_type_script_lang_js_require4.ecinc_process;
|
|
273965
|
+
|
|
273915
273966
|
|
|
273916
273967
|
/* harmony default export */ var FlowTracevue_type_script_lang_js = ({
|
|
273917
273968
|
name: 'WflowTrace',
|
|
273918
|
-
components: {
|
|
273969
|
+
components: {
|
|
273970
|
+
WfTaskNode: WfTaskNode
|
|
273971
|
+
},
|
|
273919
273972
|
props: {
|
|
273920
273973
|
wfInstance: {
|
|
273921
273974
|
type: Object,
|
|
@@ -273923,6 +273976,18 @@ var FlowTracevue_type_script_lang_js_require4 = __webpack_require__(53978),
|
|
|
273923
273976
|
return {};
|
|
273924
273977
|
}
|
|
273925
273978
|
},
|
|
273979
|
+
wfJsonData: {
|
|
273980
|
+
type: Object,
|
|
273981
|
+
default: function _default() {
|
|
273982
|
+
return {};
|
|
273983
|
+
}
|
|
273984
|
+
},
|
|
273985
|
+
curTN: {
|
|
273986
|
+
type: Object,
|
|
273987
|
+
default: function _default() {
|
|
273988
|
+
return {};
|
|
273989
|
+
}
|
|
273990
|
+
},
|
|
273926
273991
|
wflogList: {
|
|
273927
273992
|
type: Array,
|
|
273928
273993
|
default: function _default() {
|
|
@@ -273934,6 +273999,7 @@ var FlowTracevue_type_script_lang_js_require4 = __webpack_require__(53978),
|
|
|
273934
273999
|
return {
|
|
273935
274000
|
loading: true,
|
|
273936
274001
|
PathLabelText: '',
|
|
274002
|
+
sidebarPtjd: '/images/w-imgs/definition/left/l_ptjd.png',
|
|
273937
274003
|
ptjd: '/images/w-imgs/definition/center/c_ptjd.png',
|
|
273938
274004
|
jzjd: '/images/w-imgs/definition/center/c_jzjd.png',
|
|
273939
274005
|
drbx: '/images/w-imgs/definition/center/c_drbx.png',
|
|
@@ -273941,7 +274007,14 @@ var FlowTracevue_type_script_lang_js_require4 = __webpack_require__(53978),
|
|
|
273941
274007
|
hqjd: '/images/w-imgs/definition/center/c_hqjd.png',
|
|
273942
274008
|
ywjd: '/images/w-imgs/definition/center/c_ywjd.png',
|
|
273943
274009
|
id: '',
|
|
274010
|
+
curNode: {},
|
|
274011
|
+
// 当前选中的环节
|
|
274012
|
+
curPath: {},
|
|
274013
|
+
// 当前选中的路径
|
|
274014
|
+
udmNode: null,
|
|
273944
274015
|
wflow: model_data/* wflow */.eR,
|
|
274016
|
+
dragLine: false,
|
|
274017
|
+
//是否拖拉连接线模式
|
|
273945
274018
|
pathObj: [],
|
|
273946
274019
|
pathNumber: 0,
|
|
273947
274020
|
// 页面加载的路径条数
|
|
@@ -273999,7 +274072,7 @@ var FlowTracevue_type_script_lang_js_require4 = __webpack_require__(53978),
|
|
|
273999
274072
|
watch: {
|
|
274000
274073
|
wflogList: function wflogList(val) {
|
|
274001
274074
|
var _this2 = this;
|
|
274002
|
-
if (val && val.length > 0) {
|
|
274075
|
+
if (val && val.length > 0 && (!this.wfInstance.udmNodes || this.wfInstance.udmNodes && this.wfInstance.status > 0)) {
|
|
274003
274076
|
var wflogList = this.setWflogNodeId(val);
|
|
274004
274077
|
for (var i = 0; i < this.redoPathsTimes; i++) {
|
|
274005
274078
|
this.redoPaths.forEach(function (info) {
|
|
@@ -274009,285 +274082,517 @@ var FlowTracevue_type_script_lang_js_require4 = __webpack_require__(53978),
|
|
|
274009
274082
|
}
|
|
274010
274083
|
}
|
|
274011
274084
|
},
|
|
274012
|
-
created: function created() {
|
|
274085
|
+
created: function created() {
|
|
274086
|
+
this.$bus.on('bindName', this.bindName); //设置流程图中的环节名称、路径名称
|
|
274087
|
+
},
|
|
274013
274088
|
beforeDestroy: function beforeDestroy() {
|
|
274014
|
-
|
|
274015
|
-
this.
|
|
274016
|
-
FlowTracevue_type_script_lang_js_jsPlumb.destroy();
|
|
274089
|
+
jsPlumb.destroy();
|
|
274090
|
+
this.$bus.off('bindName', this.bindName);
|
|
274017
274091
|
},
|
|
274018
|
-
|
|
274019
|
-
|
|
274020
|
-
|
|
274021
|
-
|
|
274092
|
+
updated: function updated() {},
|
|
274093
|
+
mounted: function mounted() {},
|
|
274094
|
+
methods: {
|
|
274095
|
+
initFlowTrace: function initFlowTrace() {
|
|
274096
|
+
var _this3 = this;
|
|
274097
|
+
var _this = this;
|
|
274098
|
+
if (!_this.loading) return; //只加载一次
|
|
274022
274099
|
|
|
274023
|
-
|
|
274024
|
-
|
|
274025
|
-
|
|
274026
|
-
|
|
274027
|
-
|
|
274028
|
-
|
|
274029
|
-
|
|
274030
|
-
nodelist.forEach(function (ndoe) {
|
|
274031
|
-
if (ndoe.previousSibling) {
|
|
274032
|
-
if (height === 0) {
|
|
274033
|
-
height = ndoe.previousSibling.offsetTop;
|
|
274034
|
-
} else if (ndoe.previousSibling.offsetTop + 100 > height) {
|
|
274035
|
-
height = ndoe.previousSibling.offsetTop + 100;
|
|
274100
|
+
new Promise(function (resolve, reject) {
|
|
274101
|
+
if (_this.wfInstance.passenger.chartData) {
|
|
274102
|
+
var chartData = _this.wfInstance.passenger.chartData;
|
|
274103
|
+
_this3.connectsArr = chartData.connects;
|
|
274104
|
+
var domHtmlArr = chartData.domHtml;
|
|
274105
|
+
for (var i = 0; i < domHtmlArr.length; i++) {
|
|
274106
|
+
jquery_default()('#center').append(common/* Base64 */.o.decode(domHtmlArr[i].domH));
|
|
274036
274107
|
}
|
|
274037
|
-
|
|
274108
|
+
jquery_default()('.process').removeClass('seled');
|
|
274109
|
+
resolve(true);
|
|
274110
|
+
var descDiv = document.querySelector('.node-bg-desc');
|
|
274111
|
+
var desc = '1、鼠标移到“结束处理”路径前端锚点或无连接线锚点,可添加新节点;\r\n2、双击节点可以设置节点属性;\r\n3、点击工具栏中的“流程自测”按钮,可以测试流程配置是否正常。';
|
|
274112
|
+
var containerHeight = 130;
|
|
274113
|
+
var containerLeft = descDiv.offsetLeft - 10;
|
|
274114
|
+
var containerTop = 30;
|
|
274115
|
+
FlowTracevue_type_script_lang_js_showProcessDesc(desc, containerHeight, containerLeft, containerTop);
|
|
274116
|
+
} else if (_this.wfInstance.udmNodes) {
|
|
274117
|
+
//发起人自定义流程-暂时保留直接添加节点模式
|
|
274118
|
+
var connectsArr = [];
|
|
274119
|
+
var udmNodes = _this.wfInstance.udmNodes;
|
|
274120
|
+
if (typeof udmNodes === 'string') {
|
|
274121
|
+
udmNodes = JSON.parse(udmNodes);
|
|
274122
|
+
}
|
|
274123
|
+
|
|
274124
|
+
//开始节点
|
|
274125
|
+
var startId = (0,common/* uuid */.u)();
|
|
274126
|
+
var startNodeHtml = _this3.wfNodeHtml.start.domH.replace('id=""', 'id="' + startId + '"');
|
|
274127
|
+
jquery_default()('#center').append(startNodeHtml);
|
|
274128
|
+
|
|
274129
|
+
//结束节点
|
|
274130
|
+
var endId = (0,common/* uuid */.u)();
|
|
274131
|
+
var endNodeHtml = _this3.wfNodeHtml.jslc.domH.replace('id=""', 'id="' + endId + '"');
|
|
274132
|
+
var top = 100 + (100 + 80) * (udmNodes.length + 1);
|
|
274133
|
+
endNodeHtml = endNodeHtml.replace('style=""', 'style="left: 570px; top: ' + top + 'px;"');
|
|
274134
|
+
jquery_default()('#center').append(endNodeHtml);
|
|
274135
|
+
|
|
274136
|
+
//人工节点
|
|
274137
|
+
udmNodes.forEach(function (node, index) {
|
|
274138
|
+
if (index === 0) {
|
|
274139
|
+
var pathLine = JSON.parse(JSON.stringify(_this3.connectLine));
|
|
274140
|
+
pathLine.ConnectionId = (0,common/* uuid */.u)();
|
|
274141
|
+
pathLine.PageSourceId = startId;
|
|
274142
|
+
pathLine.PageTargetId = node.uuid;
|
|
274143
|
+
connectsArr.push(pathLine);
|
|
274144
|
+
} else if (node.returnHistoryTN > 0 && _this3.wfInstance.status > 0) {
|
|
274145
|
+
var _pathLine = JSON.parse(JSON.stringify(_this3.connectLine));
|
|
274146
|
+
_pathLine.ConnectionId = (0,common/* uuid */.u)();
|
|
274147
|
+
_pathLine.label = '退回';
|
|
274148
|
+
_pathLine.PageSourceId = node.uuid;
|
|
274149
|
+
if (node.returnHistoryTN == 1) {
|
|
274150
|
+
//退回上一节点
|
|
274151
|
+
_pathLine.PageTargetId = udmNodes[index - 1].uuid;
|
|
274152
|
+
_pathLine.pathMinX = -53;
|
|
274153
|
+
_pathLine.firstEndpoints = [0, 0.5, -1, 0];
|
|
274154
|
+
_pathLine.secondEndpoints = [0, 0.5, -1, 0];
|
|
274155
|
+
} else {
|
|
274156
|
+
//退回发起节点
|
|
274157
|
+
_pathLine.PageTargetId = udmNodes[0].uuid;
|
|
274158
|
+
_pathLine.pathMaxX = 53;
|
|
274159
|
+
_pathLine.firstEndpoints = [1, 0.5, 1, 0];
|
|
274160
|
+
_pathLine.secondEndpoints = [1, 0.5, 1, 0];
|
|
274161
|
+
}
|
|
274162
|
+
_pathLine.linesCount = 3;
|
|
274163
|
+
connectsArr.push(_pathLine);
|
|
274164
|
+
_this3.pathObj.push({
|
|
274165
|
+
id: _pathLine.ConnectionId,
|
|
274166
|
+
name: _pathLine.label
|
|
274167
|
+
});
|
|
274168
|
+
}
|
|
274169
|
+
if (index + 1 === udmNodes.length) {
|
|
274170
|
+
var _pathLine2 = JSON.parse(JSON.stringify(_this3.connectLine));
|
|
274171
|
+
_pathLine2.ConnectionId = (0,common/* uuid */.u)();
|
|
274172
|
+
_pathLine2.label = '结束处理';
|
|
274173
|
+
_pathLine2.PageSourceId = node.uuid;
|
|
274174
|
+
_pathLine2.PageTargetId = endId;
|
|
274175
|
+
connectsArr.push(_pathLine2);
|
|
274176
|
+
_this3.pathObj.push({
|
|
274177
|
+
id: _pathLine2.ConnectionId,
|
|
274178
|
+
name: _pathLine2.label
|
|
274179
|
+
});
|
|
274180
|
+
}
|
|
274181
|
+
if (index + 1 < udmNodes.length) {
|
|
274182
|
+
var _pathLine3 = JSON.parse(JSON.stringify(_this3.connectLine));
|
|
274183
|
+
_pathLine3.ConnectionId = (0,common/* uuid */.u)();
|
|
274184
|
+
_pathLine3.label = '送' + udmNodes[index + 1].name;
|
|
274185
|
+
_pathLine3.PageSourceId = node.uuid;
|
|
274186
|
+
_pathLine3.PageTargetId = udmNodes[index + 1].uuid;
|
|
274187
|
+
connectsArr.push(_pathLine3);
|
|
274188
|
+
_this3.pathObj.push({
|
|
274189
|
+
id: _pathLine3.ConnectionId,
|
|
274190
|
+
name: _pathLine3.label
|
|
274191
|
+
});
|
|
274192
|
+
}
|
|
274193
|
+
var nodeHtml = '';
|
|
274194
|
+
if (node.todoMode === 0) {
|
|
274195
|
+
nodeHtml = _this3.wfNodeHtml.ptjd.domH.replace('<p>普通节点</p>', '<p>' + node.name + '</p>');
|
|
274196
|
+
} else if (node.todoMode === 1) {
|
|
274197
|
+
nodeHtml = _this3.wfNodeHtml.drbx.domH.replace('<p>多人并行</p>', '<p>' + node.name + '</p>');
|
|
274198
|
+
} else if (node.todoMode === 2) {
|
|
274199
|
+
nodeHtml = _this3.wfNodeHtml.hqjd.domH.replace('<p>多人会签</p>', '<p>' + node.name + '</p>');
|
|
274200
|
+
} else if (node.todoMode === 3) {
|
|
274201
|
+
nodeHtml = _this3.wfNodeHtml.drcx.domH.replace('<p>多人串行</p>', '<p>' + node.name + '</p>');
|
|
274202
|
+
} else if (node.todoMode === 4) {
|
|
274203
|
+
nodeHtml = _this3.wfNodeHtml.jzjd.domH.replace('<p>多人竞争</p>', '<p>' + node.name + '</p>');
|
|
274204
|
+
} else if (node.todoMode === 5) {
|
|
274205
|
+
nodeHtml = _this3.wfNodeHtml.ywjd.domH.replace('<p>多人阅文</p>', '<p>' + node.name + '</p>');
|
|
274206
|
+
}
|
|
274207
|
+
var top = 100 + (100 + 80) * (index + 1);
|
|
274208
|
+
nodeHtml = nodeHtml.replace('style=""', 'style="left: 530px; top: ' + top + 'px;"');
|
|
274209
|
+
jquery_default()('#center').append(nodeHtml.replace('id=""', 'id="' + node.uuid + '"'));
|
|
274210
|
+
_this.wflow.nodes.push(node);
|
|
274211
|
+
});
|
|
274212
|
+
_this.connectsArr = connectsArr;
|
|
274213
|
+
resolve(true);
|
|
274214
|
+
} else {
|
|
274215
|
+
//流程配置
|
|
274216
|
+
_this3.$http({
|
|
274217
|
+
method: 'GET',
|
|
274218
|
+
params: {
|
|
274219
|
+
product: _this3.product,
|
|
274220
|
+
dwadmin: _this3.dwadmin,
|
|
274221
|
+
copy: _this3.$route.query.copy
|
|
274222
|
+
},
|
|
274223
|
+
contentType: 'application/x-www-form-urlencoded',
|
|
274224
|
+
url: 'workflow/wfdProcessMgr/getById?id=' + _this3.wfInstance.wfId + ''
|
|
274225
|
+
}).then(function (response) {
|
|
274226
|
+
_this3.wflow = response.body.vo;
|
|
274227
|
+
for (var o = 0; o < _this3.wflow.paths.length; o++) {
|
|
274228
|
+
_this3.pathObj.push(_this3.wflow.paths[o]);
|
|
274229
|
+
}
|
|
274230
|
+
_this3.wflow.paths.length = 0;
|
|
274231
|
+
_this3.process = response.body.vo.process;
|
|
274232
|
+
var chartData = JSON.parse(_this3.process.chartData);
|
|
274233
|
+
var connectsArr = chartData.connects;
|
|
274234
|
+
_this3.connectsArr = connectsArr;
|
|
274235
|
+
var domHtmlArr = chartData.domHtml;
|
|
274236
|
+
for (var _i = 0; _i < domHtmlArr.length; _i++) {
|
|
274237
|
+
jquery_default()('#center').append(common/* Base64 */.o.decode(domHtmlArr[_i].domH));
|
|
274238
|
+
}
|
|
274239
|
+
if (_this3.process && _this3.process.description) {
|
|
274240
|
+
var desc = _this3.process.description;
|
|
274241
|
+
var containerHeight = 180;
|
|
274242
|
+
var containerLeft = null;
|
|
274243
|
+
var containerTop = null;
|
|
274244
|
+
if (chartData.descDiv) {
|
|
274245
|
+
containerHeight = chartData.descDiv.height;
|
|
274246
|
+
containerLeft = chartData.descDiv.left;
|
|
274247
|
+
containerTop = chartData.descDiv.top;
|
|
274248
|
+
}
|
|
274249
|
+
FlowTracevue_type_script_lang_js_showProcessDesc(desc, containerHeight, containerLeft, containerTop);
|
|
274250
|
+
}
|
|
274251
|
+
resolve(true);
|
|
274252
|
+
}, function (error) {
|
|
274253
|
+
_this3.$message.error(error);
|
|
274254
|
+
reject(error);
|
|
274255
|
+
});
|
|
274038
274256
|
}
|
|
274039
|
-
})
|
|
274040
|
-
|
|
274041
|
-
|
|
274042
|
-
|
|
274043
|
-
|
|
274044
|
-
|
|
274045
|
-
|
|
274046
|
-
|
|
274047
|
-
|
|
274048
|
-
|
|
274049
|
-
|
|
274050
|
-
|
|
274051
|
-
|
|
274052
|
-
|
|
274053
|
-
|
|
274054
|
-
|
|
274257
|
+
}).then(function () {
|
|
274258
|
+
_this3.loading = false;
|
|
274259
|
+
var nodeIdArr = [];
|
|
274260
|
+
jquery_default()('.process').removeClass('seled');
|
|
274261
|
+
jquery_default()('.process').each(function (index, elem) {
|
|
274262
|
+
nodeIdArr.push(jquery_default()(elem).attr('id'));
|
|
274263
|
+
if (jquery_default()(elem).hasClass('ptjd')) {
|
|
274264
|
+
jquery_default()(elem).find('img').attr('src', _this3.ptjd);
|
|
274265
|
+
jquery_default()(elem).find('span').text('普通节点');
|
|
274266
|
+
} else if (jquery_default()(elem).hasClass('jzjd')) {
|
|
274267
|
+
jquery_default()(elem).find('img').attr('src', _this3.jzjd);
|
|
274268
|
+
jquery_default()(elem).find('span').text('竞争节点');
|
|
274269
|
+
} else if (jquery_default()(elem).hasClass('drbx')) {
|
|
274270
|
+
jquery_default()(elem).find('img').attr('src', _this3.drbx);
|
|
274271
|
+
jquery_default()(elem).find('span').text('多人并行');
|
|
274272
|
+
} else if (jquery_default()(elem).hasClass('drcx')) {
|
|
274273
|
+
jquery_default()(elem).find('img').attr('src', _this3.drcx);
|
|
274274
|
+
jquery_default()(elem).find('span').text('多人串行');
|
|
274275
|
+
} else if (jquery_default()(elem).hasClass('hqjd')) {
|
|
274276
|
+
jquery_default()(elem).find('img').attr('src', _this3.hqjd);
|
|
274277
|
+
jquery_default()(elem).find('span').text('会签节点');
|
|
274278
|
+
} else if (jquery_default()(elem).hasClass('ywjd')) {
|
|
274279
|
+
jquery_default()(elem).find('img').attr('src', _this3.ywjd);
|
|
274280
|
+
jquery_default()(elem).find('span').text('阅文节点');
|
|
274281
|
+
}
|
|
274282
|
+
if (_this.wfInstance.udmNodes && _this.wfInstance.udmNodes.length > 0 && _this3.wfInstance.creatorAccount === _this3.curTN.userAccount && _this3.wfInstance.status < 2) {
|
|
274283
|
+
FlowTracevue_type_script_lang_js_nodeEvents(jquery_default()(elem).attr('id'), _this3.wflow, _this3);
|
|
274284
|
+
}
|
|
274285
|
+
if (elem.innerHTML) {
|
|
274286
|
+
//删除流程跟踪图中的环节处理人
|
|
274287
|
+
elem.innerHTML = elem.firstChild.outerHTML + elem.firstChild.nextElementSibling.outerHTML;
|
|
274288
|
+
}
|
|
274289
|
+
var ui = {
|
|
274290
|
+
position: {
|
|
274291
|
+
left: elem.offsetLeft,
|
|
274292
|
+
top: elem.offsetTop
|
|
274293
|
+
}
|
|
274294
|
+
};
|
|
274295
|
+
FlowTracevue_type_script_lang_js_resetLocation(ui, jquery_default()(elem).attr('id'));
|
|
274296
|
+
});
|
|
274297
|
+
nodeIdArr.forEach(function (nodeId) {
|
|
274298
|
+
jquery_default()("#".concat(nodeId)).addClass('model_process_wwc');
|
|
274299
|
+
});
|
|
274300
|
+
if (_this3.wflogList && _this3.wflogList.length > 0) {
|
|
274301
|
+
_this3.wflogList.forEach(function (wflog) {
|
|
274302
|
+
if (!wflog.parentId) return;
|
|
274303
|
+
var pwflog = _this3.wflogList.filter(function (pwflog) {
|
|
274304
|
+
return pwflog.id === wflog.parentId;
|
|
274305
|
+
});
|
|
274306
|
+
if (pwflog.length === 0) return;
|
|
274307
|
+
var connectLine = _this3.connectsArr.filter(function (conn) {
|
|
274308
|
+
return conn.PageSourceId === pwflog[0].nodeId && conn.PageTargetId === wflog.nodeId;
|
|
274309
|
+
});
|
|
274310
|
+
if (connectLine.length === 0 && wflog.prePathType === 3) {
|
|
274311
|
+
//动态生成驳回连线
|
|
274312
|
+
//console.log(wflog)
|
|
274313
|
+
var pathLine = JSON.parse(JSON.stringify(_this3.connectLine));
|
|
274314
|
+
pathLine.ConnectionId = (0,common/* uuid */.u)();
|
|
274315
|
+
pathLine.label = pwflog[0].pathName;
|
|
274316
|
+
pathLine.PageSourceId = pwflog[0].nodeId;
|
|
274317
|
+
|
|
274318
|
+
//退回历史节点
|
|
274319
|
+
pathLine.PageTargetId = wflog.nodeId;
|
|
274320
|
+
pathLine.pathMinX = -53 - Math.random() * 50;
|
|
274321
|
+
pathLine.firstEndpoints = [0, 0.4, -1, 0]; //左出
|
|
274322
|
+
pathLine.secondEndpoints = [0, 0.6, -1, 0]; //左入
|
|
274323
|
+
pathLine.linesCount = 3;
|
|
274324
|
+
_this3.connectsArr.push(pathLine);
|
|
274325
|
+
_this3.pathObj.push({
|
|
274326
|
+
id: pathLine.ConnectionId,
|
|
274327
|
+
name: pathLine.label
|
|
274328
|
+
});
|
|
274329
|
+
}
|
|
274330
|
+
});
|
|
274331
|
+
}
|
|
274332
|
+
if (_this3.wfInstance.creatorAccount === _this3.curTN.userAccount && _this3.wfInstance.status < 2) {
|
|
274333
|
+
if (_this.wfInstance.udmNodes && _this.wfInstance.udmNodes.length > 0) {
|
|
274334
|
+
nodeIdArr.forEach(function (nodeId) {
|
|
274335
|
+
if (!jquery_default()('#' + nodeId).hasClass('start')) {
|
|
274336
|
+
jsPlumb.addEndpoint(nodeId, {
|
|
274337
|
+
anchors: [1, 0.5, 1, 0]
|
|
274338
|
+
}, globalStyle/* hollowCircle */.Yy);
|
|
274339
|
+
jsPlumb.addEndpoint(nodeId, {
|
|
274340
|
+
anchors: [0, 0.5, -1, 0]
|
|
274341
|
+
}, globalStyle/* hollowCircle */.Yy);
|
|
274342
|
+
jsPlumb.addEndpoint(nodeId, {
|
|
274343
|
+
anchors: [0.5, 0, 0, -1]
|
|
274344
|
+
}, globalStyle/* hollowCircle */.Yy);
|
|
274345
|
+
jsPlumb.addEndpoint(nodeId, {
|
|
274346
|
+
anchors: [0.5, 1, 0, 1]
|
|
274347
|
+
}, globalStyle/* hollowCircle */.Yy);
|
|
274348
|
+
}
|
|
274349
|
+
});
|
|
274350
|
+
}
|
|
274055
274351
|
}
|
|
274056
274352
|
|
|
274057
|
-
|
|
274058
|
-
|
|
274059
|
-
|
|
274060
|
-
|
|
274061
|
-
|
|
274062
|
-
//结束节点
|
|
274063
|
-
var endId = (0,common/* uuid */.u)();
|
|
274064
|
-
var endNodeHtml = _this3.wfNodeHtml.jslc.domH.replace('id=""', 'id="' + endId + '"');
|
|
274065
|
-
var top = 100 + (100 + 80) * (udmNodes.length + 1);
|
|
274066
|
-
endNodeHtml = endNodeHtml.replace('style=""', 'style="left: 570px; top: ' + top + 'px;"');
|
|
274067
|
-
jquery_default()('#center').append(endNodeHtml);
|
|
274353
|
+
//节点连接线
|
|
274354
|
+
(0,globalStyle/* createPathLine */.on)(_this3.connectsArr);
|
|
274355
|
+
if (_this.wfInstance.udmNodes && _this3.wfInstance.creatorAccount === _this3.curTN.userAccount && _this3.wfInstance.status < 2) {
|
|
274356
|
+
// 双击给该元素动态添加锚点
|
|
274357
|
+
_this3.AddAnchor();
|
|
274068
274358
|
|
|
274069
|
-
|
|
274070
|
-
|
|
274071
|
-
|
|
274072
|
-
|
|
274073
|
-
|
|
274074
|
-
|
|
274075
|
-
|
|
274076
|
-
|
|
274077
|
-
|
|
274078
|
-
|
|
274079
|
-
|
|
274080
|
-
|
|
274081
|
-
|
|
274082
|
-
|
|
274083
|
-
|
|
274084
|
-
|
|
274085
|
-
|
|
274086
|
-
|
|
274087
|
-
|
|
274088
|
-
}
|
|
274089
|
-
|
|
274090
|
-
|
|
274091
|
-
|
|
274092
|
-
|
|
274093
|
-
|
|
274094
|
-
|
|
274095
|
-
|
|
274096
|
-
|
|
274097
|
-
|
|
274098
|
-
|
|
274099
|
-
|
|
274359
|
+
// 选择加载的node拖放,支持单个、多个
|
|
274360
|
+
jquery_default()('.process').draggable({
|
|
274361
|
+
containment: '#center'
|
|
274362
|
+
});
|
|
274363
|
+
jquery_default()('.process').draggable({
|
|
274364
|
+
distance: 20
|
|
274365
|
+
});
|
|
274366
|
+
jquery_default()('.process').draggable({
|
|
274367
|
+
grid: [10, 10],
|
|
274368
|
+
start: function start() {
|
|
274369
|
+
FlowTracevue_type_script_lang_js_startMove();
|
|
274370
|
+
jsPlumb.repaintEverything();
|
|
274371
|
+
},
|
|
274372
|
+
drag: function drag(event, ui) {
|
|
274373
|
+
var uiid = event.target.id;
|
|
274374
|
+
FlowTracevue_type_script_lang_js_MoveSelectDiv(event, ui, uiid);
|
|
274375
|
+
_this3.ComparePath();
|
|
274376
|
+
_this3.isDomChange = true; // 如果dom移动
|
|
274377
|
+
jsPlumb.repaintEverything();
|
|
274378
|
+
},
|
|
274379
|
+
stop: function stop(event, ui) {
|
|
274380
|
+
FlowTracevue_type_script_lang_js_resetLocation(ui, event.target.id);
|
|
274381
|
+
jsPlumb.repaintEverything();
|
|
274382
|
+
}
|
|
274383
|
+
});
|
|
274384
|
+
}
|
|
274385
|
+
if (_this3.wflogList && _this3.wflogList.length > 0 && (!_this.wfInstance.udmNodes || _this.wfInstance.udmNodes && _this.wfInstance.status > 0)) {
|
|
274386
|
+
var wflogList = _this3.setWflogNodeId(_this3.wflogList);
|
|
274387
|
+
for (var i = 0; i < _this3.redoPathsTimes; i++) {
|
|
274388
|
+
_this3.redoPaths.forEach(function (info) {
|
|
274389
|
+
_this3.flowRedo(info, wflogList); // 再重复设置一次连接线样式,解决决策、聚合节点后已执行路径样式不能更新的问题
|
|
274100
274390
|
});
|
|
274101
274391
|
}
|
|
274102
|
-
|
|
274103
|
-
|
|
274104
|
-
|
|
274105
|
-
|
|
274106
|
-
|
|
274107
|
-
|
|
274108
|
-
|
|
274109
|
-
|
|
274110
|
-
|
|
274111
|
-
|
|
274112
|
-
|
|
274392
|
+
}
|
|
274393
|
+
document.querySelectorAll('.model_process_wwc').forEach(function (wwc) {
|
|
274394
|
+
wwc.onclick = function () {
|
|
274395
|
+
_this3.showWflog = null;
|
|
274396
|
+
};
|
|
274397
|
+
});
|
|
274398
|
+
_this3.wflow.ideaLabels = [{}];
|
|
274399
|
+
_this3.ideaArr = [];
|
|
274400
|
+
_this3.$emit('clickloading');
|
|
274401
|
+
});
|
|
274402
|
+
|
|
274403
|
+
// 1路径创建
|
|
274404
|
+
jsPlumb.bind('connection', function (info) {
|
|
274405
|
+
//console.log('connection', info)
|
|
274406
|
+
|
|
274407
|
+
_this3.dragPath(info);
|
|
274408
|
+
info.connection.setPaintStyle({
|
|
274409
|
+
stroke: '#438eb9',
|
|
274410
|
+
fillStyle: '#438eb9',
|
|
274411
|
+
radius: 5,
|
|
274412
|
+
lineWidth: '5px',
|
|
274413
|
+
strokeWidth: 2
|
|
274414
|
+
});
|
|
274415
|
+
_this3.redoPaths.push(info); // 全部连接后,再重复设置一次连接线新式,解决决策、聚合节点后已执行路径样式不能更新的问题
|
|
274416
|
+
_this3.ComparePath();
|
|
274417
|
+
return false;
|
|
274418
|
+
});
|
|
274419
|
+
if (!_this.wfInstance.udmNodes || this.wfInstance.creatorAccount !== this.curTN.userAccount || this.wfInstance.status >= 2) {
|
|
274420
|
+
return;
|
|
274421
|
+
}
|
|
274422
|
+
jsPlumb.bind('mouseover', function (conn, originalEvent) {
|
|
274423
|
+
var target = originalEvent.target || originalEvent.toElement;
|
|
274424
|
+
//console.log('mouseover', target.tagName)
|
|
274425
|
+
|
|
274426
|
+
if (target.tagName === 'circle' && conn && !_this3.dragLine) {
|
|
274427
|
+
var canAddNode = false;
|
|
274428
|
+
if (conn.connections.length === 0) {
|
|
274429
|
+
//空锚点
|
|
274430
|
+
canAddNode = true;
|
|
274431
|
+
} else {
|
|
274432
|
+
//指向结束流程、结束任务、返回父流程锚点
|
|
274433
|
+
var connTarget = jquery_default()(conn.connections[0].target);
|
|
274434
|
+
if (connTarget.hasClass('jslc') || connTarget.hasClass('jsrw') || connTarget.hasClass('parentWf')) {
|
|
274435
|
+
canAddNode = true;
|
|
274436
|
+
}
|
|
274113
274437
|
}
|
|
274114
|
-
|
|
274115
|
-
|
|
274116
|
-
|
|
274117
|
-
|
|
274118
|
-
|
|
274119
|
-
|
|
274120
|
-
|
|
274121
|
-
|
|
274122
|
-
|
|
274123
|
-
|
|
274438
|
+
//显示“添加新节点”按钮
|
|
274439
|
+
var source = jquery_default()(conn.element);
|
|
274440
|
+
if (canAddNode && !source.hasClass('jslc') && !source.hasClass('jsrw') && !source.hasClass('parentWf')) {
|
|
274441
|
+
FlowTracevue_type_script_lang_js_showAddNodeBtn(_this3, conn, target, originalEvent);
|
|
274442
|
+
}
|
|
274443
|
+
} else if (target.tagName === 'circle' && _this3.dragLine) {
|
|
274444
|
+
var targetDiv = target.parentElement.parentElement;
|
|
274445
|
+
var btn = document.querySelector('.icon-drag-line');
|
|
274446
|
+
btn.style.top = targetDiv.style.top;
|
|
274447
|
+
btn.style.left = targetDiv.style.left;
|
|
274448
|
+
btn.style.display = 'block';
|
|
274449
|
+
}
|
|
274450
|
+
});
|
|
274451
|
+
jquery_default()(document).bind('mouseout', function (originalEvent) {
|
|
274452
|
+
var target = originalEvent.target || originalEvent.toElement;
|
|
274453
|
+
if (target.tagName !== 'circle') {
|
|
274454
|
+
//隐藏“添加新节点”按钮
|
|
274455
|
+
var btn = document.querySelector('.add-node-btn');
|
|
274456
|
+
if (btn) btn.style.display = 'none';
|
|
274457
|
+
}
|
|
274458
|
+
});
|
|
274459
|
+
jquery_default()('#center').bind('mouseover', function (originalEvent) {
|
|
274460
|
+
var target = originalEvent.target || originalEvent.toElement;
|
|
274461
|
+
if (target.tagName !== 'circle' && target.tagName !== 'BUTTON' && target.tagName !== 'I') {
|
|
274462
|
+
jquery_default()('.icon-drag-line').css({
|
|
274463
|
+
display: 'none'
|
|
274464
|
+
});
|
|
274465
|
+
}
|
|
274466
|
+
});
|
|
274467
|
+
jquery_default()('#center').bind('mouseout', function (originalEvent) {
|
|
274468
|
+
_this.saveChartData();
|
|
274469
|
+
});
|
|
274470
|
+
jsPlumb.bind('contextmenu', function (conn, originalEvent) {
|
|
274471
|
+
var target = originalEvent.target || originalEvent.toElement;
|
|
274472
|
+
console.log('contextmenu', target.tagName);
|
|
274473
|
+
if (jquery_default()('#centextMenu').length > 0) {
|
|
274474
|
+
jquery_default()('#centextMenu').remove();
|
|
274475
|
+
}
|
|
274476
|
+
var aConn = jsPlumb.getConnections(); // 获取容器所有的连接线
|
|
274477
|
+
for (var i = 0; i < aConn.length; i++) {
|
|
274478
|
+
if (aConn[i].id !== conn.id) {
|
|
274479
|
+
aConn[i].setPaintStyle({
|
|
274480
|
+
stroke: '#438eb9',
|
|
274481
|
+
fillStyle: '#438eb9',
|
|
274482
|
+
radius: 5
|
|
274483
|
+
});
|
|
274484
|
+
} else {
|
|
274485
|
+
aConn[i].setPaintStyle({
|
|
274486
|
+
stroke: 'red'
|
|
274124
274487
|
});
|
|
274125
274488
|
}
|
|
274126
|
-
|
|
274127
|
-
|
|
274128
|
-
|
|
274129
|
-
|
|
274130
|
-
|
|
274131
|
-
|
|
274132
|
-
|
|
274133
|
-
|
|
274134
|
-
|
|
274135
|
-
|
|
274136
|
-
|
|
274137
|
-
|
|
274138
|
-
|
|
274139
|
-
|
|
274140
|
-
|
|
274141
|
-
|
|
274142
|
-
|
|
274143
|
-
|
|
274144
|
-
|
|
274145
|
-
|
|
274146
|
-
|
|
274147
|
-
|
|
274148
|
-
_this3.$http({
|
|
274149
|
-
method: 'GET',
|
|
274150
|
-
params: {
|
|
274151
|
-
product: _this3.product,
|
|
274152
|
-
dwadmin: _this3.dwadmin,
|
|
274153
|
-
copy: _this3.$route.query.copy
|
|
274154
|
-
},
|
|
274155
|
-
contentType: 'application/x-www-form-urlencoded',
|
|
274156
|
-
url: 'workflow/wfdProcessMgr/getById?id=' + _this3.wfInstance.wfId + ''
|
|
274157
|
-
}).then(function (response) {
|
|
274158
|
-
_this3.wflow = response.body.vo;
|
|
274159
|
-
for (var o = 0; o < _this3.wflow.paths.length; o++) {
|
|
274160
|
-
_this3.pathObj.push(_this3.wflow.paths[o]);
|
|
274489
|
+
}
|
|
274490
|
+
var centextMenu = '<div id="centextMenu" style=" top:' + (originalEvent.pageY - 90) + 'px;left:' + (originalEvent.pageX - 20) + 'px;">' + '<a class="delete_line" href="javascript:;">删除连接线</a></div>';
|
|
274491
|
+
jquery_default()('#center').append(centextMenu);
|
|
274492
|
+
jquery_default()('.delete_line').bind('click', function () {
|
|
274493
|
+
// 删除连线时,获取连线的id,循环所有nextNodes的pathId,如果是删除的连线id,删除nextNode
|
|
274494
|
+
var deleteConnId = conn.id;
|
|
274495
|
+
var nextnode = jquery_default()(conn.target);
|
|
274496
|
+
var _this = _this3;
|
|
274497
|
+
|
|
274498
|
+
// 当两个决策节点或者聚合节点删除连接线时,判断第二个节点是否还有其他的连接线,如果没有删除类标记
|
|
274499
|
+
if ((nextnode.hasClass('jcjd') || nextnode.hasClass('jhjd')) && nextnode.hasClass('lastJ')) {
|
|
274500
|
+
var targgetId = conn.targetId;
|
|
274501
|
+
var allConnections = jsPlumb.getAllConnections();
|
|
274502
|
+
var counts = 0;
|
|
274503
|
+
for (var _i2 = 0; _i2 < allConnections.length; _i2++) {
|
|
274504
|
+
if (allConnections[_i2].id !== conn.id && (jquery_default()(allConnections[_i2].source).hasClass('jcjd') || jquery_default()(allConnections[_i2].source).hasClass('jhjd')) && allConnections[_i2].targetId === targgetId) {
|
|
274505
|
+
counts++;
|
|
274506
|
+
}
|
|
274507
|
+
}
|
|
274508
|
+
if (counts === 0) {
|
|
274509
|
+
nextnode.removeClass('lastJ');
|
|
274510
|
+
}
|
|
274161
274511
|
}
|
|
274162
|
-
_this3.wflow.
|
|
274163
|
-
|
|
274164
|
-
|
|
274165
|
-
|
|
274166
|
-
_this3.connectsArr = connectsArr;
|
|
274167
|
-
var domHtmlArr = chartData.domHtml;
|
|
274168
|
-
for (var i = 0; i < domHtmlArr.length; i++) {
|
|
274169
|
-
jquery_default()('#center').append(common/* Base64 */.o.decode(domHtmlArr[i].domH));
|
|
274512
|
+
for (var _i3 = 0; _i3 < _this3.wflow.nextNodes.length; _i3++) {
|
|
274513
|
+
if (_this.wflow.nextNodes[_i3].pathId === deleteConnId) {
|
|
274514
|
+
_this.wflow.nextNodes.splice(_i3--, 1);
|
|
274515
|
+
}
|
|
274170
274516
|
}
|
|
274171
|
-
|
|
274172
|
-
|
|
274173
|
-
|
|
274174
|
-
var containerLeft = null;
|
|
274175
|
-
var containerTop = null;
|
|
274176
|
-
if (chartData.descDiv) {
|
|
274177
|
-
containerHeight = chartData.descDiv.height;
|
|
274178
|
-
containerLeft = chartData.descDiv.left;
|
|
274179
|
-
containerTop = chartData.descDiv.top;
|
|
274517
|
+
for (var _i4 = 0; _i4 < _this3.wflow.pathFieldValues.length; _i4++) {
|
|
274518
|
+
if (_this.wflow.pathFieldValues[_i4].pathId === deleteConnId) {
|
|
274519
|
+
_this.wflow.pathFieldValues.splice(_i4--, 1);
|
|
274180
274520
|
}
|
|
274181
|
-
FlowTracevue_type_script_lang_js_showProcessDesc(desc, containerHeight, containerLeft, containerTop);
|
|
274182
274521
|
}
|
|
274183
|
-
|
|
274184
|
-
|
|
274185
|
-
|
|
274186
|
-
|
|
274522
|
+
for (var _i5 = 0; _i5 < _this3.wflow.paths.length; _i5++) {
|
|
274523
|
+
if (conn.id === _this.wflow.paths[_i5].id) {
|
|
274524
|
+
_this.wflow.paths.splice(_i5--, 1);
|
|
274525
|
+
}
|
|
274526
|
+
}
|
|
274527
|
+
jsPlumb.deleteConnection(conn);
|
|
274528
|
+
// 删除wflow.paths中的path
|
|
274187
274529
|
});
|
|
274188
|
-
}
|
|
274189
|
-
}).then(function () {
|
|
274190
|
-
_this3.loading = false;
|
|
274191
|
-
var nodeIdArr = [];
|
|
274192
|
-
jquery_default()('.process').removeClass('seled');
|
|
274193
|
-
jquery_default()('.process').each(function (index, elem) {
|
|
274194
|
-
nodeIdArr.push(jquery_default()(elem).attr('id'));
|
|
274195
|
-
FlowTracevue_type_script_lang_js_nodeEvents(jquery_default()(elem).attr('id'), _this3.wflow, _this3);
|
|
274196
|
-
if (jquery_default()(elem).hasClass('ptjd')) {
|
|
274197
|
-
jquery_default()(elem).find('img').attr('src', _this3.ptjd);
|
|
274198
|
-
jquery_default()(elem).find('span').text('普通节点');
|
|
274199
|
-
} else if (jquery_default()(elem).hasClass('jzjd')) {
|
|
274200
|
-
jquery_default()(elem).find('img').attr('src', _this3.jzjd);
|
|
274201
|
-
jquery_default()(elem).find('span').text('竞争节点');
|
|
274202
|
-
} else if (jquery_default()(elem).hasClass('drbx')) {
|
|
274203
|
-
jquery_default()(elem).find('img').attr('src', _this3.drbx);
|
|
274204
|
-
jquery_default()(elem).find('span').text('多人并行');
|
|
274205
|
-
} else if (jquery_default()(elem).hasClass('drcx')) {
|
|
274206
|
-
jquery_default()(elem).find('img').attr('src', _this3.drcx);
|
|
274207
|
-
jquery_default()(elem).find('span').text('多人串行');
|
|
274208
|
-
} else if (jquery_default()(elem).hasClass('hqjd')) {
|
|
274209
|
-
jquery_default()(elem).find('img').attr('src', _this3.hqjd);
|
|
274210
|
-
jquery_default()(elem).find('span').text('会签节点');
|
|
274211
|
-
} else if (jquery_default()(elem).hasClass('ywjd')) {
|
|
274212
|
-
jquery_default()(elem).find('img').attr('src', _this3.ywjd);
|
|
274213
|
-
jquery_default()(elem).find('span').text('阅文节点');
|
|
274214
|
-
}
|
|
274215
274530
|
});
|
|
274216
|
-
|
|
274217
|
-
|
|
274531
|
+
|
|
274532
|
+
// 3自定义右键菜单
|
|
274533
|
+
jquery_default()(document).bind('contextmenu', function () {
|
|
274534
|
+
return false;
|
|
274218
274535
|
});
|
|
274219
|
-
|
|
274220
|
-
|
|
274221
|
-
|
|
274222
|
-
|
|
274223
|
-
|
|
274224
|
-
|
|
274225
|
-
|
|
274226
|
-
|
|
274227
|
-
return conn.PageSourceId === pwflog[0].nodeId && conn.PageTargetId === wflog.nodeId;
|
|
274536
|
+
jquery_default()('#center').click(function () {
|
|
274537
|
+
jquery_default()('#centextMenu').remove();
|
|
274538
|
+
var aConn = jsPlumb.getConnections(); // 获取容器所有的连接线
|
|
274539
|
+
for (var i = 0; i < aConn.length; i++) {
|
|
274540
|
+
aConn[i].setPaintStyle({
|
|
274541
|
+
stroke: '#438eb9',
|
|
274542
|
+
fillStyle: '#438eb9',
|
|
274543
|
+
radius: 5
|
|
274228
274544
|
});
|
|
274229
|
-
|
|
274230
|
-
|
|
274231
|
-
|
|
274232
|
-
|
|
274233
|
-
|
|
274234
|
-
|
|
274235
|
-
|
|
274236
|
-
|
|
274237
|
-
|
|
274238
|
-
|
|
274239
|
-
|
|
274240
|
-
|
|
274241
|
-
|
|
274242
|
-
|
|
274243
|
-
|
|
274244
|
-
|
|
274245
|
-
|
|
274246
|
-
|
|
274545
|
+
aConn[i].endpoints[0]._jsPlumb.maxConnections = -1;
|
|
274546
|
+
aConn[i].endpoints[1]._jsPlumb.maxConnections = -1;
|
|
274547
|
+
}
|
|
274548
|
+
_this.ComparePath();
|
|
274549
|
+
if (window.getSelection) {
|
|
274550
|
+
window.getSelection().removeAllRanges();
|
|
274551
|
+
}
|
|
274552
|
+
});
|
|
274553
|
+
jquery_default()('#center').bind('mousedown', function (e) {
|
|
274554
|
+
if (e.which === 3) {
|
|
274555
|
+
// console.log(e)
|
|
274556
|
+
jquery_default()('.dropdown-menu').hide();
|
|
274557
|
+
if (e.target.offsetParent && e.target.offsetParent.id === 'addNodeBtn') {
|
|
274558
|
+
jquery_default()('.dropdown-menu').find('a').hide();
|
|
274559
|
+
jquery_default()('#centextMenu').remove();
|
|
274560
|
+
jquery_default()('.dropdown-menu').show();
|
|
274561
|
+
jquery_default()('.dropdown-menu').css({
|
|
274562
|
+
left: e.pageX,
|
|
274563
|
+
top: e.pageY
|
|
274564
|
+
});
|
|
274565
|
+
jquery_default()('#manualConn').show();
|
|
274566
|
+
jquery_default()('.dropdown-menu').find('#manualConn').unbind();
|
|
274567
|
+
jquery_default()('#manualConn').bind('click', function () {
|
|
274568
|
+
//设置为连接线模式
|
|
274569
|
+
_this.dragLine = true;
|
|
274570
|
+
_this.$forceUpdate();
|
|
274571
|
+
});
|
|
274572
|
+
} else if (e.target.offsetParent && e.target.offsetParent.id === 'dragLineBtn') {
|
|
274573
|
+
jquery_default()('.dropdown-menu').find('a').hide();
|
|
274574
|
+
jquery_default()('#centextMenu').remove();
|
|
274575
|
+
jquery_default()('.dropdown-menu').show();
|
|
274576
|
+
jquery_default()('.dropdown-menu').css({
|
|
274577
|
+
left: e.pageX,
|
|
274578
|
+
top: e.pageY
|
|
274579
|
+
});
|
|
274580
|
+
jquery_default()('#autoConn').show();
|
|
274581
|
+
jquery_default()('.dropdown-menu').find('#autoConn').unbind();
|
|
274582
|
+
jquery_default()('#autoConn').bind('click', function () {
|
|
274583
|
+
//设置为连接线模式
|
|
274584
|
+
_this.dragLine = false;
|
|
274585
|
+
_this.$forceUpdate();
|
|
274247
274586
|
});
|
|
274248
274587
|
}
|
|
274249
|
-
|
|
274250
|
-
}
|
|
274251
|
-
|
|
274252
|
-
//节点连接线
|
|
274253
|
-
(0,globalStyle/* createPathLine */.on)(_this3.connectsArr);
|
|
274254
|
-
if (_this3.wflogList && _this3.wflogList.length > 0) {
|
|
274255
|
-
var wflogList = _this3.setWflogNodeId(_this3.wflogList);
|
|
274256
|
-
for (var i = 0; i < _this3.redoPathsTimes; i++) {
|
|
274257
|
-
_this3.redoPaths.forEach(function (info) {
|
|
274258
|
-
_this3.flowRedo(info, wflogList); // 再重复设置一次连接线样式,解决决策、聚合节点后已执行路径样式不能更新的问题
|
|
274259
|
-
});
|
|
274588
|
+
return false;
|
|
274260
274589
|
}
|
|
274261
|
-
}
|
|
274262
|
-
document.querySelectorAll('.model_process_wwc').forEach(function (wwc) {
|
|
274263
|
-
wwc.onclick = function () {
|
|
274264
|
-
_this3.showWflog = null;
|
|
274265
|
-
};
|
|
274266
274590
|
});
|
|
274267
|
-
|
|
274268
|
-
|
|
274269
|
-
|
|
274270
|
-
/** *************************************路径数据******************************************/
|
|
274271
|
-
|
|
274272
|
-
// 1路径创建
|
|
274273
|
-
FlowTracevue_type_script_lang_js_jsPlumb.bind('connection', function (info) {
|
|
274274
|
-
// console.log(info)
|
|
274275
|
-
_this3.dragPath(info);
|
|
274276
|
-
info.connection.setPaintStyle({
|
|
274277
|
-
stroke: '#438eb9',
|
|
274278
|
-
fillStyle: '#438eb9',
|
|
274279
|
-
radius: 5,
|
|
274280
|
-
lineWidth: '5px',
|
|
274281
|
-
strokeWidth: 2
|
|
274591
|
+
jquery_default()(document).bind('click', function () {
|
|
274592
|
+
jquery_default()('.dropdown-menu').hide();
|
|
274593
|
+
jquery_default()('.dropdown-menu').find('#deleteNode').unbind();
|
|
274282
274594
|
});
|
|
274283
|
-
|
|
274284
|
-
|
|
274285
|
-
return false;
|
|
274286
|
-
});
|
|
274287
|
-
this.wflow.ideaLabels = [{}];
|
|
274288
|
-
this.ideaArr = [];
|
|
274289
|
-
},
|
|
274290
|
-
methods: {
|
|
274595
|
+
},
|
|
274291
274596
|
setWflogNodeId: function setWflogNodeId(wflogList) {
|
|
274292
274597
|
if (!this.wfInstance.udmNodes) {
|
|
274293
274598
|
return wflogList;
|
|
@@ -274417,29 +274722,292 @@ var FlowTracevue_type_script_lang_js_require4 = __webpack_require__(53978),
|
|
|
274417
274722
|
};
|
|
274418
274723
|
},
|
|
274419
274724
|
dragPath: function dragPath(pathTarget) {
|
|
274420
|
-
|
|
274421
|
-
|
|
274725
|
+
var _this6 = this;
|
|
274726
|
+
if (jquery_default()(pathTarget.source).hasClass('start') || jquery_default()(pathTarget.source).hasClass('dfzjd')) {
|
|
274727
|
+
// 开始节点、多分支节点后续连接线,不需要生成流程路径
|
|
274422
274728
|
pathTarget.connection.id = (0,common/* uuid */.u)();
|
|
274423
|
-
|
|
274729
|
+
return;
|
|
274730
|
+
}
|
|
274731
|
+
//初始化当前节点
|
|
274732
|
+
this.curPath = {};
|
|
274733
|
+
for (var p = 0; p < this.pathObj.length; p++) {
|
|
274734
|
+
if (this.pathObj[p].id === pathTarget.connection._jsPlumb.parameters.pathId) {
|
|
274735
|
+
this.curPath = this.pathObj[p];
|
|
274736
|
+
pathTarget.connection.id = this.pathObj[p].id;
|
|
274737
|
+
break;
|
|
274738
|
+
}
|
|
274739
|
+
}
|
|
274740
|
+
if (!this.wfInstance.udmNodes || this.wfInstance.creatorAccount !== this.curTN.userAccount || this.wfInstance.status >= 2) {
|
|
274741
|
+
return;
|
|
274742
|
+
}
|
|
274743
|
+
if (!this.curPath.id) {
|
|
274424
274744
|
pathTarget.connection.id = (0,common/* uuid */.u)();
|
|
274745
|
+
this.curPath = JSON.parse(JSON.stringify(model_data/* wfPath */.Lq));
|
|
274746
|
+
this.curPath.id = pathTarget.connection.id;
|
|
274747
|
+
this.curPath.processId = this.process.id;
|
|
274748
|
+
this.pathObj.push(this.curPath);
|
|
274749
|
+
}
|
|
274750
|
+
|
|
274751
|
+
// 1、人工节点画出的线,生成Path;
|
|
274752
|
+
var isStartPersonNode = jquery_default()(pathTarget.source).hasClass('ptjd') || jquery_default()(pathTarget.source).hasClass('jzjd') || jquery_default()(pathTarget.source).hasClass('drbx') || jquery_default()(pathTarget.source).hasClass('drcx') || jquery_default()(pathTarget.source).hasClass('hqjd') || jquery_default()(pathTarget.source).hasClass('ywjd') || jquery_default()(pathTarget.source).hasClass('childWf');
|
|
274753
|
+
if (isStartPersonNode && !jquery_default()(pathTarget.source).hasClass('start')) {
|
|
274754
|
+
this.curPath.preNodeId = jquery_default()(pathTarget.source).attr('id');
|
|
274755
|
+
this.wflow.paths.push(this.curPath);
|
|
274756
|
+
}
|
|
274757
|
+
if (this.curPath.preNodeId !== '' && this.curPath.preNodeId !== undefined) {
|
|
274758
|
+
this.wflow.nodes.forEach(function (node) {
|
|
274759
|
+
if (_this6.curPath.preNodeId === node.id) {
|
|
274760
|
+
_this6.curPath.preNodeName = node.name;
|
|
274761
|
+
}
|
|
274762
|
+
});
|
|
274763
|
+
}
|
|
274764
|
+
if (jquery_default()(pathTarget.source).hasClass('jsrw') || jquery_default()(pathTarget.source).hasClass('jslc') || jquery_default()(pathTarget.source).hasClass('parentWf')) {
|
|
274765
|
+
this.$message({
|
|
274766
|
+
message: '结束类型节点后不能添加路径',
|
|
274767
|
+
type: 'warning'
|
|
274768
|
+
});
|
|
274769
|
+
setTimeout(function () {
|
|
274770
|
+
jsPlumb.deleteConnection(pathTarget.connection);
|
|
274771
|
+
}, 200);
|
|
274772
|
+
return;
|
|
274773
|
+
}
|
|
274774
|
+
|
|
274775
|
+
// 6、计算路径类型
|
|
274776
|
+
var targetId = jquery_default()(pathTarget.target).attr('id');
|
|
274777
|
+
var sourceId = jquery_default()(pathTarget.source).attr('id');
|
|
274778
|
+
var isBack = this.pathIsBack(targetId, sourceId);
|
|
274779
|
+
if (jquery_default()(pathTarget.source).attr('id') === jquery_default()(pathTarget.target).attr('id')) {
|
|
274780
|
+
// 如果path指向自身node,那么默认类型为增加处理人
|
|
274781
|
+
this.curPath.pathType = 1;
|
|
274782
|
+
} else if (jquery_default()(pathTarget.target).hasClass('jslc')) {
|
|
274783
|
+
// 如果指向结束流程的path,路径类型为“结束流程”
|
|
274784
|
+
this.curPath.pathType = 4;
|
|
274785
|
+
} else if (jquery_default()(pathTarget.target).hasClass('jsrw')) {
|
|
274786
|
+
// 如果指向结束任务的path,路径类型为“结束当前处理”
|
|
274787
|
+
this.curPath.pathType = 7;
|
|
274788
|
+
} else if (isBack && this.curPath.status === -1) {
|
|
274789
|
+
// 如果目标环节编号小于起始环节编号,路径类型为"退回到历史节点"
|
|
274790
|
+
this.curPath.pathType = 3;
|
|
274791
|
+
}
|
|
274792
|
+
if (!jquery_default()(pathTarget.source).hasClass('dfzjd')) {
|
|
274793
|
+
if (jquery_default()(pathTarget.target).hasClass('ptjd') || jquery_default()(pathTarget.target).hasClass('jzjd') || jquery_default()(pathTarget.target).hasClass('drbx') || jquery_default()(pathTarget.target).hasClass('drcx') || jquery_default()(pathTarget.target).hasClass('hqjd') || jquery_default()(pathTarget.target).hasClass('ywjd')) {
|
|
274794
|
+
var nodeName = pathTarget.target.querySelector('p').innerText;
|
|
274795
|
+
if (!this.curPath.name && nodeName) {
|
|
274796
|
+
this.curPath.name = '送' + nodeName;
|
|
274797
|
+
if (pathTarget.targetId === pathTarget.sourceId) {
|
|
274798
|
+
this.curPath.name = '送其他人处理';
|
|
274799
|
+
} else if (this.curPath.pathType === 3) {
|
|
274800
|
+
this.curPath.name = '退回' + nodeName;
|
|
274801
|
+
}
|
|
274802
|
+
}
|
|
274803
|
+
} else if (jquery_default()(pathTarget.target).hasClass('jsrw') || jquery_default()(pathTarget.target).hasClass('jslc')) {
|
|
274804
|
+
this.curPath.name = '结束处理';
|
|
274805
|
+
}
|
|
274806
|
+
}
|
|
274807
|
+
|
|
274808
|
+
// 路径自动编号
|
|
274809
|
+
if (this.curPath.status === -1) {
|
|
274810
|
+
this.curPath.status = 1;
|
|
274811
|
+
var Num = 0;
|
|
274812
|
+
for (var i = 0; i < this.wflow.paths.length; i++) {
|
|
274813
|
+
if (this.curPath.preNodeId === this.wflow.paths[i].preNodeId) {
|
|
274814
|
+
Num = Num + 1;
|
|
274815
|
+
}
|
|
274816
|
+
}
|
|
274817
|
+
this.curPath.pathNo = Num * 10;
|
|
274818
|
+
pathTarget.connection.setLabel({
|
|
274819
|
+
label: this.curPath.name,
|
|
274820
|
+
cssClass: 'line_text'
|
|
274821
|
+
});
|
|
274822
|
+
}
|
|
274823
|
+
if (!jquery_default()(pathTarget.source).hasClass('start')) {
|
|
274824
|
+
this.clickPath(pathTarget.connection);
|
|
274825
|
+
}
|
|
274826
|
+
},
|
|
274827
|
+
clickPath: function clickPath(pathTarget) {
|
|
274828
|
+
var _this7 = this;
|
|
274829
|
+
var paths = this.wflow.paths.filter(function (path) {
|
|
274830
|
+
return pathTarget.id === path.id;
|
|
274831
|
+
});
|
|
274832
|
+
if (paths.length === 0) {
|
|
274833
|
+
return;
|
|
274425
274834
|
} else {
|
|
274426
|
-
|
|
274427
|
-
|
|
274428
|
-
|
|
274429
|
-
|
|
274430
|
-
|
|
274431
|
-
|
|
274835
|
+
this.curPath = paths[0];
|
|
274836
|
+
}
|
|
274837
|
+
this.curPath.preNodeId = pathTarget.sourceId;
|
|
274838
|
+
this.curPath.targetNodeId = pathTarget.targetId;
|
|
274839
|
+
if (!this.curPath.preNodeName && this.curPath.preNodeId) {
|
|
274840
|
+
this.wflow.nodes.forEach(function (node) {
|
|
274841
|
+
if (_this7.curPath.preNodeId === node.id) {
|
|
274842
|
+
_this7.curPath.preNodeName = node.name;
|
|
274432
274843
|
}
|
|
274844
|
+
});
|
|
274845
|
+
}
|
|
274846
|
+
|
|
274847
|
+
// 点击路径执行函数
|
|
274848
|
+
FlowTracevue_type_script_lang_js_ecinc_process.connection = pathTarget; // 为实现动态改变路径名称
|
|
274849
|
+
},
|
|
274850
|
+
// 通过node编号判断是否显示“退回到历史节点”
|
|
274851
|
+
pathIsBack: function pathIsBack(targetId, sourceId) {
|
|
274852
|
+
var targetNo = '';
|
|
274853
|
+
var sourceNo = '';
|
|
274854
|
+
for (var i = 0; i < this.wflow.nodes.length; i++) {
|
|
274855
|
+
if (this.wflow.nodes[i].id === targetId) {
|
|
274856
|
+
targetNo = this.wflow.nodes[i].nodeNo;
|
|
274857
|
+
}
|
|
274858
|
+
if (this.wflow.nodes[i].id === sourceId) {
|
|
274859
|
+
sourceNo = this.wflow.nodes[i].nodeNo;
|
|
274860
|
+
}
|
|
274861
|
+
}
|
|
274862
|
+
if (targetNo < parseInt(sourceNo)) {
|
|
274863
|
+
return true;
|
|
274864
|
+
} else {
|
|
274865
|
+
return false;
|
|
274866
|
+
}
|
|
274867
|
+
},
|
|
274868
|
+
btnAddNodeClick: function btnAddNodeClick(event) {
|
|
274869
|
+
FlowTracevue_type_script_lang_js_addNodeBtnClick(this, event, event.currentTarget);
|
|
274870
|
+
},
|
|
274871
|
+
emitData: function emitData() {
|
|
274872
|
+
//更新节点数据
|
|
274873
|
+
console.log(this.curNode);
|
|
274874
|
+
},
|
|
274875
|
+
labelChange: function labelChange(str, pathId) {
|
|
274876
|
+
FlowTracevue_type_script_lang_js_ecinc_process.labelChange(this, str, pathId);
|
|
274877
|
+
},
|
|
274878
|
+
bindName: function bindName(id, name) {
|
|
274879
|
+
//更新节点名称、节点类型,节点前置路径名称
|
|
274880
|
+
FlowTracevue_type_script_lang_js_ecinc_process.bindName(id, name);
|
|
274881
|
+
FlowTracevue_type_script_lang_js_ecinc_process.changeNodeType(this, id, this.udmNode.todoMode, this.udmNode);
|
|
274882
|
+
var allConnections = jsPlumb.getAllConnections();
|
|
274883
|
+
for (var i = 0; i < allConnections.length; i++) {
|
|
274884
|
+
if (allConnections[i].targetId === id && !jquery_default()('#' + allConnections[i].sourceId).hasClass('start')) {
|
|
274885
|
+
var pathName = '送' + name;
|
|
274886
|
+
allConnections[i].setLabel({
|
|
274887
|
+
label: pathName,
|
|
274888
|
+
cssClass: 'line_text'
|
|
274889
|
+
});
|
|
274890
|
+
}
|
|
274891
|
+
}
|
|
274892
|
+
for (var _i6 = 0; _i6 < this.wflow.paths.length; _i6++) {
|
|
274893
|
+
if (this.wflow.paths[_i6].targetNodeId === id) {
|
|
274894
|
+
this.wflow.paths[_i6].name = '送' + name;
|
|
274895
|
+
}
|
|
274896
|
+
}
|
|
274897
|
+
},
|
|
274898
|
+
// 判断是否有 路径超出了范围
|
|
274899
|
+
ComparePath: function ComparePath() {
|
|
274900
|
+
FlowTracevue_type_script_lang_js_ecinc_process.ComparePath();
|
|
274901
|
+
},
|
|
274902
|
+
AddAnchor: function AddAnchor() {
|
|
274903
|
+
FlowTracevue_type_script_lang_js_ecinc_process.AddAnchor(this, globalStyle/* hollowCircle */.Yy);
|
|
274904
|
+
},
|
|
274905
|
+
// 环节数量
|
|
274906
|
+
getProcessNum: function getProcessNum() {
|
|
274907
|
+
this.processNum = this.wfInstance.udmNodes.length + 1;
|
|
274908
|
+
},
|
|
274909
|
+
removeUdmNode: function removeUdmNode(nodeId) {
|
|
274910
|
+
var _this8 = this;
|
|
274911
|
+
this.wfInstance.udmNodes.forEach(function (udmNode, index) {
|
|
274912
|
+
if (udmNode.uuid === nodeId) {
|
|
274913
|
+
_this8.$bus.emit('delUdmNode', index);
|
|
274914
|
+
}
|
|
274915
|
+
});
|
|
274916
|
+
},
|
|
274917
|
+
curNodeDbclick: function curNodeDbclick(targetId) {
|
|
274918
|
+
var _this9 = this;
|
|
274919
|
+
//已结束、已退回、进行中的环节,不允许修改
|
|
274920
|
+
if (jquery_default()('#' + targetId).hasClass('model_process_yb') || jquery_default()('#' + targetId).hasClass('model_process_yth') || jquery_default()('#' + targetId).hasClass('model_process_jxz')) {
|
|
274921
|
+
return;
|
|
274922
|
+
}
|
|
274923
|
+
if (this.wfInstance.creatorAccount !== this.curTN.userAccount || this.wfInstance.status >= 2) {
|
|
274924
|
+
return;
|
|
274925
|
+
}
|
|
274926
|
+
for (var j = 0; j < this.wflow.nodes.length; j++) {
|
|
274927
|
+
if (targetId === this.wflow.nodes[j].id) {
|
|
274928
|
+
this.curNode = this.wflow.nodes[j];
|
|
274929
|
+
break;
|
|
274433
274930
|
}
|
|
274434
274931
|
}
|
|
274932
|
+
var taskNode = this.wfInstance.udmNodes.filter(function (node) {
|
|
274933
|
+
return node.uuid === _this9.curNode.id || node.uuid === targetId;
|
|
274934
|
+
});
|
|
274935
|
+
if (taskNode.length === 1) {
|
|
274936
|
+
this.udmNode = taskNode[0];
|
|
274937
|
+
} else {
|
|
274938
|
+
var udmNode = this.curNode;
|
|
274939
|
+
udmNode.uuid = this.curNode.id || targetId;
|
|
274940
|
+
udmNode.todoMode = 0;
|
|
274941
|
+
if (this.wfInstance.udmNodes.length == 1) {
|
|
274942
|
+
//第二个环节,按组织机构选择处理人
|
|
274943
|
+
udmNode.selectType = 0;
|
|
274944
|
+
udmNode.canEdit = 1;
|
|
274945
|
+
udmNode.returnHistoryTN = 1;
|
|
274946
|
+
} else {
|
|
274947
|
+
//第二个环节后的其它环节,指定处理人
|
|
274948
|
+
udmNode.selectType = 3;
|
|
274949
|
+
udmNode.canEdit = 0;
|
|
274950
|
+
udmNode.returnHistoryTN = 0;
|
|
274951
|
+
}
|
|
274952
|
+
udmNode.status = 0;
|
|
274953
|
+
udmNode.ideaLable = '';
|
|
274954
|
+
this.udmNode = udmNode;
|
|
274955
|
+
}
|
|
274956
|
+
this.$forceUpdate();
|
|
274957
|
+
},
|
|
274958
|
+
saveChartData: function saveChartData() {
|
|
274959
|
+
var _this = this;
|
|
274960
|
+
if (!_this.wfInstance.udmNodes || this.wfInstance.creatorAccount !== this.curTN.userAccount || this.wfInstance.status >= 2) {
|
|
274961
|
+
return;
|
|
274962
|
+
}
|
|
274963
|
+
|
|
274964
|
+
// 连接器数据
|
|
274965
|
+
var connects = [];
|
|
274966
|
+
jquery_default().each(jsPlumb.getAllConnections(), function (index, connection) {
|
|
274967
|
+
var thisConnect = _this.connectsArr.filter(function (obj) {
|
|
274968
|
+
return obj.ConnectionId === connection.id;
|
|
274969
|
+
})[0];
|
|
274970
|
+
var xyData = FlowTracevue_type_script_lang_js_getPathXyData(connection, thisConnect);
|
|
274971
|
+
connects.push({
|
|
274972
|
+
ConnectionId: connection.id,
|
|
274973
|
+
PageSourceId: connection.sourceId,
|
|
274974
|
+
PageTargetId: connection.targetId,
|
|
274975
|
+
uuid: connection.getUuids(),
|
|
274976
|
+
label: connection.getLabel(),
|
|
274977
|
+
labelLocation: connection.labelLocation,
|
|
274978
|
+
firstEndpoints: xyData.firstEndpoints,
|
|
274979
|
+
secondEndpoints: xyData.secondEndpoints,
|
|
274980
|
+
type: connection.connector.type,
|
|
274981
|
+
pathMinX: xyData.pathMinX,
|
|
274982
|
+
pathMaxX: xyData.pathMaxX,
|
|
274983
|
+
pathMinY: xyData.pathMinY,
|
|
274984
|
+
pathMaxY: xyData.pathMaxY,
|
|
274985
|
+
linesCount: xyData.linesCount
|
|
274986
|
+
});
|
|
274987
|
+
});
|
|
274988
|
+
|
|
274989
|
+
// dom数据
|
|
274990
|
+
var domHtml = [];
|
|
274991
|
+
jquery_default()('#center .process').each(function (index, elem) {
|
|
274992
|
+
var $elem = jquery_default()(elem);
|
|
274993
|
+
domHtml.push({
|
|
274994
|
+
domH: common/* Base64 */.o.encode($elem.prop('outerHTML'))
|
|
274995
|
+
});
|
|
274996
|
+
});
|
|
274997
|
+
this.wfInstance.passenger.chartData = {
|
|
274998
|
+
name: 'chartData',
|
|
274999
|
+
connects: connects,
|
|
275000
|
+
domHtml: domHtml,
|
|
275001
|
+
paths: this.wflow.paths
|
|
275002
|
+
};
|
|
274435
275003
|
}
|
|
274436
275004
|
}
|
|
274437
275005
|
});
|
|
274438
275006
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/FlowTrace/index.vue?vue&type=script&lang=js
|
|
274439
275007
|
/* harmony default export */ var components_FlowTracevue_type_script_lang_js = (FlowTracevue_type_script_lang_js);
|
|
274440
|
-
// 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/ecwplus/WorkflowDesigner/src/components/FlowTrace/index.vue?vue&type=style&index=0&id=
|
|
274441
|
-
var
|
|
274442
|
-
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/FlowTrace/index.vue?vue&type=style&index=0&id=
|
|
275008
|
+
// 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/ecwplus/WorkflowDesigner/src/components/FlowTrace/index.vue?vue&type=style&index=0&id=720c8d3e&prod&scoped=true&lang=scss
|
|
275009
|
+
var FlowTracevue_type_style_index_0_id_720c8d3e_prod_scoped_true_lang_scss = __webpack_require__(53267);
|
|
275010
|
+
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/FlowTrace/index.vue?vue&type=style&index=0&id=720c8d3e&prod&scoped=true&lang=scss
|
|
274443
275011
|
|
|
274444
275012
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/FlowTrace/index.vue
|
|
274445
275013
|
|
|
@@ -274452,18 +275020,18 @@ var FlowTracevue_type_style_index_0_id_11c9d218_prod_scoped_true_lang_scss = __w
|
|
|
274452
275020
|
|
|
274453
275021
|
var FlowTrace_component = (0,componentNormalizer/* default */.A)(
|
|
274454
275022
|
components_FlowTracevue_type_script_lang_js,
|
|
274455
|
-
|
|
274456
|
-
|
|
275023
|
+
FlowTracevue_type_template_id_720c8d3e_scoped_true_render,
|
|
275024
|
+
FlowTracevue_type_template_id_720c8d3e_scoped_true_staticRenderFns,
|
|
274457
275025
|
false,
|
|
274458
275026
|
null,
|
|
274459
|
-
"
|
|
275027
|
+
"720c8d3e",
|
|
274460
275028
|
null
|
|
274461
275029
|
|
|
274462
275030
|
)
|
|
274463
275031
|
|
|
274464
275032
|
/* harmony default export */ var FlowTrace = (FlowTrace_component.exports);
|
|
274465
|
-
;// 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/ecwplus/WorkflowDesigner/src/components/Tester/index.vue?vue&type=template&id=
|
|
274466
|
-
var
|
|
275033
|
+
;// 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/ecwplus/WorkflowDesigner/src/components/Tester/index.vue?vue&type=template&id=71fdf580&scoped=true
|
|
275034
|
+
var Testervue_type_template_id_71fdf580_scoped_true_render = function render() {
|
|
274467
275035
|
var _vm = this,
|
|
274468
275036
|
_c = _vm._self._c;
|
|
274469
275037
|
return _c('div', {
|
|
@@ -274631,10 +275199,10 @@ var Testervue_type_template_id_521308bc_scoped_true_render = function render() {
|
|
|
274631
275199
|
}
|
|
274632
275200
|
}), _c('ModifyWflogSubmitFile'), _c('select-dialog')], 1);
|
|
274633
275201
|
};
|
|
274634
|
-
var
|
|
275202
|
+
var Testervue_type_template_id_71fdf580_scoped_true_staticRenderFns = [];
|
|
274635
275203
|
|
|
274636
|
-
;// 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/ecwplus/WorkflowDesigner/src/components/Tester/TestConfig.vue?vue&type=template&id=
|
|
274637
|
-
var
|
|
275204
|
+
;// 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/ecwplus/WorkflowDesigner/src/components/Tester/TestConfig.vue?vue&type=template&id=9d29e058&scoped=true
|
|
275205
|
+
var TestConfigvue_type_template_id_9d29e058_scoped_true_render = function render() {
|
|
274638
275206
|
var _vm = this,
|
|
274639
275207
|
_c = _vm._self._c;
|
|
274640
275208
|
return _c('div', {
|
|
@@ -274705,7 +275273,7 @@ var TestConfigvue_type_template_id_0c0d4f28_scoped_true_render = function render
|
|
|
274705
275273
|
}
|
|
274706
275274
|
}) : _vm._e()], 1)], 1)], 1)])])], 1);
|
|
274707
275275
|
};
|
|
274708
|
-
var
|
|
275276
|
+
var TestConfigvue_type_template_id_9d29e058_scoped_true_staticRenderFns = [];
|
|
274709
275277
|
|
|
274710
275278
|
;// 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/ecwplus/WorkflowDesigner/src/components/Tester/TestConfig.vue?vue&type=script&lang=js
|
|
274711
275279
|
function TestConfigvue_type_script_lang_js_typeof(o) { "@babel/helpers - typeof"; return TestConfigvue_type_script_lang_js_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; }, TestConfigvue_type_script_lang_js_typeof(o); }
|
|
@@ -274781,6 +275349,16 @@ function TestConfigvue_type_script_lang_js_asyncToGenerator(n) { return function
|
|
|
274781
275349
|
searchable: true,
|
|
274782
275350
|
listAdvSearchIndex: 0,
|
|
274783
275351
|
propType: 'String'
|
|
275352
|
+
}, {
|
|
275353
|
+
align: 'center',
|
|
275354
|
+
field: 'status',
|
|
275355
|
+
title: '状态 ',
|
|
275356
|
+
width: '75px',
|
|
275357
|
+
sortable: true,
|
|
275358
|
+
listAdvSearchElement: 'select',
|
|
275359
|
+
searchable: true,
|
|
275360
|
+
elementFormatter: '0:未启动\r\n1:未通过\r\n2:已通过\r\n',
|
|
275361
|
+
propType: 'Short'
|
|
274784
275362
|
}],
|
|
274785
275363
|
listpageBtns: [{
|
|
274786
275364
|
id: 'btn_export',
|
|
@@ -274825,6 +275403,12 @@ function TestConfigvue_type_script_lang_js_asyncToGenerator(n) { return function
|
|
|
274825
275403
|
testerVo.orgName = _this.process.orgName;
|
|
274826
275404
|
testerVo.sysCode = _this.process.sysCode;
|
|
274827
275405
|
testerVo.sysName = _this.process.sysName;
|
|
275406
|
+
if (_this.$route.query.staffId) {
|
|
275407
|
+
testerVo.tStaffId = _this.$route.query.staffId;
|
|
275408
|
+
testerVo.tOrgFullId = _this.$route.query.staffOrgID;
|
|
275409
|
+
testerVo.tCreateDept = _this.$route.query.staffOrgName;
|
|
275410
|
+
testerVo.tCreator = _this.$route.query.userName;
|
|
275411
|
+
}
|
|
274828
275412
|
_this.testerVo = testerVo;
|
|
274829
275413
|
_this.isnew = true;
|
|
274830
275414
|
setTimeout(function () {
|
|
@@ -274937,7 +275521,8 @@ function TestConfigvue_type_script_lang_js_asyncToGenerator(n) { return function
|
|
|
274937
275521
|
this.$bus.emit('showDoingDialog', '正在查询流程办理日志...');
|
|
274938
275522
|
var wfParams = {
|
|
274939
275523
|
busiDataId: row.id,
|
|
274940
|
-
submitMode: 'sidebar'
|
|
275524
|
+
submitMode: 'sidebar',
|
|
275525
|
+
wfId: row.tWfId
|
|
274941
275526
|
};
|
|
274942
275527
|
wfParams.wfEngineUrl = 'workflow/autoTest';
|
|
274943
275528
|
wfParams.autoTest = true;
|
|
@@ -274986,7 +275571,7 @@ function TestConfigvue_type_script_lang_js_asyncToGenerator(n) { return function
|
|
|
274986
275571
|
if (route.type === '0') {
|
|
274987
275572
|
// 普通路径,后续环节至少要有一个非阅文节点
|
|
274988
275573
|
var todoNodes = route.taskNodes.filter(function (node) {
|
|
274989
|
-
return node.type === '1';
|
|
275574
|
+
return node.type === '1' || node.type === 1;
|
|
274990
275575
|
});
|
|
274991
275576
|
if (todoNodes.length > 0) return true;
|
|
274992
275577
|
} else if (route.type !== '1' && route.type !== '2' && route.type !== '3' && route.type !== '12' && route.type !== '9' && route.type !== '16') {
|
|
@@ -275081,9 +275666,9 @@ function TestConfigvue_type_script_lang_js_asyncToGenerator(n) { return function
|
|
|
275081
275666
|
});
|
|
275082
275667
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Tester/TestConfig.vue?vue&type=script&lang=js
|
|
275083
275668
|
/* harmony default export */ var Tester_TestConfigvue_type_script_lang_js = (TestConfigvue_type_script_lang_js);
|
|
275084
|
-
// 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/ecwplus/WorkflowDesigner/src/components/Tester/TestConfig.vue?vue&type=style&index=0&id=
|
|
275085
|
-
var
|
|
275086
|
-
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Tester/TestConfig.vue?vue&type=style&index=0&id=
|
|
275669
|
+
// 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/ecwplus/WorkflowDesigner/src/components/Tester/TestConfig.vue?vue&type=style&index=0&id=9d29e058&prod&scoped=true&lang=scss
|
|
275670
|
+
var TestConfigvue_type_style_index_0_id_9d29e058_prod_scoped_true_lang_scss = __webpack_require__(77399);
|
|
275671
|
+
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Tester/TestConfig.vue?vue&type=style&index=0&id=9d29e058&prod&scoped=true&lang=scss
|
|
275087
275672
|
|
|
275088
275673
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Tester/TestConfig.vue
|
|
275089
275674
|
|
|
@@ -275096,19 +275681,19 @@ var TestConfigvue_type_style_index_0_id_0c0d4f28_prod_scoped_true_lang_scss = __
|
|
|
275096
275681
|
|
|
275097
275682
|
var TestConfig_component = (0,componentNormalizer/* default */.A)(
|
|
275098
275683
|
Tester_TestConfigvue_type_script_lang_js,
|
|
275099
|
-
|
|
275100
|
-
|
|
275684
|
+
TestConfigvue_type_template_id_9d29e058_scoped_true_render,
|
|
275685
|
+
TestConfigvue_type_template_id_9d29e058_scoped_true_staticRenderFns,
|
|
275101
275686
|
false,
|
|
275102
275687
|
null,
|
|
275103
|
-
"
|
|
275688
|
+
"9d29e058",
|
|
275104
275689
|
null
|
|
275105
275690
|
|
|
275106
275691
|
)
|
|
275107
275692
|
|
|
275108
275693
|
/* harmony default export */ var TestConfig = (TestConfig_component.exports);
|
|
275109
275694
|
;// 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/ecwplus/WorkflowDesigner/src/components/Tester/index.vue?vue&type=script&lang=js
|
|
275110
|
-
function Testervue_type_script_lang_js_typeof(o) { "@babel/helpers - typeof"; return Testervue_type_script_lang_js_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; }, Testervue_type_script_lang_js_typeof(o); }
|
|
275111
275695
|
function Testervue_type_script_lang_js_regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ Testervue_type_script_lang_js_regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == Testervue_type_script_lang_js_typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(Testervue_type_script_lang_js_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
|
275696
|
+
function Testervue_type_script_lang_js_typeof(o) { "@babel/helpers - typeof"; return Testervue_type_script_lang_js_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; }, Testervue_type_script_lang_js_typeof(o); }
|
|
275112
275697
|
function Testervue_type_script_lang_js_asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
|
|
275113
275698
|
function Testervue_type_script_lang_js_asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { Testervue_type_script_lang_js_asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { Testervue_type_script_lang_js_asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; }
|
|
275114
275699
|
function Testervue_type_script_lang_js_ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
@@ -275179,7 +275764,13 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275179
275764
|
};
|
|
275180
275765
|
},
|
|
275181
275766
|
computed: Testervue_type_script_lang_js_objectSpread({}, (0,vuex_esm/* mapGetters */.L8)(['loginUser'])),
|
|
275182
|
-
watch: {
|
|
275767
|
+
watch: {
|
|
275768
|
+
wfInstance: function wfInstance(val) {
|
|
275769
|
+
if (val && val.udmNodes && this.testerVo) {
|
|
275770
|
+
val.wfAlias = this.testerVo.tWfName;
|
|
275771
|
+
}
|
|
275772
|
+
}
|
|
275773
|
+
},
|
|
275183
275774
|
created: function created() {},
|
|
275184
275775
|
beforeDestroy: function beforeDestroy() {
|
|
275185
275776
|
this.observer.disconnect();
|
|
@@ -275190,10 +275781,14 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275190
275781
|
var _this2 = this;
|
|
275191
275782
|
Testervue_type_script_lang_js_ecinc_process.init();
|
|
275192
275783
|
Testervue_type_script_lang_js_ecinc_attr_panel.init();
|
|
275784
|
+
var reqUrl = 'workflow/wfdProcessMgr/getById?id=' + this.$route.query.id + '&tester=1';
|
|
275785
|
+
if (this.$route.query.udmWfInstanceId) {
|
|
275786
|
+
reqUrl += '&udmWfInstanceId=' + this.$route.query.udmWfInstanceId;
|
|
275787
|
+
}
|
|
275193
275788
|
this.$http({
|
|
275194
275789
|
method: 'GET',
|
|
275195
275790
|
contentType: 'application/x-www-form-urlencoded',
|
|
275196
|
-
url:
|
|
275791
|
+
url: reqUrl
|
|
275197
275792
|
}).then(function (response) {
|
|
275198
275793
|
_this2.loading = false;
|
|
275199
275794
|
if (response.body.autoTestConfigs && response.body.autoTestConfigs.length > 0) {
|
|
@@ -275210,6 +275805,9 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275210
275805
|
}
|
|
275211
275806
|
_this2.wflow.paths.length = 0;
|
|
275212
275807
|
_this2.process = response.body.vo.process;
|
|
275808
|
+
if (_this2.$route.query.udmWfName) {
|
|
275809
|
+
_this2.process.name = _this2.$route.query.udmWfName;
|
|
275810
|
+
}
|
|
275213
275811
|
var chartData = JSON.parse(response.body.vo.process.chartData);
|
|
275214
275812
|
var connectsArr = chartData.connects;
|
|
275215
275813
|
_this2.connectsArr = connectsArr;
|
|
@@ -275241,6 +275839,10 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275241
275839
|
jquery_default()(elem).find('img').attr('src', _this2.ywjd);
|
|
275242
275840
|
jquery_default()(elem).find('span').text('阅文节点');
|
|
275243
275841
|
}
|
|
275842
|
+
if (elem.innerHTML) {
|
|
275843
|
+
//删除流程跟踪图中的环节处理人
|
|
275844
|
+
elem.innerHTML = elem.firstChild.outerHTML + elem.firstChild.nextElementSibling.outerHTML;
|
|
275845
|
+
}
|
|
275244
275846
|
});
|
|
275245
275847
|
nodeIdArr.forEach(function (data) {
|
|
275246
275848
|
jquery_default()("#".concat(data)).addClass('model_process_wwc');
|
|
@@ -275523,6 +276125,9 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275523
276125
|
staffId: _this5.testerVo.tStaffId,
|
|
275524
276126
|
submitMode: 'sidebar'
|
|
275525
276127
|
};
|
|
276128
|
+
if (_this5.testerVo.tWfCode === 'Freedom') {
|
|
276129
|
+
wfParams.wfName = 'Freedom';
|
|
276130
|
+
}
|
|
275526
276131
|
wfParams.wfId = _this5.testerVo.tWfId;
|
|
275527
276132
|
wfParams.wfEngineUrl = 'workflow/autoTest';
|
|
275528
276133
|
wfParams.busiCode = 'autoTest';
|
|
@@ -275533,6 +276138,12 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275533
276138
|
_this5.wfParams = wfParams;
|
|
275534
276139
|
_this5.$wfEngine.loadWfInstance(_this5, wfParams).then(function (rst) {
|
|
275535
276140
|
if (rst.code === 'success') {
|
|
276141
|
+
if (_this.wfInstance.udmNodes && _this.wfInstance.udmNodes !== '[]' && typeof _this.wfInstance.udmNodes === 'string') _this.wfInstance.udmNodes = JSON.parse(_this.wfInstance.udmNodes);
|
|
276142
|
+
if (_this.wfInstance.udmNodes && Testervue_type_script_lang_js_typeof(_this.wfInstance.udmNodes) === 'object' && _this.curTN.tnNodeID !== null) {
|
|
276143
|
+
_this.wfJsonData.routes = _this.$wfEngine.setUdmCustomRoutes(_this);
|
|
276144
|
+
var flSubject = _this.testerVo.tWfName + _this.vo.flSubject.substring(_this.vo.flSubject.indexOf('-'));
|
|
276145
|
+
_this.vo.flSubject = flSubject;
|
|
276146
|
+
}
|
|
275536
276147
|
_this.vo.tConfigId = _this.testerVo.id;
|
|
275537
276148
|
_this.vo.tWfCode = _this.testerVo.tWfCode;
|
|
275538
276149
|
_this.vo.tWfId = _this.testerVo.tWfId;
|
|
@@ -275567,7 +276178,7 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275567
276178
|
});
|
|
275568
276179
|
}
|
|
275569
276180
|
});
|
|
275570
|
-
case
|
|
276181
|
+
case 18:
|
|
275571
276182
|
case "end":
|
|
275572
276183
|
return _context.stop();
|
|
275573
276184
|
}
|
|
@@ -275583,7 +276194,8 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275583
276194
|
wfInstanceId: wflog.wfInstanceId,
|
|
275584
276195
|
wfNodelogId: wflog.id,
|
|
275585
276196
|
staffId: wflog.staffId,
|
|
275586
|
-
submitMode: 'sidebar'
|
|
276197
|
+
submitMode: 'sidebar',
|
|
276198
|
+
wfId: this.testerVo.tWfId
|
|
275587
276199
|
};
|
|
275588
276200
|
wfParams.wfEngineUrl = 'workflow/autoTest';
|
|
275589
276201
|
wfParams.autoTest = true;
|
|
@@ -275591,6 +276203,10 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275591
276203
|
this.wfParams = wfParams;
|
|
275592
276204
|
this.$wfEngine.loadWfInstance(this, wfParams).then(function (rst) {
|
|
275593
276205
|
if (rst.code === 'success') {
|
|
276206
|
+
if (_this.wfInstance.udmNodes && _this.wfInstance.udmNodes !== '[]' && typeof _this.wfInstance.udmNodes === 'string') _this.wfInstance.udmNodes = JSON.parse(_this.wfInstance.udmNodes);
|
|
276207
|
+
if (_this.wfInstance.udmNodes && Testervue_type_script_lang_js_typeof(_this.wfInstance.udmNodes) === 'object' && _this.curTN.tnNodeID !== null) {
|
|
276208
|
+
_this.wfJsonData.routes = _this.$wfEngine.setUdmCustomRoutes(_this);
|
|
276209
|
+
}
|
|
275594
276210
|
_this.$bus.emit('showModifyWflogSubmitFile', wflog, 'autoTest');
|
|
275595
276211
|
} else {
|
|
275596
276212
|
_this.$alert(rst.message, _this6.$tx('common.operationTip', '操作提示'), {
|
|
@@ -275605,7 +276221,7 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275605
276221
|
submitNextTn: function submitNextTn(routeIndex, manualSubmitHandle) {
|
|
275606
276222
|
var _this7 = this;
|
|
275607
276223
|
var _this = this;
|
|
275608
|
-
if (
|
|
276224
|
+
if (routeIndex === undefined) {
|
|
275609
276225
|
routeIndex = this.$refs['testConfig'].getRouteIndex(this.wfJsonData.routes);
|
|
275610
276226
|
}
|
|
275611
276227
|
if (routeIndex === -1 || this.wfJsonData.routes.length === 0) {
|
|
@@ -275676,7 +276292,11 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275676
276292
|
wflog.staffOrgName = wflog.staffOrgName.substring(wflog.staffOrgName.indexOf('-') + 1);
|
|
275677
276293
|
}
|
|
275678
276294
|
});
|
|
275679
|
-
_this.
|
|
276295
|
+
if (_this.wfInstance.udmNodes) {
|
|
276296
|
+
_this7.wflowTraceList = _this7.setWflogNodeId(res.body.newWflogs);
|
|
276297
|
+
} else {
|
|
276298
|
+
_this.wflowTraceList = res.body.newWflogs;
|
|
276299
|
+
}
|
|
275680
276300
|
}
|
|
275681
276301
|
for (var _i2 = 0; _i2 < _this.redoPathsTimes; _i2++) {
|
|
275682
276302
|
_this.redoPaths.forEach(function (info, index) {
|
|
@@ -275750,9 +276370,14 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275750
276370
|
wfParams.wfEngineUrl = 'workflow/autoTest';
|
|
275751
276371
|
wfParams.autoTest = true;
|
|
275752
276372
|
wfParams.openType = 'FlowAdminSubmit';
|
|
276373
|
+
wfParams.wfId = this.testerVo.tWfId;
|
|
275753
276374
|
this.wfParams = wfParams;
|
|
275754
276375
|
this.$wfEngine.loadWfInstance(this, wfParams).then(function (rst) {
|
|
275755
276376
|
if (rst.code === 'success') {
|
|
276377
|
+
if (_this.wfInstance.udmNodes && _this.wfInstance.udmNodes !== '[]' && typeof _this.wfInstance.udmNodes === 'string') _this.wfInstance.udmNodes = JSON.parse(_this.wfInstance.udmNodes);
|
|
276378
|
+
if (_this.wfInstance.udmNodes && Testervue_type_script_lang_js_typeof(_this.wfInstance.udmNodes) === 'object' && _this.curTN.tnNodeID !== null) {
|
|
276379
|
+
_this.wfJsonData.routes = _this.$wfEngine.setUdmCustomRoutes(_this);
|
|
276380
|
+
}
|
|
275756
276381
|
var staffOrgName = _this.curTN.staffOrgName.substring(_this.curTN.staffOrgName.indexOf('-') + 1);
|
|
275757
276382
|
_this.showWflog = [{
|
|
275758
276383
|
id: _this.curTN.tnID,
|
|
@@ -275861,6 +276486,9 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275861
276486
|
}
|
|
275862
276487
|
_this9.wflowTraceList.push(wflog);
|
|
275863
276488
|
});
|
|
276489
|
+
if (_this9.wfInstance.udmNodes) {
|
|
276490
|
+
_this9.wflowTraceList = _this9.setWflogNodeId(_this9.wflowTraceList);
|
|
276491
|
+
}
|
|
275864
276492
|
for (var i = 0; i < _this9.redoPathsTimes; i++) {
|
|
275865
276493
|
_this9.redoPaths.forEach(function (info, index) {
|
|
275866
276494
|
_this.flowRedo(info, 300);
|
|
@@ -275876,6 +276504,26 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275876
276504
|
}
|
|
275877
276505
|
});
|
|
275878
276506
|
},
|
|
276507
|
+
setWflogNodeId: function setWflogNodeId(wflogList) {
|
|
276508
|
+
if (!this.wfInstance.udmNodes) {
|
|
276509
|
+
return wflogList;
|
|
276510
|
+
} else {
|
|
276511
|
+
var udmNodes = this.wfInstance.udmNodes;
|
|
276512
|
+
if (typeof udmNodes === 'string') {
|
|
276513
|
+
udmNodes = JSON.parse(udmNodes);
|
|
276514
|
+
}
|
|
276515
|
+
wflogList = JSON.parse(JSON.stringify(wflogList));
|
|
276516
|
+
wflogList.forEach(function (wflog) {
|
|
276517
|
+
udmNodes.forEach(function (uNode) {
|
|
276518
|
+
//根据环节名称重新计算nodeId
|
|
276519
|
+
if (uNode.name === wflog.nodeName) {
|
|
276520
|
+
wflog.nodeId = uNode.uuid;
|
|
276521
|
+
}
|
|
276522
|
+
});
|
|
276523
|
+
});
|
|
276524
|
+
return wflogList;
|
|
276525
|
+
}
|
|
276526
|
+
},
|
|
275879
276527
|
closeWorkflow: function closeWorkflow() {
|
|
275880
276528
|
window.close();
|
|
275881
276529
|
}
|
|
@@ -275883,9 +276531,9 @@ var Testervue_type_script_lang_js_require3 = __webpack_require__(53978),
|
|
|
275883
276531
|
});
|
|
275884
276532
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Tester/index.vue?vue&type=script&lang=js
|
|
275885
276533
|
/* harmony default export */ var components_Testervue_type_script_lang_js = (Testervue_type_script_lang_js);
|
|
275886
|
-
// 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/ecwplus/WorkflowDesigner/src/components/Tester/index.vue?vue&type=style&index=0&id=
|
|
275887
|
-
var
|
|
275888
|
-
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Tester/index.vue?vue&type=style&index=0&id=
|
|
276534
|
+
// 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/ecwplus/WorkflowDesigner/src/components/Tester/index.vue?vue&type=style&index=0&id=71fdf580&prod&scoped=true&lang=scss
|
|
276535
|
+
var Testervue_type_style_index_0_id_71fdf580_prod_scoped_true_lang_scss = __webpack_require__(1678);
|
|
276536
|
+
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Tester/index.vue?vue&type=style&index=0&id=71fdf580&prod&scoped=true&lang=scss
|
|
275889
276537
|
|
|
275890
276538
|
;// CONCATENATED MODULE: ./packages/ecwplus/WorkflowDesigner/src/components/Tester/index.vue
|
|
275891
276539
|
|
|
@@ -275898,11 +276546,11 @@ var Testervue_type_style_index_0_id_521308bc_prod_scoped_true_lang_scss = __webp
|
|
|
275898
276546
|
|
|
275899
276547
|
var Tester_component = (0,componentNormalizer/* default */.A)(
|
|
275900
276548
|
components_Testervue_type_script_lang_js,
|
|
275901
|
-
|
|
275902
|
-
|
|
276549
|
+
Testervue_type_template_id_71fdf580_scoped_true_render,
|
|
276550
|
+
Testervue_type_template_id_71fdf580_scoped_true_staticRenderFns,
|
|
275903
276551
|
false,
|
|
275904
276552
|
null,
|
|
275905
|
-
"
|
|
276553
|
+
"71fdf580",
|
|
275906
276554
|
null
|
|
275907
276555
|
|
|
275908
276556
|
)
|