fix: 2
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user