细节优化
This commit is contained in:
@@ -245,7 +245,7 @@ const Withdrawal: React.FC = () => {
|
||||
<Text className="title-text">提现金额</Text>
|
||||
<View className="input-container">
|
||||
<Text className="symbol">¥</Text>
|
||||
<Input type="digit" placeholder="0.00" cursorColor="#000" value={inputValue} onInput={handleInput} />
|
||||
<Input type="digit" placeholder="0.00" cursorColor="#000" adjustPosition={false} value={inputValue} onInput={handleInput} />
|
||||
{
|
||||
!showTips && (Number(inputValue) !== 0) && (
|
||||
<Button className="btn" onClick={handleWithdraw}>提现</Button>
|
||||
@@ -255,7 +255,7 @@ const Withdrawal: React.FC = () => {
|
||||
<View className="btn-container">
|
||||
<View>
|
||||
<Text>{`我的余额:¥${walletInfo.balance}`}</Text>
|
||||
<Text>(可提现余额:¥5000.00)</Text>
|
||||
{/* <Text>(可提现余额:¥5000.00)</Text> */}
|
||||
</View>
|
||||
<Text className="btn" onClick={withdrawAll}>全部提现</Text>
|
||||
</View>
|
||||
@@ -297,7 +297,7 @@ const Withdrawal: React.FC = () => {
|
||||
hideFooter={true}
|
||||
style={{ bottom: isKeyboardVisible ? `${keyboardHeight}px` : undefined }}
|
||||
>
|
||||
<View className="popup_content" onTouchStart={handlePopupClick} onTouchMove={handlePopupClick} onTouchEnd={handlePopupClick}>
|
||||
<View className="popup_content" onTouchForceChange={handlePopupClick} onTouchStart={handlePopupClick} onTouchMove={handlePopupClick} onTouchEnd={handlePopupClick}>
|
||||
<View className="popup_text">{`¥${inputValue}`}</View>
|
||||
<View className="password_container">
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user