From 208598a6df1a33349c6a58bf8ec54fecfcfb083a Mon Sep 17 00:00:00 2001 From: kuaifan Date: Thu, 10 Apr 2025 15:58:20 +0800 Subject: [PATCH] no message --- resources/assets/js/App.vue | 15 ++++---- .../js/components/DrawerOverlay/index.vue | 4 ++- .../sass/components/drawer-overlay.scss | 19 ++++++++++- resources/assets/sass/pages/common.scss | 34 +++++++++++-------- .../sass/pages/components/dialog-modal.scss | 4 +++ .../sass/pages/components/dialog-wrapper.scss | 1 + 6 files changed, 54 insertions(+), 23 deletions(-) diff --git a/resources/assets/js/App.vue b/resources/assets/js/App.vue index e4d45c1df..37923cf62 100755 --- a/resources/assets/js/App.vue +++ b/resources/assets/js/App.vue @@ -140,17 +140,20 @@ export default { if (!routeName) { return null } - if (['manage-messenger', 'manage-project'].includes(routeName)) { - return '#f8f8f8' - } - if (routeName.startsWith('manage-setting')) { + if (['manage-messenger', 'manage-project'].includes(routeName) || routeName.startsWith('manage-setting')) { return '#f8f8f8' } return null }, - navigationColor({statusColor, mobileTabbar}) { - return statusColor || (mobileTabbar ? '#f8f8f8' : null) + navigationColor({routeName, mobileTabbar}) { + if (!routeName) { + return null + } + if (['manage-messenger', 'manage-project', 'manage-setting'].includes(routeName)) { + return '#f8f8f8' + } + return mobileTabbar ? '#f8f8f8' : null }, rootStyle() { diff --git a/resources/assets/js/components/DrawerOverlay/index.vue b/resources/assets/js/components/DrawerOverlay/index.vue index e43ca106e..58f1a36dc 100644 --- a/resources/assets/js/components/DrawerOverlay/index.vue +++ b/resources/assets/js/components/DrawerOverlay/index.vue @@ -10,7 +10,9 @@ :beforeClose="beforeClose" fullscreen :class-name="modalClass"> - +
+ +
video { width: 100%; height: 100%; + border-radius: 6px; } .file-play {