优化支付流程
This commit is contained in:
parent
2728312097
commit
7103f22de2
|
@ -57,7 +57,7 @@ export default function Wallet() {
|
||||||
icon={faAngleLeft}
|
icon={faAngleLeft}
|
||||||
size="xl"
|
size="xl"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
router.push("/my");
|
router.back();
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -68,7 +68,10 @@ export default function Wallet() {
|
||||||
<div className="flex flex-row justify-around mt-2 w-full">
|
<div className="flex flex-row justify-around mt-2 w-full">
|
||||||
<div className="flex flex-col items-center w-1/4">
|
<div className="flex flex-col items-center w-1/4">
|
||||||
<Image
|
<Image
|
||||||
src={process.env.NEXT_PUBLIC_WEB_ASSETS_URL+"/images/icon_goldcoin.png"}
|
src={
|
||||||
|
process.env.NEXT_PUBLIC_WEB_ASSETS_URL +
|
||||||
|
"/images/icon_goldcoin.png"
|
||||||
|
}
|
||||||
placeholder=""
|
placeholder=""
|
||||||
width={48}
|
width={48}
|
||||||
height={48}
|
height={48}
|
||||||
|
@ -84,7 +87,10 @@ export default function Wallet() {
|
||||||
/>
|
/>
|
||||||
<div className="flex flex-col items-center w-1/4">
|
<div className="flex flex-col items-center w-1/4">
|
||||||
<Image
|
<Image
|
||||||
src={process.env.NEXT_PUBLIC_WEB_ASSETS_URL+"/images/icon_diamond.png"}
|
src={
|
||||||
|
process.env.NEXT_PUBLIC_WEB_ASSETS_URL +
|
||||||
|
"/images/icon_diamond.png"
|
||||||
|
}
|
||||||
placeholder=""
|
placeholder=""
|
||||||
width={48}
|
width={48}
|
||||||
height={48}
|
height={48}
|
||||||
|
|
Loading…
Reference in New Issue