feat:订单详情页面组件封装

This commit is contained in:
duanshuwen
2025-07-13 12:17:41 +08:00
parent 34a62d2f3e
commit 8766bb3720
88 changed files with 1021 additions and 47 deletions

View File

@@ -0,0 +1,49 @@
.order-info {
background-color: #fff;
border-radius: 10px;
padding: 16px 18px;
}
.order-item {
display: flex;
justify-content: space-between;
margin-bottom: 8px;
}
.label {
font-size: 12px;
color: #666;
}
.value {
font-size: 12px;
color: #333;
}
.amount .label {
color: #333;
}
.amount .value {
color: #ff5722;
font-size: 18px;
}
.reserve-button {
width: 100%;
background-color: #ffa500;
color: #fff;
border: none;
border-radius: 50px;
height: 42px;
font-size: 14px;
margin-top: 20px;
}
.feedback {
display: block;
text-align: center;
font-size: 14px;
color: #333;
margin-top: 10px;
}