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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-mobiles",
3
- "version": "0.1.39",
3
+ "version": "0.1.41",
4
4
  "description": "eoss内部移动端业务组件",
5
5
  "main": "lib/eoss-mobile.common.js",
6
6
  "files": [
@@ -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.nextNodeId || nodeInfoMapInfo.nodeExtAttr.defaultNextNode;
689
- console.log(_that.form, '_that.form');
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) {
package/src/index.js CHANGED
@@ -91,7 +91,7 @@ if (typeof window !== 'undefined' && window.Vue) {
91
91
  }
92
92
 
93
93
  export default {
94
- version: '0.1.39',
94
+ version: '0.1.41',
95
95
  install,
96
96
  Button,
97
97
  ButtonGroup,