diff --git a/lib/pages/user/user_cash_withdraw_page.dart b/lib/pages/user/user_cash_withdraw_page.dart index 44e92b4..dc0754a 100644 --- a/lib/pages/user/user_cash_withdraw_page.dart +++ b/lib/pages/user/user_cash_withdraw_page.dart @@ -591,9 +591,13 @@ class _UserCashWithdrawPageState extends BaseStoreState { passwordReturn: (password) { Navigator.pop(context); String account = _accountTextEditController.text; - withdraw(_amountTextEditController.text, password, - alipay: _isCashToAlipay ? account : "", - bankAccount: _isCashToAlipay ? "" : account); + String bankAccount = _bankAccountTextEditController.text; + withdraw( + _amountTextEditController.text, + password, + alipay: _isCashToAlipay ? account : "", + bankAccount: _isCashToAlipay ? "" : bankAccount, + ); if (_isCashToAlipay) { HiveStore.appBox