Commit 45744d4d authored by XieZhiXiong's avatar XieZhiXiong

fix: 添加还款对公账户条件

parent b68c1dd9
......@@ -292,8 +292,13 @@ class IntroduceRow extends React.Component<IntroduceRowProps, IntroduceRowState>
const { payProveList = [] } = values;
const { repaymentValues, billId, bankAccount } = this.state;
if (!bankAccount || !bankAccount.id) {
message.error('没有还款账户相关信息,无法还款');
if (
!bankAccount ||
!bankAccount.id ||
!bankAccount.bankAccount ||
!bankAccount.bankDeposit
) {
message.error('没有还款账户完整相关信息,无法还款');
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment