|
@@ -291,14 +291,15 @@ const Withdraw = () => {
|
|
|
)}
|
|
|
onClick={() => channelChangeHandler(item)}
|
|
|
>
|
|
|
- <div className="text-center">
|
|
|
- <img
|
|
|
+ <div className="text-center text-[.15rem]">
|
|
|
+ {/* <img
|
|
|
className="inline-block h-[.15rem]"
|
|
|
src={item.icon}
|
|
|
alt=""
|
|
|
- />
|
|
|
+ /> */}
|
|
|
+ {item.name}
|
|
|
</div>
|
|
|
- <div className="mt-[.02rem] text-[#11de68]">
|
|
|
+ <div className="mt-[.02rem] text-[.13rem] text-[#11de68]">
|
|
|
R${item.min_amount}~{item.max_amount}
|
|
|
</div>
|
|
|
</p>
|
|
@@ -320,8 +321,8 @@ const Withdraw = () => {
|
|
|
}}
|
|
|
></i>
|
|
|
</div>
|
|
|
- <div className="pb-[.1rem] text-[#74888f]">Valor do Saque</div>
|
|
|
- <div className={styles.quick}>
|
|
|
+ {/* <div className="pb-[.1rem] text-[#74888f]">Valor do Saque</div> */}
|
|
|
+ {/* <div className={styles.quick}>
|
|
|
{quicks.map((item) => {
|
|
|
return (
|
|
|
<div
|
|
@@ -342,7 +343,7 @@ const Withdraw = () => {
|
|
|
</div>
|
|
|
);
|
|
|
})}
|
|
|
- </div>
|
|
|
+ </div> */}
|
|
|
<div className="flex items-center py-[.1rem]">
|
|
|
<i className="iconfont icon-22222_huaban1 mr-[.1rem] text-[#789098]"></i>
|
|
|
<span className="text-[.12rem] text-[#eac61f]">
|
|
@@ -353,7 +354,7 @@ const Withdraw = () => {
|
|
|
<Form ref={formInstanceRef} onFinish={onFinish} onValuesChange={valuesChange}>
|
|
|
<Form.Item
|
|
|
className={styles.amontForm}
|
|
|
- label="R$"
|
|
|
+ label={<div className="px-[.1rem]">R$</div>}
|
|
|
layout="horizontal"
|
|
|
extra={
|
|
|
<div
|
|
@@ -372,12 +373,18 @@ const Withdraw = () => {
|
|
|
}
|
|
|
name="amount"
|
|
|
>
|
|
|
- <Input onChange={(value) => setAmount(value)} />
|
|
|
+ <Input
|
|
|
+ className={styles.amountInput}
|
|
|
+ onChange={(value) => setAmount(value)}
|
|
|
+ placeholder={`${currentChannel.min_amount}~${currentChannel.max_amount}`}
|
|
|
+ />
|
|
|
</Form.Item>
|
|
|
|
|
|
<div className={styles.line}></div>
|
|
|
<div className={styles.channelText}>
|
|
|
- <span className="mr-[.1rem] text-[#768d95]">Método de Retirada</span>
|
|
|
+ <span className="mr-[.1rem] text-[.14rem] text-[#768d95]">
|
|
|
+ Método de Retirada
|
|
|
+ </span>
|
|
|
{currentChannel.icon && (
|
|
|
<div className="rounded-[.04rem] border-[1px] border-[#16432f] px-[.06rem] py-[.02rem]">
|
|
|
<img className="h-[.2rem]" src={currentChannel.icon} alt="" />
|
|
@@ -557,7 +564,6 @@ const Withdraw = () => {
|
|
|
{wallet.point}
|
|
|
</span>
|
|
|
</li>
|
|
|
-
|
|
|
<li>
|
|
|
<div className={"flex items-center pt-[.1rem]"}>
|
|
|
<ProgressBar
|
|
@@ -583,7 +589,7 @@ const Withdraw = () => {
|
|
|
{!faltaData.canWithdraw && (
|
|
|
<Button
|
|
|
color={"primary"}
|
|
|
- className={"mx-auto flex-1 rounded-[.2rem_!important]"}
|
|
|
+ className={"mx-auto flex-1 rounded-[.2rem_!important] font-bold"}
|
|
|
style={{
|
|
|
"--background-color": "#11de68",
|
|
|
"--border-color": "#11de68",
|
|
@@ -597,7 +603,7 @@ const Withdraw = () => {
|
|
|
{faltaData.canWithdraw && (
|
|
|
<Button
|
|
|
color={"primary"}
|
|
|
- className={"ml-[30px] flex-1 rounded-[.2rem_!important]"}
|
|
|
+ className={"ml-[30px] flex-1 rounded-[.2rem_!important] font-bold"}
|
|
|
style={{
|
|
|
"--background-color": "#11de68",
|
|
|
"--border-color": "#11de68",
|