diff --git a/packages/3.0.0/AppContentInfo/AppContentInfo.vue b/packages/3.0.0/AppContentInfo/AppContentInfo.vue index d0775bc0..a5d16b3e 100644 --- a/packages/3.0.0/AppContentInfo/AppContentInfo.vue +++ b/packages/3.0.0/AppContentInfo/AppContentInfo.vue @@ -1,7 +1,7 @@ @@ -25,7 +25,8 @@ component: 'List', params: {}, moduleId: '', - include: [] + include: [], + moduleName: '' } }, @@ -37,6 +38,12 @@ created () { this.moduleId = this.$route.query.moduleId + + this.instance.post('/app/appcontentmoduleinfo/queryDetailById?id=' + this.$route.query.moduleId).then(res => { + if (res.code === 0) { + this.moduleName = res.data.moduleName + } + }) }, methods: { diff --git a/packages/3.0.0/AppContentInfo/components/Add.vue b/packages/3.0.0/AppContentInfo/components/Add.vue index 9505b162..79b508d4 100644 --- a/packages/3.0.0/AppContentInfo/components/Add.vue +++ b/packages/3.0.0/AppContentInfo/components/Add.vue @@ -1,7 +1,7 @@