From e3d4c3426c86392e27df63300b601507b32f5c7e Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 13 八月 2025 14:26:51 +0800
Subject: [PATCH] fix: 灵工管理

---
 apps/bMiniApp/src/components/Layout/PageLayout.vue |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/apps/bMiniApp/src/components/Layout/PageLayout.vue b/apps/bMiniApp/src/components/Layout/PageLayout.vue
index 474d352..7149940 100644
--- a/apps/bMiniApp/src/components/Layout/PageLayout.vue
+++ b/apps/bMiniApp/src/components/Layout/PageLayout.vue
@@ -16,8 +16,10 @@
       </slot>
 
       <div class="page-layout-scroll-view-wrapper" :style="{ height: scrollViewHeight }">
-        <slot :scrollViewHeight="scrollViewHeight" v-if="isAuth"></slot>
-        <!-- <template v-if="isAuth">
+        <DevelopingLayout v-if="developing"></DevelopingLayout>
+        <template v-else>
+          <slot :scrollViewHeight="scrollViewHeight" v-if="isAuth"></slot>
+          <!-- <template v-if="isAuth">
           <slot v-if="useView" :scrollViewHeight="scrollViewHeight"></slot>
           <scroll-view
             v-else
@@ -28,6 +30,7 @@
             <slot :scrollViewHeight="scrollViewHeight"></slot>
           </scroll-view>
         </template> -->
+        </template>
       </div>
       <div v-if="!pageHeightWithTabBar" class="safe-area-bottom"></div>
     </div>
@@ -45,6 +48,7 @@
 import { useAuth } from '@/hooks';
 import { Portal } from 'senin-mini/components';
 import { usePickProps } from 'senin-mini/hooks';
+import { DevelopingLayout } from '@12333/components';
 
 defineOptions({
   name: 'PageLayout',
@@ -69,6 +73,10 @@
     type: Number,
     default: 388,
   },
+  developing: {
+    type: Boolean,
+    default: false,
+  },
 });
 
 const _commonNavigationBarProps = usePickProps(props, commonNavigationBarProps);

--
Gitblit v1.9.1