diff --git a/oms/oms-h5/src/views/venue/lesson/index.vue b/oms/oms-h5/src/views/venue/lesson/index.vue index 3526326..364c6f1 100644 --- a/oms/oms-h5/src/views/venue/lesson/index.vue +++ b/oms/oms-h5/src/views/venue/lesson/index.vue @@ -227,8 +227,8 @@ export default { } }, created() { - this.params.search_eq_v$venueId = this.$route.query.venueId - this.params.search_eq_v$venueType = this.$route.query.venueType + this.form.venueId = this.$route.query.venueId + this.form.veneuType = this.$route.query.venueType findByVenueType(2).then(response => { this.coaches = response.coaches }) @@ -402,7 +402,7 @@ export default { handleCreate() { this.$router.push({ path: '/venue/lesson/edit', - query: { venueId: this.params.search_eq_v$venueId, venueType: this.params.search_eq_v$venueType } + query: { venueId: this.form.venueId, venueType: this.form.veneuType } }) },