合作页面的内容
This commit is contained in:
@@ -141,6 +141,11 @@ const menuItems = ref<MenuItem[]>([
|
||||
icon: '📊',
|
||||
path: '/admin/dashboard'
|
||||
},
|
||||
{
|
||||
title: '数据分析',
|
||||
icon: '📈',
|
||||
path: '/admin/analytics'
|
||||
},
|
||||
{
|
||||
title: '内容管理',
|
||||
icon: '📚',
|
||||
@@ -269,7 +274,7 @@ onUnmounted(() => {
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 0.5rem;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
||||
z-index: 100;
|
||||
z-index: 9999;
|
||||
overflow: hidden;
|
||||
animation: slideIn 0.2s ease-out;
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
>{{ label }}</label>
|
||||
|
||||
<!-- Autocomplete Dropdown -->
|
||||
<div v-if="showDropdown && suggestions.length > 0" class="absolute z-50 left-0 right-0 top-full mt-1 bg-[#1a1a1a] border border-white/10 shadow-lg max-h-48 overflow-y-auto rounded-b-md">
|
||||
<div v-if="showDropdown && suggestions.length > 0" class="absolute z-[9999] left-0 right-0 top-full mt-1 bg-[#1a1a1a] border border-white/10 shadow-lg max-h-48 overflow-y-auto rounded-b-md">
|
||||
<div
|
||||
v-for="(suggestion, index) in suggestions"
|
||||
:key="index"
|
||||
|
||||
Reference in New Issue
Block a user