From ff05088bc3dc9f017802d3b61a6e7a10c5426482 Mon Sep 17 00:00:00 2001 From: limqhz Date: Mon, 23 Aug 2021 13:49:25 +0800 Subject: [PATCH] =?UTF-8?q?fix=E7=BC=93=E5=AD=98=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- oms/oms-h5/src/views/venue/lesson/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 } }) },