This commit is contained in:
2025-10-16 21:16:57 +08:00
parent 363630cdb5
commit 9e2fa335aa
13 changed files with 172 additions and 57 deletions

View File

@@ -1,3 +1,3 @@
export default definePageConfig({
navigationBarTitleText: "我的钱包",
navigationBarTitleText: "钱包",
});

View File

@@ -4,6 +4,7 @@
background-color: #f5f5f5;
padding-bottom: 5px;
box-sizing: border-box;
padding: 100px 0 40px;
&::-webkit-scrollbar {
display: none;
@@ -364,9 +365,9 @@
// 过滤弹窗
.filter_popup {
padding: 20px;
.popup_content {
padding: 16px 20px;
.form_section {
.form_item {
margin-bottom: 20px;
@@ -377,7 +378,7 @@
font-weight: 600;
font-style: Semibold;
font-size: 16px;
margin-bottom: 20px;
margin-bottom: 12px;
}
.options_wrapper {

View File

@@ -578,6 +578,7 @@ const WalletPage: React.FC = () => {
{/* 提现弹窗 */}
<CommonPopup
showHeader={true}
visible={show_withdraw_popup}
onClose={() => set_show_withdraw_popup(false)}
onConfirm={submit_withdraw}
@@ -619,6 +620,8 @@ const WalletPage: React.FC = () => {
{/* 选择月份弹窗 */}
{showMonthPicker && (
<PopupPicker
showHeader={true}
title="选择月份"
visible={showMonthPicker}
setvisible={setShowMonthPicker}
value={[
@@ -639,6 +642,7 @@ const WalletPage: React.FC = () => {
)}
{/* 筛选账单弹窗 */}
<CommonPopup
showHeader={true}
visible={showFilterPopup}
onClose={handleFilterCancel}
onConfirm={modify_load_transactions_params}