diff --git a/src/main/resources/views/platform/zhgh/activity/family/apply/index.html b/src/main/resources/views/platform/zhgh/activity/family/apply/index.html index eec4ffc9..7c37751d 100644 --- a/src/main/resources/views/platform/zhgh/activity/family/apply/index.html +++ b/src/main/resources/views/platform/zhgh/activity/family/apply/index.html @@ -205,7 +205,7 @@ layout("/layouts/platform.html"){ this.pageForm.totalCount = res.data.totalCount if(this.id) { const activity = this.tableData.find(o => o.id === this.id) - this.onOpen(activity) + this.onView(activity) } } }) diff --git a/src/main/resources/views/platform/zhgh/activity/trainSignUp/apply/index.html b/src/main/resources/views/platform/zhgh/activity/trainSignUp/apply/index.html index 85793949..355a4e11 100644 --- a/src/main/resources/views/platform/zhgh/activity/trainSignUp/apply/index.html +++ b/src/main/resources/views/platform/zhgh/activity/trainSignUp/apply/index.html @@ -158,7 +158,7 @@ layout("/layouts/platform.html"){ this.pageForm.totalCount = res.data.totalCount if(this.id) { const activity = this.tableData.find(o => o.id === this.id) - this.onOpen(activity) + this.onView(activity) } } }) diff --git a/src/main/resources/views/platform/zhghh5/activity/family/apply/index.html b/src/main/resources/views/platform/zhghh5/activity/family/apply/index.html index f55587cf..615d4cdc 100644 --- a/src/main/resources/views/platform/zhghh5/activity/family/apply/index.html +++ b/src/main/resources/views/platform/zhghh5/activity/family/apply/index.html @@ -156,7 +156,7 @@ layout("/layouts/platform_h5.html"){ fetchOne() { this.$axios.post('/platform/family/manage/findOne', {id: this.id}).then((res) => { if(res.code === 0) { - this.onApply(res.data) + this.onView(res.data) } }) }, diff --git a/src/main/resources/views/platform/zhghh5/activity/trainSignUp/apply/index.html b/src/main/resources/views/platform/zhghh5/activity/trainSignUp/apply/index.html index fc55d449..3aba7479 100644 --- a/src/main/resources/views/platform/zhghh5/activity/trainSignUp/apply/index.html +++ b/src/main/resources/views/platform/zhghh5/activity/trainSignUp/apply/index.html @@ -136,7 +136,7 @@ layout("/layouts/platform_h5.html"){ fetchOne() { this.$axios.post('/platform/trainSignUp/manage/findOne', {id: this.id}).then((res) => { if(res.code === 0) { - this.onApply(res.data) + this.onView(res.data) } }) },