diff --git a/components/AppLayout/AppLayout.vue b/components/AppLayout/AppLayout.vue index 706862d..b3c64a2 100644 --- a/components/AppLayout/AppLayout.vue +++ b/components/AppLayout/AppLayout.vue @@ -6,6 +6,7 @@ > @@ -87,11 +88,15 @@ defineProps({ type: Boolean, default: true, }, + showHeader: { + type: Boolean, + default: false, + }, }); -// const defaultShow = computed(()=>{ -// return isMiniProgram.value -// }) +const defaultShow = computed(()=>{ + return isMiniProgram.value +}) const handleScrollToLower = () => { emit('onScrollBottom'); diff --git a/packageA/pages/UnitDetails/UnitDetails.vue b/packageA/pages/UnitDetails/UnitDetails.vue index e5bab81..86b22b8 100644 --- a/packageA/pages/UnitDetails/UnitDetails.vue +++ b/packageA/pages/UnitDetails/UnitDetails.vue @@ -1,5 +1,5 @@