eoss-mobiles 0.3.30 → 0.3.32

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.3.30",
3
+ "version": "0.3.32",
4
4
  "description": "eoss内部移动端业务组件",
5
5
  "main": "lib/eoss-mobile.common.js",
6
6
  "files": [
@@ -107,6 +107,7 @@ import {
107
107
  taskTransfer,
108
108
  getNotificationMsg,
109
109
  findSysCodes,
110
+ findUserBaseInfo,
110
111
  handleTaskRead
111
112
  } from '../../../../src/config/api';
112
113
  import util from '../../../../src/utils/util.js';
@@ -176,7 +177,7 @@ export default {
176
177
  return {
177
178
  pid:
178
179
  this.taskReadType == '分阅'
179
- ? ''
180
+ ? 'root'
180
181
  : util.getStorage('orgId') || this.orgId
181
182
  };
182
183
  },
@@ -196,7 +197,9 @@ export default {
196
197
  // this.getProcessObjNew();
197
198
  // }
198
199
  this.getFind();
199
-
200
+ request({url:findUserBaseInfo}).then(res => {
201
+ conosle.log(res)
202
+ })
200
203
  if (!this.readParams) {
201
204
  this.getHandleInfoHtml();
202
205
  } else {
@@ -420,6 +423,12 @@ export default {
420
423
  } else if (this.selectPersonValue == 6) {
421
424
  this.multiple = true;
422
425
  this.params.pid = 'root';
426
+ }else if(this.selectPersonValue == 7){
427
+ this.multiple = false
428
+ this.params.pid = orgId
429
+ }else if(this.selectPersonValue == 8){
430
+ this.multiple = true
431
+ this.params.pid = orgId
423
432
  }else{
424
433
  this.params.pid = 'root';
425
434
  }
package/src/index.js CHANGED
@@ -105,7 +105,7 @@ if (typeof window !== 'undefined' && window.Vue) {
105
105
  }
106
106
 
107
107
  export default {
108
- version: '0.3.30',
108
+ version: '0.3.32',
109
109
  install,
110
110
  Button,
111
111
  ButtonGroup,