This commit is contained in:
2025-12-07 01:11:40 +08:00
parent bbb5170802
commit f5a4cd5a37
7 changed files with 110 additions and 20 deletions

View File

@@ -160,15 +160,18 @@
color: #000;
font-feature-settings: "liga" off, "clig" off;
text-overflow: ellipsis;
white-space: nowrap;
font-family: "PingFang SC";
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 150% */
flex: 1;
min-width: 0;
}
.payNum {
width: 90px;
width: 120px;
font-feature-settings: "liga" off, "clig" off;
font-family: "PingFang SC";
font-size: 12px;
@@ -176,6 +179,9 @@
font-weight: 600;
line-height: 26px;
text-align: right;
display: flex;
justify-content: flex-end;
gap: 6px;
&.paid {
color: #000;
}
@@ -183,6 +189,10 @@
&.pending {
color: #ff3b30;
}
.amount {
font-size: 16px;
}
}
}

View File

@@ -336,7 +336,9 @@ const OrderList = () => {
? "待支付"
: refundTextMap.get(item.refund_status)}
</Text>{" "}
¥ <Text>{item.amount}</Text>
<View className={styles.amount}>
¥ <Text>{item.amount}</Text>
</View>
</View>
)}
</View>