support adding / renaming / deleting / changing display order for tag group on mobile version

This commit is contained in:
MaysWind
2026-01-17 20:04:07 +08:00
parent a357fb8136
commit 42ae323568
3 changed files with 302 additions and 2 deletions
+6
View File
@@ -44,6 +44,7 @@ import CategoryEditPage from '@/views/mobile/categories/EditPage.vue';
import CategoryPresetPage from '@/views/mobile/categories/PresetPage.vue';
import TagListPage from '@/views/mobile/tags/ListPage.vue';
import TagGroupListPage from '@/views/mobile/tags/GroupListPage.vue';
import TemplateListPage from '@/views/mobile/templates/ListPage.vue';
@@ -324,6 +325,11 @@ const routes: Router.RouteParameters[] = [
async: asyncResolve(TagListPage),
beforeEnter: [checkLogin]
},
{
path: '/tag/group/list',
async: asyncResolve(TagGroupListPage),
beforeEnter: [checkLogin]
},
{
path: '/template/list',
async: asyncResolve(TemplateListPage),