新增接单平台第一期闭环

This commit is contained in:
yml2213
2026-07-25 13:58:53 +08:00
parent 06decc51ff
commit f6d3f00f21
27 changed files with 3987 additions and 0 deletions
+70
View File
@@ -1622,3 +1622,73 @@ select {
font-size: 12px;
line-height: 1.5;
}
.worker-auth-page,
.collect-page {
min-height: 100vh;
display: grid;
place-items: center;
padding: 32px 16px;
background: #f5f7fb;
}
.worker-auth-card,
.collect-card {
width: min(520px, 100%);
}
.worker-page-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.worker-page-head h3 {
margin: 0;
}
.worker-order-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 16px;
}
.worker-order-card .ant-card-body {
height: 100%;
}
.worker-order-card-head {
width: 100%;
justify-content: space-between;
}
.worker-order-money {
margin: 4px 0 0;
color: #f97316;
}
.worker-profile-card {
background: #c8b172;
}
.worker-profile-card .ant-statistic-title,
.worker-profile-card .ant-statistic-content {
color: #fff;
}
.collect-order-input {
flex: 1;
margin-bottom: 0;
}
@media (max-width: 720px) {
.worker-page-head {
align-items: stretch;
flex-direction: column;
}
.worker-order-grid {
grid-template-columns: 1fr;
}
}