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 @@
-
+
@@ -99,7 +99,8 @@
props: {
instance: Function,
dict: Object,
- params: Object
+ params: Object,
+ moduleName: String
},
data () {
return {
diff --git a/packages/3.0.0/AppContentInfo/components/List.vue b/packages/3.0.0/AppContentInfo/components/List.vue
index e50b77be..64ff159f 100644
--- a/packages/3.0.0/AppContentInfo/components/List.vue
+++ b/packages/3.0.0/AppContentInfo/components/List.vue
@@ -1,7 +1,7 @@
-
+
@@ -56,7 +56,8 @@
props: {
instance: Function,
- dict: Object
+ dict: Object,
+ moduleName: String
},
data() {