eoss-ui 0.7.62 → 0.7.63
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 +25 -38
- package/lib/flow.js +24 -37
- 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 +1 -1
- package/packages/flow/src/freeStartFlow.vue +3 -2
- 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')"
|
|
@@ -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: '', // 当前节点值
|