新增套餐设置页面中的套餐管理页面并增加相应跳转逻辑

This commit is contained in:
2025-12-05 16:34:12 +08:00
parent 3ccb970a09
commit fc7f931728
4 changed files with 855 additions and 23 deletions

View File

@@ -123,6 +123,9 @@ export function filterDynamicRoutes(routes) {
if (auth.hasRoleOr(route.roles)) {
res.push(route)
}
} else {
// 如果没有权限设置,默认允许访问
res.push(route)
}
})
return res