feat: 补全赛事管理下所有页面 补全系统管理下所有页面

This commit is contained in:
ZhuRui
2026-07-25 18:00:22 +08:00
parent 34d9a778a8
commit b86c22e7d2
25 changed files with 2282 additions and 6 deletions
+65
View File
@@ -32,6 +32,71 @@
}
}
// 面包屑
.breadcrumb {
flex: 1;
margin-left: 8px;
font-size: 14px;
:global {
.ant-breadcrumb-link,
.ant-breadcrumb-separator,
.ant-breadcrumb-item a {
color: rgba(0, 0, 0, 0.65);
}
.ant-breadcrumb-item:last-child {
.ant-breadcrumb-link,
.ant-breadcrumb-separator,
a {
color: rgba(0, 0, 0, 0.88);
font-weight: 500;
cursor: default;
}
}
}
}
// Header 右侧:账号信息 + 退出图标
.headerRight {
margin-left: auto;
display: flex;
gap: 10px;
align-items: center;
}
.userPhone {
font-size: 14px;
color: rgba(0, 0, 0, 0.65);
}
.logoutIcon {
width: 18px;
height: 18px;
opacity: 0.45;
cursor: pointer;
transition: opacity 0.3s;
&:hover {
opacity: 1;
}
}
// 下拉菜单项:图标 + 文字
.menuItem {
display: inline-flex;
align-items: center;
gap: 8px;
:global(.anticon) {
font-size: 14px;
}
}
.menuItemDanger {
color: #ff4d4f;
}
.content {
margin: 16px;
border-radius: 8px;