diff --git a/src/user_pages/wallet/index.scss b/src/user_pages/wallet/index.scss index 7ca8c57..f4735e1 100644 --- a/src/user_pages/wallet/index.scss +++ b/src/user_pages/wallet/index.scss @@ -1,7 +1,6 @@ // @use '../../scss/common.scss' as *; .wallet_page { - height: 100vh; background-color: #f5f5f5; padding-bottom: 5px; box-sizing: border-box; diff --git a/src/user_pages/wallet/index.tsx b/src/user_pages/wallet/index.tsx index f1d9990..a3e9dab 100644 --- a/src/user_pages/wallet/index.tsx +++ b/src/user_pages/wallet/index.tsx @@ -1,5 +1,5 @@ import React, { useEffect, useState } from "react"; -import { View, Text, Input, Button, Image, ScrollView } from "@tarojs/components"; +import { View, Text, Input, Button, Image } from "@tarojs/components"; import Taro, { useDidShow } from "@tarojs/taro"; import "./index.scss"; import { CommonPopup } from "@/components"; @@ -430,7 +430,7 @@ const WalletPage: React.FC = () => { }; return ( - + {/* 钱包主卡片 */} {/* 头部信息 */} @@ -700,7 +700,7 @@ const WalletPage: React.FC = () => { - + ); };