eoss-mobiles 0.1.21 → 0.1.22

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.21",
3
+ "version": "0.1.22",
4
4
  "description": "eoss内部移动端业务组件",
5
5
  "main": "lib/eoss-mobile.common.js",
6
6
  "files": [
@@ -435,7 +435,7 @@ export default {
435
435
  caOpinion: undefined, //加密意见
436
436
  isReturnRejectNode: undefined, //是否提交驳回节点
437
437
  isSerialSubmit: undefined, //串行默认提交
438
- loginType: undefined, //登录方式
438
+ loginType: 2, //登录方式
439
439
  nodeOpinionTemplate: undefined, //意见模板
440
440
  businessSubCenterCode: undefined, //业务中心编码
441
441
  nextRoleId: undefined, // 下步办理角色id
@@ -871,7 +871,6 @@ export default {
871
871
  ) {
872
872
  that.form.nextNodeId =undefined;
873
873
  that.form.nextNodeName = undefined;
874
- console.log(that.form.nextNodeId,'that.form.nextNodeId')
875
874
  } else {
876
875
  that.nodeList = that.taskOperations[0].taskNodeList;
877
876
  let info = [];
@@ -909,7 +908,6 @@ export default {
909
908
  }
910
909
  });
911
910
  if(info.length == 0 && that.nodeList.length !=0) info =[that.nodeList[0]]
912
- console.log(info,'infoinfo')
913
911
  if (info.length > 0) {
914
912
  that.form.nextNodeId = info[0].nodeId;
915
913
  that.form.nextNodeName = info[0].nodeName;
@@ -918,12 +916,10 @@ export default {
918
916
  // that.form.nextNodeName = that.nodeList[0].nodeName;
919
917
  }
920
918
  }
921
- console.log(that.taskOperations, that.form, 'asdsdsa');
922
919
  if (item.key == 9) {
923
920
  that.isReject = true;
924
921
  }
925
922
  }
926
- console.log(that.form, 'that.form');
927
923
  });
928
924
  if (!isSelected) {
929
925
  that.form.nextOperate = that.taskOperations[0].key;
@@ -43,7 +43,6 @@ import { taskRejectHtml, toTaskRejectHtml } from '../../../../src/config/api';
43
43
  import request from '../../../../src/utils/http.js';
44
44
  import Opinion from './Opinion.vue';
45
45
  import Message from './Message.vue';
46
- import util from '../../../../src/utils/util';
47
46
  export default {
48
47
  name: 'Reject',
49
48
  props: {
@@ -61,7 +60,8 @@ export default {
61
60
  form: {
62
61
  opinion: undefined, // 审批意见
63
62
  notificationMsg: undefined, //系统消息
64
- nextNodeId: undefined
63
+ nextNodeId: undefined,
64
+ loginType: 2, //登录方式
65
65
  },
66
66
  processObj: {
67
67
  taskExamine: { nodeName: undefined },
@@ -243,7 +243,7 @@ export default {
243
243
  nodeId: this.form.nodeId,
244
244
  userId: sessionStorage.getItem('userId'),
245
245
  notificationMsg: this.form.notificationMsg,
246
- loginType: 'a' //登录方式
246
+ loginType: 2 //登录方式
247
247
  };
248
248
  if (this.beforeSubmit) {
249
249
  this.beforeSubmit(info);
@@ -292,6 +292,7 @@ export default {
292
292
  notificationMsgType: this.form.notificationMsgType,
293
293
  notificationMsg: this.form.notificationMsg,
294
294
  isImageOpinion: 0,
295
+ loginType: 2,
295
296
  taskAction: this.type
296
297
  }
297
298
  };
@@ -368,6 +369,7 @@ export default {
368
369
  choiceOrgId,
369
370
  businessName,
370
371
  processDefinitionId,
372
+ loginType: 2,
371
373
  handleExplain: this.form.handleExplain,
372
374
  currentOrgProcessKey: processDefinitionId,
373
375
  noticeType: this.form.notificationMsgType,
package/src/index.js CHANGED
@@ -89,7 +89,7 @@ if (typeof window !== 'undefined' && window.Vue) {
89
89
  }
90
90
 
91
91
  export default {
92
- version: '0.1.21',
92
+ version: '0.1.22',
93
93
  install,
94
94
  Button,
95
95
  ButtonGroup,