diff --git a/examples/components/mainContent.vue b/examples/components/mainContent.vue index 21263086..1062244b 100644 --- a/examples/components/mainContent.vue +++ b/examples/components/mainContent.vue @@ -68,9 +68,6 @@ export default { } }, }, - created() { - this.getTabs("created") - } } diff --git a/packages/core/AppQyWxConfig/list.vue b/packages/core/AppQyWxConfig/list.vue index 14b8e58c..852e8f15 100644 --- a/packages/core/AppQyWxConfig/list.vue +++ b/packages/core/AppQyWxConfig/list.vue @@ -398,7 +398,7 @@ export default { params: {id} }).then(res => { if (res?.data) { - this.sysInfo = JSON.parse(res.data) + this.sysInfo = JSON.parse(res.data?.systemInfo || null) this.sysInfo.id = id } }) diff --git a/project/oms/apps/develop/AppDeployCustom/add.vue b/project/oms/apps/develop/AppDeployCustom/add.vue index b7629e7d..3730c50e 100644 --- a/project/oms/apps/develop/AppDeployCustom/add.vue +++ b/project/oms/apps/develop/AppDeployCustom/add.vue @@ -39,6 +39,51 @@ +