feat: 功能

This commit is contained in:
2025-12-28 13:49:45 +08:00
parent 36195ea55a
commit bbf8093ca3
25 changed files with 1046 additions and 1970 deletions

View File

@@ -7,8 +7,8 @@ import UserDropdown from '@/components/UserDropdown.vue'
import TestService from '@/api/test'
const styles = {
background: 'var(--color-surface)',
color: 'var(--color-text)'
background: 'var(--color-slate-900)',
color: 'var(--color-text-inverse)'
}
// const route = useRoute()
const userStore = useUserStore()
@@ -137,29 +137,29 @@ const shouldShowUser = computed(() => {
.btn-primary-nav {
height: 32px;
padding: 0 12px;
border-radius: 8px;
border-radius: var(--radius-button);
background: var(--color-primary);
color: #fff;
font-size: 12px;
color: var(--color-text-inverse);
font-size: 14px;
font-weight: 600;
box-shadow: var(--glow-primary);
box-shadow: var(--shadow-blue);
transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-primary-nav:hover {
transform: translateY(-1px);
box-shadow: var(--glow-primary);
box-shadow: var(--shadow-blue);
filter: brightness(1.03);
}
.btn-test-nav {
height: 32px;
padding: 0 12px;
border-radius: 8px;
border-radius: var(--radius-button);
background: var(--color-surface);
border: 1px solid var(--color-border);
color: var(--color-text);
font-size: 12px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all .2s ease;