- 产品
- {{ app.product_name or '-' }}
- 申请金额
- {{ (app.amount|string + '万') if app.amount else '-' }}
- 利率
- {{ (app.rate|string + '%') if app.rate else '-' }}
- 期限
- {{ (app.term_months|string + '个月') if app.term_months else '-' }}
- 当前阶段
- {{ app.current_stage }}
- 最终结果
- {{ app.result or '进行中' }}
{% if app.rejection_name %}
- 拒绝原因
- {{ app.rejection_name }}
{% endif %}
{% if app.fail_detail %}
- 失败详情
- {{ app.fail_detail }}
{% endif %}
{% if app.next_action %}
- 下一步
- {{ app.next_action }}
{% endif %}
{% if app.next_action_at %}
- 行动日期
- {{ app.next_action_at[:10] if app.next_action_at else '' }}
{% endif %}