Initial commit - full huishou project

This commit is contained in:
jiapengyu
2026-07-27 14:07:26 +08:00
commit 60790ad1b3
39127 changed files with 5989265 additions and 0 deletions
+198
View File
@@ -0,0 +1,198 @@
.admin-container.data-v-f94c733c {
min-height: 100vh;
background: #f5f7fa;
padding-bottom: 120rpx;
}
.admin-header.data-v-f94c733c {
background: linear-gradient(135deg, #3366ff 0%, #254edb 100%);
padding: 48rpx 32rpx;
display: flex;
justify-content: space-between;
align-items: center;
}
.header-left.data-v-f94c733c {
color: #fff;
}
.header-title.data-v-f94c733c {
font-size: 40rpx;
font-weight: 700;
display: block;
}
.header-subtitle.data-v-f94c733c {
font-size: 24rpx;
opacity: 0.8;
margin-top: 4rpx;
}
.header-right.data-v-f94c733c {
display: flex;
align-items: center;
color: #fff;
padding: 12rpx 24rpx;
background: rgba(255, 255, 255, 0.2);
border-radius: 24rpx;
}
.logout-icon.data-v-f94c733c {
font-size: 28rpx;
margin-right: 8rpx;
}
.logout-text.data-v-f94c733c {
font-size: 26rpx;
}
.stats-grid.data-v-f94c733c {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 16rpx;
padding: 32rpx;
}
.stat-card.data-v-f94c733c {
background: #fff;
border-radius: 12rpx;
padding: 20rpx 16rpx;
display: flex;
flex-direction: column;
align-items: center;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
}
.stat-icon.data-v-f94c733c {
font-size: 40rpx;
margin-bottom: 12rpx;
}
.stat-info.data-v-f94c733c {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.stat-value.data-v-f94c733c {
font-size: 28rpx;
font-weight: 700;
color: #3366ff;
}
.stat-label.data-v-f94c733c {
font-size: 20rpx;
color: #999;
margin-top: 4rpx;
}
.quick-actions.data-v-f94c733c, .recent-orders.data-v-f94c733c {
padding: 0 32rpx 32rpx;
}
.section-title.data-v-f94c733c {
font-size: 32rpx;
font-weight: 600;
color: #333;
margin-bottom: 24rpx;
display: flex;
justify-content: space-between;
align-items: center;
}
.view-all.data-v-f94c733c {
font-size: 26rpx;
color: #3366ff;
font-weight: normal;
}
.action-grid.data-v-f94c733c {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 24rpx;
}
.action-item.data-v-f94c733c {
background: #fff;
border-radius: 16rpx;
padding: 24rpx 16rpx;
display: flex;
flex-direction: column;
align-items: center;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
}
.action-item.data-v-f94c733c:active {
opacity: 0.8;
}
.action-icon.data-v-f94c733c {
font-size: 48rpx;
margin-bottom: 12rpx;
}
.action-name.data-v-f94c733c {
font-size: 24rpx;
color: #333;
text-align: center;
}
.order-list.data-v-f94c733c {
background: #fff;
border-radius: 16rpx;
overflow: hidden;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
}
.order-item.data-v-f94c733c {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24rpx;
border-bottom: 1rpx solid #f0f0f0;
}
.order-item.data-v-f94c733c:last-child {
border-bottom: none;
}
.order-item.data-v-f94c733c:active {
background: #f9f9f9;
}
.order-id.data-v-f94c733c {
font-size: 28rpx;
font-weight: 600;
color: #333;
}
.order-time.data-v-f94c733c {
font-size: 24rpx;
color: #999;
margin-top: 4rpx;
}
.order-amount.data-v-f94c733c {
font-size: 32rpx;
font-weight: 700;
color: #3366ff;
}
.order-status.data-v-f94c733c {
font-size: 22rpx;
padding: 6rpx 16rpx;
border-radius: 20rpx;
margin-top: 8rpx;
}
.order-status.pending.data-v-f94c733c {
background: #fff3e0;
color: #f59e0b;
}
.order-status.completed.data-v-f94c733c {
background: #dcfce7;
color: #3366ff;
}
.order-status.cancelled.data-v-f94c733c {
background: #fef2f2;
color: #ef4444;
}
.tab-bar.data-v-f94c733c {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 100rpx;
background: #fff;
display: flex;
box-shadow: 0 -4rpx 12rpx rgba(0, 0, 0, 0.05);
}
.tab-item.data-v-f94c733c {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.tab-item.active .tab-icon.data-v-f94c733c, .tab-item.active .tab-text.data-v-f94c733c {
color: #3366ff;
}
.tab-icon.data-v-f94c733c {
font-size: 36rpx;
}
.tab-text.data-v-f94c733c {
font-size: 22rpx;
color: #999;
margin-top: 4rpx;
}