|  |  | 
 |  |  | import { commonNavigationBarProps } from '../NavigationBar/commonNavigationBar'; | 
 |  |  | import { useSystemStore } from '@/stores/modules/system'; | 
 |  |  | import Taro from '@tarojs/taro'; | 
 |  |  | import { TabBarPageRouter } from '@/constants'; | 
 |  |  | import { TabBarPageRouterList } from '@/constants'; | 
 |  |  | import { useAuth } from '@/hooks'; | 
 |  |  | import { Portal } from 'senin-mini/components'; | 
 |  |  | import { usePickProps } from 'senin-mini/hooks'; | 
 |  |  | 
 |  |  | const router = Taro.useRouter(); | 
 |  |  |  | 
 |  |  | const pageHeightWithTabBar = computed(() => | 
 |  |  |   Object.values(TabBarPageRouter).some((x) => x.toLowerCase() === router.path.toLowerCase()) | 
 |  |  |   TabBarPageRouterList.some((x) => x.toLowerCase() === router.path.toLowerCase()) | 
 |  |  | ); | 
 |  |  |  | 
 |  |  | const navigationBarHeight = computed( |