eoss-mobiles 0.3.29 → 0.3.30
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 +19 -19
- package/lib/flow.js +18 -18
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/StartFlow.vue +2 -2
- package/packages/flow/src/components/reset.vue +2 -2
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -543,7 +543,7 @@ export default {
|
|
|
543
543
|
} else if (this.treeType === 11 || this.treeType === 12) {
|
|
544
544
|
this.selectType = 'employee';
|
|
545
545
|
this.objType = 'enterprise';
|
|
546
|
-
this.pid = '';
|
|
546
|
+
this.pid = 'root';
|
|
547
547
|
} else if (this.treeType === 13) {
|
|
548
548
|
this.pid = this.depId;
|
|
549
549
|
this.selectType = 'employee';
|
|
@@ -554,7 +554,7 @@ export default {
|
|
|
554
554
|
this.pid = this.orgId;
|
|
555
555
|
this.selectType = 'employee';
|
|
556
556
|
} else if (this.treeType == 'department') {
|
|
557
|
-
this.pid = '';
|
|
557
|
+
this.pid = 'root';
|
|
558
558
|
this.selectType = 'department';
|
|
559
559
|
this.objType = 'department';
|
|
560
560
|
}
|
|
@@ -505,7 +505,7 @@ export default {
|
|
|
505
505
|
} else if (this.treeType === 11 || this.treeType === 12) {
|
|
506
506
|
this.selectType = 'employee';
|
|
507
507
|
this.objType = 'enterprise';
|
|
508
|
-
this.pid = '';
|
|
508
|
+
this.pid = 'root';
|
|
509
509
|
} else if (this.treeType === 13) {
|
|
510
510
|
this.pid = this.depId;
|
|
511
511
|
this.selectType = 'employee';
|
|
@@ -516,7 +516,7 @@ export default {
|
|
|
516
516
|
this.pid = this.orgId;
|
|
517
517
|
this.selectType = 'employee';
|
|
518
518
|
} else if (this.treeType == 'department') {
|
|
519
|
-
this.pid = '';
|
|
519
|
+
this.pid = 'root';
|
|
520
520
|
this.selectType = 'department';
|
|
521
521
|
this.objType = 'department';
|
|
522
522
|
}
|