Changes: - Remove deprecated Fengling.Activity and YarpGateway.Admin projects - Add points processing services with distributed lock support - Update Vben frontend with gateway management pages - Add gateway config controller and database listener - Update routing to use header-mixed-nav layout - Add comprehensive test suites for Member services - Add YarpGateway integration tests - Update package versions in Directory.Packages.props Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
29 lines
624 B
TypeScript
29 lines
624 B
TypeScript
import type { RouteRecordRaw } from 'vue-router';
|
|
|
|
const routes: RouteRecordRaw[] = [
|
|
// ========== 关于 ==========
|
|
{
|
|
name: 'VbenAbout',
|
|
path: '/about',
|
|
component: () => import('#/views/_core/about/index.vue'),
|
|
meta: {
|
|
icon: 'lucide:copyright',
|
|
title: '关于',
|
|
order: 9999,
|
|
},
|
|
},
|
|
// ========== 个人中心 (隐藏菜单) ==========
|
|
{
|
|
name: 'Profile',
|
|
path: '/profile',
|
|
component: () => import('#/views/_core/profile/index.vue'),
|
|
meta: {
|
|
icon: 'lucide:user',
|
|
hideInMenu: true,
|
|
title: '个人中心',
|
|
},
|
|
},
|
|
];
|
|
|
|
export default routes;
|