eoss-mobiles 0.1.39 → 0.1.41
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/eoss-mobile.common.js +11 -11
- package/lib/flow.js +10 -10
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +8 -4
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -601,6 +601,7 @@ export default {
|
|
|
601
601
|
}
|
|
602
602
|
if (
|
|
603
603
|
!this.form.nextNodeId &&
|
|
604
|
+
this.nodeList &&
|
|
604
605
|
this.nodeList.length > 0 &&
|
|
605
606
|
this.isSpecial &&
|
|
606
607
|
!this.isReject
|
|
@@ -685,8 +686,10 @@ export default {
|
|
|
685
686
|
_that.form.isSubFlow = taskExamineInfo.isSubFlow;
|
|
686
687
|
_that.form.nodeId = taskExamineInfo.nodeId;
|
|
687
688
|
_that.form.nextNodeId =
|
|
688
|
-
_that.form.
|
|
689
|
-
|
|
689
|
+
_that.form.nextOperate == 2
|
|
690
|
+
? ''
|
|
691
|
+
: _that.form.nextNodeId ||
|
|
692
|
+
nodeInfoMapInfo.nodeExtAttr.defaultNextNode;
|
|
690
693
|
request({
|
|
691
694
|
url: _that.baseUrl ? _that.baseUrl + taskHandleHtml : taskHandleHtml,
|
|
692
695
|
params: {
|
|
@@ -740,7 +743,7 @@ export default {
|
|
|
740
743
|
// 切换下一步操作
|
|
741
744
|
changeNextOperate(val, isDef) {
|
|
742
745
|
//恢复默认
|
|
743
|
-
this.form.nextNodeId = ''
|
|
746
|
+
this.form.nextNodeId = '';
|
|
744
747
|
this.form.isReturnSubmitter = 0;
|
|
745
748
|
this.form.isUndertakeReply = 0;
|
|
746
749
|
this.form.isTakeAdviceReply = 0;
|
|
@@ -772,6 +775,7 @@ export default {
|
|
|
772
775
|
this.form.isReturnRejectNode = 1;
|
|
773
776
|
} else {
|
|
774
777
|
}
|
|
778
|
+
|
|
775
779
|
if (isDef === true) return;
|
|
776
780
|
if (val.key == 9) {
|
|
777
781
|
this.isNextUser = false;
|
|
@@ -970,7 +974,7 @@ export default {
|
|
|
970
974
|
if (item.key == 9) {
|
|
971
975
|
that.isReject = true;
|
|
972
976
|
}
|
|
973
|
-
that.changeNextOperate({key:that.form.nextOperate}, true);
|
|
977
|
+
that.changeNextOperate({ key: that.form.nextOperate }, true);
|
|
974
978
|
}
|
|
975
979
|
});
|
|
976
980
|
if (!isSelected) {
|