|
@@ -99,8 +99,9 @@ export default {
|
|
|
pagination
|
|
|
},
|
|
|
data () {
|
|
|
+ const query = this.$route.query
|
|
|
return {
|
|
|
- name: '',
|
|
|
+ name: query.name,
|
|
|
searchForm: {
|
|
|
teacher: '',
|
|
|
timer: []
|
|
@@ -117,11 +118,11 @@ export default {
|
|
|
},
|
|
|
}
|
|
|
},
|
|
|
- created () {
|
|
|
- this.teamId = this.$route.query.id;
|
|
|
- },
|
|
|
+ // created () {
|
|
|
+ // this.teamId = this.$route.query.id;
|
|
|
+ // },
|
|
|
mounted () {
|
|
|
- this.name = localStorage.getItem('teamName');
|
|
|
+ // this.name = localStorage.getItem('teamName');
|
|
|
// findMusicGroupClassTeacher({ musicGroupId: this.teamId }).then(res => {
|
|
|
// if (res.code == 200) {
|
|
|
// this.teacherList = res.data;
|