From c1f03950e0d3de55750062004948c3f82b0b8c19 Mon Sep 17 00:00:00 2001
From: Ultrame <1019265060@qq.com>
Date: Thu, 2 Oct 2025 21:42:43 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/user_pages/withdrawal/index.tsx | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/user_pages/withdrawal/index.tsx b/src/user_pages/withdrawal/index.tsx
index 9a56417..f7dfb08 100644
--- a/src/user_pages/withdrawal/index.tsx
+++ b/src/user_pages/withdrawal/index.tsx
@@ -236,7 +236,9 @@ const Withdrawal: React.FC = () => {
}
}
const handlePopupClick = (e) => {
- e.stopPropagation();
+ e.preventDefault()
+ e.stopPropagation()
+ e.nativeEvent.stopImmediatePropagation()
inputRef.current!.focus();
};
return (
@@ -245,7 +247,7 @@ const Withdrawal: React.FC = () => {
提现金额
¥
-
+
{
!showTips && (Number(inputValue) !== 0) && (
@@ -308,7 +310,7 @@ const Withdrawal: React.FC = () => {
))
}
- item !== "").join("")} maxlength={6} onInput={handlePasswordInput} />
+ item !== "").join("")} maxlength={6} onInput={handlePasswordInput} onBlur={() => {set_show_withdraw_popup(false)}} />