|
@@ -31,6 +31,7 @@ const MySettlement=Form.create()(React.createClass({
|
|
|
endDate: this.state.releaseDate[1],
|
|
|
liquidationStatus:this.state.liquidationStatusSearch, //结算
|
|
|
approval:this.state.orderChannelSearch,//特批
|
|
|
+ orderNo:this.state.orderNoSearch,
|
|
|
},
|
|
|
success: function (data) {
|
|
|
let theArr = [];
|
|
@@ -333,6 +334,7 @@ const MySettlement=Form.create()(React.createClass({
|
|
|
},
|
|
|
reset() {
|
|
|
this.state.buyerNameSearch='';
|
|
|
+ this.state.orderNoSearch='';
|
|
|
this.state.releaseDate[0] = undefined;
|
|
|
this.state.releaseDate[1] = undefined;
|
|
|
this.state.orderChannelSearch = undefined;
|
|
@@ -392,6 +394,9 @@ const MySettlement=Form.create()(React.createClass({
|
|
|
</div>
|
|
|
<div className='clearfix' style={{marginTop:'5px'}}>
|
|
|
<div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
|
|
|
+ <Input placeholder="订单编号" style={{width:'150px',marginRight:'10px'}}
|
|
|
+ value={this.state.orderNoSearch}
|
|
|
+ onChange={(e) => { this.setState({ orderNoSearch: e.target.value }); }} />
|
|
|
<Select placeholder="结算状态"
|
|
|
style={{ width: 150 ,marginRight:'10px'}}
|
|
|
value={this.state.liquidationStatusSearch}
|