From 484bc6ea39e7b85cfc47b09e160ef48e1a09f183 Mon Sep 17 00:00:00 2001 From: kuaifan Date: Sat, 12 Apr 2025 19:45:14 +0800 Subject: [PATCH] no message --- resources/assets/js/App.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/resources/assets/js/App.vue b/resources/assets/js/App.vue index 37923cf62..bc8f725c0 100755 --- a/resources/assets/js/App.vue +++ b/resources/assets/js/App.vue @@ -136,20 +136,26 @@ export default { computed: { ...mapState(['ws', 'themeConf', 'windowOrientation', 'safeAreaSize', 'isFirstPage', 'mobileTabbar']), - statusColor({routeName}) { + statusColor({routeName, windowLandscape}) { if (!routeName) { return null } + if (windowLandscape) { + return "#f4f5f7" + } if (['manage-messenger', 'manage-project'].includes(routeName) || routeName.startsWith('manage-setting')) { return '#f8f8f8' } return null }, - navigationColor({routeName, mobileTabbar}) { + navigationColor({routeName, windowLandscape, mobileTabbar}) { if (!routeName) { return null } + if (windowLandscape) { + return "#f4f5f7" + } if (['manage-messenger', 'manage-project', 'manage-setting'].includes(routeName)) { return '#f8f8f8' }