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,77 @@
.goods-info {
background-color: #fff;
border-radius: 10px;
padding: 12px 16px 20px;
}
.hotel-header {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.hotel-icon {
width: 24px;
height: 24px;
margin-right: 8px;
}
.hotel-name {
color: #333;
font-size: 12px;
font-weight: 500;
}
.goods-detail {
display: flex;
margin-bottom: 20px;
}
.goods-image {
background-color: pink;
width: 65px;
height: 65px;
border-radius: 8px;
margin-right: 15px;
}
.goods-description {
flex: 1;
}
.goods-title {
display: block;
font-size: 14px;
font-weight: 500;
margin-bottom: 8px;
}
.goods-date {
font-size: 12px;
color: #666;
}
.included-services {
margin-top: 10px;
}
.services-title {
display: block;
font-size: 12px;
margin-bottom: 12px;
}
.service-item {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.service-name {
font-size: 14px;
}
.service-quantity {
font-size: 12px;
color: #666;
}