Commit afce4a6c authored by XieZhiXiong's avatar XieZhiXiong

chore: 剩余应还为0不展示还款按钮

parent c689c496
......@@ -536,7 +536,9 @@ class IntroduceRow extends React.Component<IntroduceRowProps, IntroduceRowState>
</div>
</div>
<div className={styles['repayment-right']}>
<Button type="primary" onClick={() => this.handleRepayment(true)}>立即还款</Button>
{billInfo && billInfo.residueRepayQuota ? (
<Button type="primary" onClick={() => this.handleRepayment(true)}>立即还款</Button>
) : null}
</div>
</div>
</Col>
......
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