|
|
@ -1,6 +1,7 @@ |
|
|
import React from 'react'; |
|
|
import React from 'react'; |
|
|
import { Form, Input, Button, Alert, Divider } from 'antd'; |
|
|
import { Form, Input, Button, Alert, Divider } from 'antd'; |
|
|
import { routerRedux } from 'dva/router'; |
|
|
import { routerRedux } from 'dva/router'; |
|
|
|
|
|
import { digitUppercase } from '../../../utils/utils'; |
|
|
import styles from './style.less'; |
|
|
import styles from './style.less'; |
|
|
|
|
|
|
|
|
export default ({ formItemLayout, form, data, dispatch, submitting }) => { |
|
|
export default ({ formItemLayout, form, data, dispatch, submitting }) => { |
|
|
@ -56,7 +57,8 @@ export default ({ formItemLayout, form, data, dispatch, submitting }) => { |
|
|
className={styles.stepFormText} |
|
|
className={styles.stepFormText} |
|
|
label="转账金额" |
|
|
label="转账金额" |
|
|
> |
|
|
> |
|
|
<span className={styles.money}>{data.amount}</span> 元 |
|
|
<span className={styles.money}>{data.amount}</span> |
|
|
|
|
|
<span className={styles.uppercase}>({digitUppercase(data.amount)})</span> |
|
|
</Form.Item> |
|
|
</Form.Item> |
|
|
<Divider style={{ margin: '24px 0' }} /> |
|
|
<Divider style={{ margin: '24px 0' }} /> |
|
|
<Form.Item |
|
|
<Form.Item |
|
|
|