feat: add marketing management page in admin frontend

This commit is contained in:
root
2026-03-10 01:14:57 +08:00
parent ad408db118
commit 4d8901d1af
4 changed files with 629 additions and 3 deletions
+7 -1
View File
@@ -51,6 +51,12 @@ const routes = [
component: () => import('../views/users/detail.vue'),
meta: { title: '用户详情', hidden: true }
},
{
path: 'marketing',
name: 'Marketing',
component: () => import('../views/marketing/index.vue'),
meta: { title: '营销图管理', icon: 'Picture' }
},
{
path: 'memberships',
name: 'Memberships',
@@ -80,7 +86,7 @@ const routes = [
]
const router = createRouter({
history: createWebHistory(),
history: createWebHistory(import.meta.env.BASE_URL),
routes
})