eoss-ui 0.7.62 → 0.7.64

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.7.62",
3
+ "version": "0.7.64",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -26,7 +26,7 @@
26
26
  mix
27
27
  :showTooltip="showTooltip"
28
28
  :disableds="otherOrgDisabledObjId"
29
- :where="{ filid: 'all',roleid :selectorParams.roleid,nofilid:sessionStorage.getItem('orgId') }"
29
+ :where="{ filid: 'all',roleid :selectorParams.roleid }"
30
30
 
31
31
  @change="disposeAppUnit($event, 'nextOtherOrgObjSelect')"
32
32
  :types="foreignOrgSelectorTabs"
@@ -69,7 +69,7 @@
69
69
  >
70
70
  <SelectUser
71
71
  :nextUser="infoList.nextOtherOrgObj"
72
- :where="{ filid: 'all', roleid: selectorParams.roleid,nofilid:sessionStorage.getItem('orgId') }"
72
+ :where="{ filid: 'all', roleid: selectorParams.roleid }"
73
73
  :showTooltip="showTooltip"
74
74
  :multiple="newMultiple"
75
75
  @change="changeSelectUser($event, 'nextOtherOrgObj')"
@@ -491,7 +491,7 @@ export default {
491
491
  );
492
492
  this.foreignOrgTabs.map((x, i) => {
493
493
  this.otherParams[x] = {
494
- filid: param[i],
494
+ filid: 'all',
495
495
  roleid: this.selectorParams.roleid,
496
496
  nofilid: sessionStorage.getItem('orgId')
497
497
  };
@@ -306,12 +306,12 @@
306
306
  :nextUser="nextOtherOrgObjSelect"
307
307
  multiple
308
308
  mix
309
- :where="{ filid: 'all',roleid:selectorParams.roleid,nofilid:sessionStorage.getItem('orgId') }"
309
+ :where="{ filid: 'all',roleid:selectorParams.roleid }"
310
310
  :showTooltip="showTooltip"
311
311
  :disableds="otherOrgDisabledObjId"
312
312
  @change="disposeAppUnit($event, 'nextOtherOrgObjSelect')"
313
313
  :types="['enterprise']"
314
- :params="{ filid: 'all',roleid:selectorParams.roleid, nofilid:sessionStorage.getItem('orgId') }"
314
+ :params="otherParams"
315
315
 
316
316
  />
317
317
  </el-form-item>
@@ -865,6 +865,7 @@ export default {
865
865
  nextOtherOrgObjSelect: [],
866
866
  subProcessColumns: [],
867
867
  nextCurrentOrgObjSelect: [],
868
+ otherParams:{ filid: 'all',roleid:selectorParams.roleid, nofilid:sessionStorage.getItem('orgId') },
868
869
  loading: null, // 加载中
869
870
  newTypeCode: '',
870
871
  NodeName: '', // 当前节点值
@@ -3093,7 +3093,7 @@ export default {
3093
3093
  filid:
3094
3094
  foreignOrgparams[i] == 'my'
3095
3095
  ? choiceOrgId
3096
- : foreignOrgparams[i] == 'nofilidorg' ||
3096
+ :x == 'filgroup'?'' : foreignOrgparams[i] == 'nofilidorg' ||
3097
3097
  foreignOrgparams[i] == 'nofiliddept'
3098
3098
  ? 'all'
3099
3099
  : foreignOrgparams[i],
package/src/index.js CHANGED
@@ -125,7 +125,7 @@ if (typeof window !== 'undefined' && window.Vue) {
125
125
  }
126
126
 
127
127
  export default {
128
- version: '0.7.62',
128
+ version: '0.7.64',
129
129
  install,
130
130
  Button,
131
131
  ButtonGroup,