eoss-ui 0.6.42 → 0.6.44

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-ui",
3
- "version": "0.6.42",
3
+ "version": "0.6.44",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -870,7 +870,7 @@ export default {
870
870
  }
871
871
  },
872
872
  beforeSubmit: Function,
873
- title: { type: String, default: '事务表单办理' },
873
+ title: { type: String, default: '流程办理' },
874
874
  closeParent: Boolean,
875
875
  param: {
876
876
  type: Object,
@@ -373,14 +373,14 @@ export default {
373
373
  tabs: {
374
374
  employee: {
375
375
  param: {
376
- filid: JSON.parse(sessionStorage.getItem('mainConfig')).userModel
376
+ filid: JSON.parse(util.getStorage('mainConfig')).userModel
377
377
  .orgId,
378
378
  name: '本单位用户'
379
379
  }
380
380
  },
381
381
  department: {
382
382
  param: {
383
- filid: JSON.parse(sessionStorage.getItem('mainConfig')).userModel
383
+ filid: JSON.parse(util.getStorage('mainConfig')).userModel
384
384
  .orgId
385
385
  }
386
386
  }
@@ -482,7 +482,7 @@ export default {
482
482
  this.nextUserTabs = {
483
483
  department: {
484
484
  param: {
485
- filid: JSON.parse(sessionStorage.getItem('mainConfig'))
485
+ filid: JSON.parse(util.getStorage('mainConfig'))
486
486
  .userModel.orgId
487
487
  }
488
488
  }
@@ -498,7 +498,7 @@ export default {
498
498
  enterprise: { param: { filid: 'other' } },
499
499
  department: {
500
500
  param: {
501
- filid: JSON.parse(sessionStorage.getItem('mainConfig'))
501
+ filid: JSON.parse(util.getStorage('mainConfig'))
502
502
  .userModel.orgId
503
503
  }
504
504
  }
package/src/index.js CHANGED
@@ -121,7 +121,7 @@ if (typeof window !== 'undefined' && window.Vue) {
121
121
  }
122
122
 
123
123
  export default {
124
- version: '0.6.42',
124
+ version: '0.6.44',
125
125
  install,
126
126
  Button,
127
127
  ButtonGroup,