deat: Wallpaper api

This commit is contained in:
zzc
2026-01-25 00:29:35 +08:00
parent e2366f9036
commit 780facd765
7 changed files with 676 additions and 0 deletions

View File

@@ -87,6 +87,32 @@ export const asyncRoutes = [
},
],
},
{
path: 'wallpaper',
component: EmptyLayout,
alwaysShow: true,
redirect: 'noRedirect',
name: 'Wallpaper',
meta: {
title: '壁纸',
icon: 'clover',
permissions: ['admin'],
},
children: [
{
path: 'systemWallpaper',
name: 'SystemWallpaper',
component: () => import('@/views/spring/wallpaper/system/index'),
meta: { title: '系统壁纸' },
},
{
path: 'wallpaperType',
name: 'WallpaperType',
component: () => import('@/views/spring/wallpaper/type/index'),
meta: { title: '壁纸类型' },
},
],
},
{
path: 'avatar',
component: EmptyLayout,