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/lib/eoss-ui.common.js +20 -20
- package/lib/flow.js +14 -14
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/main.vue +1 -1
- package/packages/flow/src/processForm.vue +4 -4
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -373,14 +373,14 @@ export default {
|
|
|
373
373
|
tabs: {
|
|
374
374
|
employee: {
|
|
375
375
|
param: {
|
|
376
|
-
filid: JSON.parse(
|
|
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(
|
|
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(
|
|
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(
|
|
501
|
+
filid: JSON.parse(util.getStorage('mainConfig'))
|
|
502
502
|
.userModel.orgId
|
|
503
503
|
}
|
|
504
504
|
}
|