auth page enhancement

This commit is contained in:
2026-03-18 18:04:41 +08:00
parent b6abf43075
commit 58e1c34b69
8 changed files with 640 additions and 2 deletions
@@ -101,6 +101,8 @@ const breadcrumbItems = computed(() => {
'/refunds': '退款列表',
'/refund-items': '退款子项',
'/mq-status': '队列监控',
'/profile': '个人信息',
'/profile/password': '修改密码',
}
const items: Array<{ title: string; path: string }> = [{ title: '首页', path: '/' }]
@@ -133,11 +135,11 @@ const breadcrumbItems = computed(() => {
</span>
<template #overlay>
<a-menu>
<a-menu-item key="profile">
<a-menu-item key="profile" @click="router.push('/profile')">
<SettingOutlined class="mr-2" />
个人信息
</a-menu-item>
<a-menu-item key="password">
<a-menu-item key="password" @click="router.push('/profile/password')">
<KeyOutlined class="mr-2" />
修改密码
</a-menu-item>