|  | @@ -33,7 +33,8 @@ const SettlementManage=Form.create()(React.createClass({
 | 
	
		
			
				|  |  |  				orderStatus:this.state.orderStatusSearch,
 | 
	
		
			
				|  |  |  				orderChannel:this.state.orderChannelSearch,
 | 
	
		
			
				|  |  |  				financeName:this.state.financeNameSearchs,
 | 
	
		
			
				|  |  | -				orderType:this.state.orderTypeSearch
 | 
	
		
			
				|  |  | +				orderType:this.state.orderTypeSearch,
 | 
	
		
			
				|  |  | +				orderNo :this.state.orderNoSearch
 | 
	
		
			
				|  |  |              },
 | 
	
		
			
				|  |  |              success: function (data) {
 | 
	
		
			
				|  |  |                  let theArr = [];
 | 
	
	
		
			
				|  | @@ -390,6 +391,7 @@ const SettlementManage=Form.create()(React.createClass({
 | 
	
		
			
				|  |  |      reset() {
 | 
	
		
			
				|  |  |      	this.state.buyerNameSearch='';
 | 
	
		
			
				|  |  |      	this.state.financeNameSearchs='';
 | 
	
		
			
				|  |  | +    	this.state.orderNoSearch='';
 | 
	
		
			
				|  |  |      	this.state.releaseDate[0] = undefined;
 | 
	
		
			
				|  |  |  		this.state.releaseDate[1] = undefined;
 | 
	
		
			
				|  |  |  		this.state.orderChannelSearch = undefined;
 | 
	
	
		
			
				|  | @@ -464,6 +466,9 @@ const SettlementManage=Form.create()(React.createClass({
 | 
	
		
			
				|  |  |                                      })
 | 
	
		
			
				|  |  |                                  }
 | 
	
		
			
				|  |  |  	                        </Select>
 | 
	
		
			
				|  |  | +	                        <Input placeholder="订单编号" style={{width:'150px',marginRight:'10px'}}
 | 
	
		
			
				|  |  | +	                        	value={this.state.orderNoSearch}
 | 
	
		
			
				|  |  | +	                        	onChange={(e) => { this.setState({ orderNoSearch: e.target.value }); }} />
 | 
	
		
			
				|  |  |  	                        <Select placeholder="订单类型"
 | 
	
		
			
				|  |  |  	                            style={{ width: 150 }}
 | 
	
		
			
				|  |  |  	                            value={this.state.orderTypeSearch}
 |