Commit aecf2479 authored by superman's avatar superman

1. 需求增加: 报单审核过程中,开户行内容允许修改

                2. 需求增加: 提现审核列表-提现金额栏数字后加上单位元、提现审核-审核详情-提现金额后加上单位元、订单详情-佣金发放-实际佣金金额后加上单位元
parent 8576f971
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -7,6 +7,11 @@ const Home = ({location}) => {
<div className={styles.home}>
<h1 style={{marginBottom: 50}}>欢迎使用枢纽科技后台</h1>
<h3>2016-08-26 更新 1.3.7</h3>
<p>
1. 需求增加: 报单审核过程中,开户行内容允许修改
2. 需求增加: 提现审核列表-提现金额栏数字后加上单位元、提现审核-审核详情-提现金额后加上单位元、订单详情-佣金发放-实际佣金金额后加上单位元
</p>
<h3>2016-08-23 更新 1.3.6</h3>
<p>
1. BUG修复: 下载图片命名方式应为“投资人姓名-实际打款金额”而不是“投资人姓名-预约金额”<br/>
......
......@@ -201,10 +201,22 @@ export default class PassItem extends Component {
</Form.Item>
}
<Form.Item label="开户行" {...leftRightFormItemLayout}>
{audit.bankBranch || NULL}
</Form.Item>
{
isEdit ?
<Form.Item label="开户行"
help="真实的投资人开户行信息"
{...leftRightFormItemLayout}
>
<Input placeholder="开户行"
{...getFieldProps('bankBranch', {
initialValue: audit.bankBranch
})} />
</Form.Item>
:
< Form.Item label="开户行" {...leftRightFormItemLayout}>
{audit.bankBranch || NULL}
</Form.Item>
}
<Form.Item label="打款时间" {...leftRightFormItemLayout}>
{audit.remittanceTime && formatDateTime(audit.remittanceTime) || '错误的时间'}
......
......@@ -25,7 +25,7 @@ const columns = [
dataIndex: 'amount',
key: 'amount',
width: 100,
className: 'tac',
className: 'tac money',
}, {
title: '申请时间',
dataIndex: 'dateCreated',
......
......@@ -142,7 +142,7 @@ export default class PassItem extends Component {
{audit.dateCreated && formatDateTime(audit.dateCreated) || '错误的时间'}
</Form.Item>
<Form.Item label="当前余额" {...smallFormItemLayout}>
{audit.balance || NULL}
<span className="money">{audit.balance || NULL}</span>
</Form.Item>
<Form.Item label="持卡人" {...smallFormItemLayout}>
{audit.bankCard && audit.bankCard.username || NULL}
......@@ -156,7 +156,7 @@ export default class PassItem extends Component {
{audit.bankCard && audit.bankCard.bankBranch || NULL}
</Form.Item>
<Form.Item label="提现金额" {...smallFormItemLayout}>
{audit.amount || NULL}
<span className="money">{audit.amount || NULL}</span>
</Form.Item>
{
audit.status == 5 ?
......
......@@ -147,6 +147,18 @@
.tac {
text-align: center !important;
}
.money {
&:after {
content: '元';
}
}
th {
&.money {
&:after {
content: '';
}
}
}
body {
.ant-modal-mask {
......
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