|
@@ -24,6 +24,7 @@ const DemandList = React.createClass({
|
|
|
pageSize: this.state.pagination.pageSize,
|
|
|
employerName: this.state.employerNameSearch,//客户名称
|
|
|
name: this.state.nameSearch,
|
|
|
+ auditStatus:this.state.auditStatusSearch,
|
|
|
demandType: this.state.demandTypeSearch ? Number(this.state.demandTypeSearch) : undefined,
|
|
|
status: this.state.statusSearch ? Number(this.state.statusSearch) : undefined,
|
|
|
startDate: this.state.releaseDate[0],
|
|
@@ -210,7 +211,7 @@ const DemandList = React.createClass({
|
|
|
reset() {
|
|
|
this.state.nameSearch = '';
|
|
|
this.state.demandTypeSearch = undefined;
|
|
|
- this.state.auditStatus = undefined;
|
|
|
+ this.state.auditStatusSearch = undefined;
|
|
|
this.state.statusSearch = undefined;
|
|
|
this.state.employerNameSearch='';
|
|
|
this.state.releaseDate = [];
|
|
@@ -249,8 +250,8 @@ const DemandList = React.createClass({
|
|
|
{this.state.demandTypeOption}
|
|
|
</Select>
|
|
|
<Select placeholder="发布状态" style={{ width: 120 }}
|
|
|
- value={this.state.auditStatus}
|
|
|
- onChange={(e) => { this.setState({ auditStatus: e }) }}>
|
|
|
+ value={this.state.auditStatusSearch}
|
|
|
+ onChange={(e) => { this.setState({ auditStatusSearch: e }) }}>
|
|
|
<Select.Option value="0" >草稿</Select.Option>
|
|
|
<Select.Option value="1" >发布审核</Select.Option>
|
|
|
<Select.Option value="2" >已发布</Select.Option>
|