修复bug

This commit is contained in:
2026-01-30 19:00:31 +08:00
parent fcc976680d
commit 3de5e9ebe9
91 changed files with 4966 additions and 847 deletions

10
layouts/admin/state.uts Normal file
View File

@@ -0,0 +1,10 @@
import { ref } from 'vue'
import type { TabItem } from './types.uts'
export const tabs = ref<TabItem[]>([
{ id: 'home', title: '首页', path: '/pages/mall/admin/homePage/index' }
])
export const activeTabId = ref<string>('home')
export const isCollapsed = ref<boolean>(false)
export const hasNotification = ref<boolean>(true)