🐞 fix: 修复抽屉zindex 修复一些样式问题

closes  #37 #38
This commit is contained in:
alger
2025-01-15 00:26:42 +08:00
parent c6427aa3e1
commit 072025a543
7 changed files with 14 additions and 7 deletions
+4 -2
View File
@@ -7,7 +7,7 @@
mask-closable
:style="{ backgroundColor: 'transparent' }"
:to="`#layout-main`"
:z-index="9998"
:z-index="zIndex"
@mask-click="close"
>
<div class="music-page">
@@ -89,6 +89,7 @@ const props = withDefaults(
defineProps<{
show: boolean;
name: string;
zIndex?: number;
songList: any[];
loading?: boolean;
listInfo?: {
@@ -99,7 +100,8 @@ const props = withDefaults(
}>(),
{
loading: false,
cover: true
cover: true,
zIndex: 9996
}
);