优化样式

This commit is contained in:
2025-10-04 11:42:20 +08:00
parent f6a1568719
commit 2dd634c921
9 changed files with 48 additions and 31 deletions

View File

@@ -392,6 +392,10 @@
justify-content: center;
gap: 12px;
Image {
width: 52vw;
}
.emptyTip {
color: rgba(0, 0, 0, 0.85);
font-feature-settings: "liga" off, "clig" off;

View File

@@ -403,7 +403,7 @@ const OrderList = () => {
)}
{flatList.length === 0 && (
<View className={styles.emptyNotice}>
<Image src={emptyContent} />
<Image mode="widthFix" src={emptyContent} />
<Text className={styles.emptyTip}></Text>
</View>
)}