|
@@ -93,7 +93,7 @@ const DemandList = React.createClass({
|
|
|
render: text => { return text&&text.length>16?text.substr(0,16)+'...':text}
|
|
|
},
|
|
|
{
|
|
|
- title: '面额(元)',
|
|
|
+ title: '数量(枚)',
|
|
|
dataIndex: 'money',
|
|
|
key: 'money',
|
|
|
},
|
|
@@ -343,12 +343,12 @@ const DemandList = React.createClass({
|
|
|
<div className="clearfix">
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|
|
|
- label={<span><strong style={{color:'#f00'}}> * </strong>面额</span>}>
|
|
|
+ label={<span><strong style={{color:'#f00'}}> * </strong>数量</span>}>
|
|
|
<div><InputNumber value={this.state.money}
|
|
|
formatter={(value)=>value}
|
|
|
parser={(val)=>parseInt(val)||0}
|
|
|
onChange={(e)=>{this.setState({money:e})}} min={0} max={999999} step={0
|
|
|
- } placeholder="输入面额."/><span> 元</span></div>
|
|
|
+ } placeholder="输入数量."/><span> 枚</span></div>
|
|
|
</FormItem>
|
|
|
<FormItem
|
|
|
{...formItemLayout}
|