Commit d440ae79 authored by superman's avatar superman

报单审核详情页面 增加显示开户行与打款时间

parent aa7cc8cb
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -115,10 +115,10 @@ export default class ElementForm extends Component { ...@@ -115,10 +115,10 @@ export default class ElementForm extends Component {
<Row style={{padding:'0 20px'}}> <Row style={{padding:'0 20px'}}>
<Col span="24"> <Col span="24">
{ {
isEdit ? isEdit ? //或者自定义其他要素
<div> <div>
<Form.Item> <Form.Item>
<h3>可以设置以下要素,或者自定义其他要素</h3> <h3>可以设置以下要素</h3>
<p>总规模、投资亮点、托管方、结算方式、资金用途、融资方、担保主体、风控措施、还款来源、发行方、认购起点、大小额配比</p> <p>总规模、投资亮点、托管方、结算方式、资金用途、融资方、担保主体、风控措施、还款来源、发行方、认购起点、大小额配比</p>
</Form.Item> </Form.Item>
<Form.Item> <Form.Item>
......
...@@ -197,6 +197,16 @@ export default class PassItem extends Component { ...@@ -197,6 +197,16 @@ export default class PassItem extends Component {
{audit.identityCardNumber || NULL} {audit.identityCardNumber || NULL}
</Form.Item> </Form.Item>
} }
<Form.Item label="开户行" {...leftRightFormItemLayout}>
{audit.bankBranch || NULL}
</Form.Item>
<Form.Item label="打款时间" {...leftRightFormItemLayout}>
{audit.remittanceTime && formatDateTime(audit.remittanceTime) || '错误的时间'}
</Form.Item>
{ {
isEdit && isEdit &&
<Form.Item label="拒绝理由" {...leftRightFormItemLayout}> <Form.Item label="拒绝理由" {...leftRightFormItemLayout}>
......
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