|
|
@@ -360,7 +360,13 @@
|
|
|
},
|
|
|
mounted() {
|
|
|
this.getChooseEngrave();
|
|
|
- this.getTeamList(this.$store.state.user.info.teamId);
|
|
|
+ if (localStorage.getItem('singleUserInfo') == '1') {
|
|
|
+ const data = JSON.parse(localStorage.getItem('chooseUserInfo'));
|
|
|
+ this.getTeamList(data.teamId);
|
|
|
+ } else {
|
|
|
+ this.getTeamList(this.$store.state.user.info.teamId);
|
|
|
+ }
|
|
|
+ // this.getTeamList(this.$store.state.user.info.teamId);
|
|
|
},
|
|
|
|
|
|
methods: {
|