|
@@ -628,24 +628,13 @@ export default {
|
|
|
mounted () {
|
|
|
this.init();
|
|
|
},
|
|
|
- activated () {
|
|
|
- this.init();
|
|
|
- },
|
|
|
methods: {
|
|
|
init () {
|
|
|
this.practiceId = this.$route.query.id;
|
|
|
this.userId = this.$route.query.userId;
|
|
|
this.courseType = this.$route.query.type;
|
|
|
- if (this.$route.query.rules) {
|
|
|
- this.Frules = this.$route.query.rules;
|
|
|
- }
|
|
|
- if (this.$route.query.searchForm) {
|
|
|
- this.FsearchForm = this.$route.query.searchForm;
|
|
|
- }
|
|
|
// 获取乐团主管
|
|
|
- findEducationUsers({
|
|
|
-
|
|
|
- }).then(res => {
|
|
|
+ findEducationUsers().then(res => {
|
|
|
if (res.code == 200) {
|
|
|
this.educationList = res.data
|
|
|
}
|
|
@@ -821,8 +810,7 @@ export default {
|
|
|
},
|
|
|
goBack () {
|
|
|
this.$router.push({
|
|
|
- path: "/business/accompany",
|
|
|
- query: { rules: this.Frules, searchForm: this.FsearchForm }
|
|
|
+ path: "/business/accompany"
|
|
|
});
|
|
|
},
|
|
|
teacherClose () {
|