添加管理员逻辑

This commit is contained in:
2025-10-19 23:38:54 +08:00
parent 118ec38550
commit 5ee4e077fb
46 changed files with 5263 additions and 883 deletions

View File

@@ -20,11 +20,39 @@
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1);
}
.header-left {
display: flex;
align-items: center;
gap: 20rpx;
}
.nav-title {
font-size: 36rpx;
font-weight: bold;
}
/* 微信风格返回按钮 */
.back-icon {
width: 60rpx;
height: 60rpx;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.2);
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s;
}
.back-icon:active {
background-color: rgba(255, 255, 255, 0.4);
}
.back-arrow {
font-size: 36rpx;
font-weight: bold;
color: white;
}
.user-info {
display: flex;
align-items: center;