小程序端界面修改
CI / verify (pull_request) Has been cancelled

This commit is contained in:
2026-07-23 15:23:23 +08:00
parent 82c447b193
commit 2a208d5dea
3 changed files with 9 additions and 2 deletions
@@ -333,7 +333,11 @@ export default function OrderConfirmPage() {
{!previewLoading && !preview && productId ? ( {!previewLoading && !preview && productId ? (
<View className="u-empty"></View> <View className="u-empty"></View>
) : null} ) : null}
{msg ? <Text className="u-muted" style={{ display: 'block', marginTop: 8 }}>{msg}</Text> : null} {msg ? (
<Text className="u-muted" style={{ display: 'block', marginTop: 8, textAlign: 'center' }}>
{msg}
</Text>
) : null}
</View> </View>
<View className="order-confirm-bar"> <View className="order-confirm-bar">
+1 -1
View File
@@ -210,7 +210,7 @@ export default function PayPage() {
</View> </View>
</View> </View>
{msg ? ( {msg ? (
<Text className="pay-wechat-auth-msg" style={{ display: 'block', marginTop: 12 }}> <Text className="pay-wechat-auth-msg" style={{ marginTop: 12 }}>
{msg} {msg}
</Text> </Text>
) : null} ) : null}
+3
View File
@@ -169,6 +169,7 @@
font-size: 13px; font-size: 13px;
color: var(--color-heritage-red); color: var(--color-heritage-red);
line-height: 1.4; line-height: 1.4;
text-align: center;
} }
.order-row { .order-row {
@@ -438,7 +439,9 @@
} }
.pay-wechat-auth-msg { .pay-wechat-auth-msg {
display: block;
font-size: 13px; font-size: 13px;
color: var(--color-heritage-red, #a02d30); color: var(--color-heritage-red, #a02d30);
line-height: 1.5; line-height: 1.5;
text-align: center;
} }