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/lib/eoss-ui.common.js +34 -47
- package/lib/flow.js +28 -41
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/component/FreeCirculation.vue +1 -1
- package/packages/flow/src/component/taskUnionExamine.vue +2 -2
- package/packages/flow/src/freeStartFlow.vue +3 -2
- package/packages/flow/src/main.vue +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
mix
|
|
27
27
|
:showTooltip="showTooltip"
|
|
28
28
|
:disableds="otherOrgDisabledObjId"
|
|
29
|
-
:where="{ filid: 'all',roleid :selectorParams.roleid
|
|
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
|
|
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:
|
|
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
|
|
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="
|
|
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],
|