From 5e8c4b28132cf294b2676f4d1f4a646ca4116726 Mon Sep 17 00:00:00 2001 From: zhangjianjun Date: Wed, 15 Jul 2026 15:30:29 +0800 Subject: [PATCH] ud --- src/index.css | 9 +++++++++ src/pages/PayResultPage.tsx | 10 +++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/index.css b/src/index.css index 019efb3..f4a58a9 100644 --- a/src/index.css +++ b/src/index.css @@ -545,6 +545,15 @@ p { color: #FFFFFF; } + .success-tip { + font-family: PingFang SC, PingFang SC; + font-weight: 400; + font-size: 17px; + color: #666666; + line-height: 24px; + text-align: center; + } + } #Twins { diff --git a/src/pages/PayResultPage.tsx b/src/pages/PayResultPage.tsx index 3b938f6..a4a8d13 100644 --- a/src/pages/PayResultPage.tsx +++ b/src/pages/PayResultPage.tsx @@ -14,9 +14,13 @@ function PayResultPage() { {isSuccess ? "支付成功" : "抱歉,订单支付失败"} - + {isSuccess ? ( +
请返回APP进行查看
+ ) : ( + + )} ) }