eoss-mobiles 0.3.39 → 0.3.41
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-mobile.common.js +10 -11
- package/lib/flow.js +9 -10
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +1 -2
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1617,14 +1617,13 @@ export default {
|
|
|
1617
1617
|
let foreignOrgparams =
|
|
1618
1618
|
currentOrgSelectorParams.foreignOrgRange.split(',');
|
|
1619
1619
|
that.foreignOrgSelectorTabs.map((x, i) => {
|
|
1620
|
-
console.log(x,'aaaaa')
|
|
1621
1620
|
that.foreignOrgSelectorParams[x] = {
|
|
1622
1621
|
pid:
|
|
1623
1622
|
foreignOrgparams[i] == 'my'
|
|
1624
1623
|
? choiceOrgId
|
|
1625
1624
|
:foreignOrgparams[i] == 'other'? 'root' : foreignOrgparams[i],
|
|
1626
1625
|
nofilid:foreignOrgparams[i] == 'other'?1 : 0,
|
|
1627
|
-
|
|
1626
|
+
myUserid:x == 'filgroup'? $.getStorage('userId') : ''
|
|
1628
1627
|
};
|
|
1629
1628
|
});
|
|
1630
1629
|
that.foreignOrgSelectorTabs = that.foreignOrgSelectorTabs.join(',')
|