|
@@ -64,6 +64,7 @@ const JsBonus = React.createClass({
|
|
|
salesName: this.state.orderRefundSearch,//订单负责人
|
|
|
targetName: this.state.projectMenSearch,//项目负责人
|
|
|
departmentId:this.state.departmenttList,
|
|
|
+ orderNo:this.state.orderNoSearch,
|
|
|
startTime: this.state.releaseDate[0],
|
|
|
endTime: this.state.releaseDate[1],
|
|
|
grantStatus: this.state.grantStatus
|
|
@@ -88,6 +89,7 @@ const JsBonus = React.createClass({
|
|
|
commodityQuantity:thisdata.commodityQuantity,
|
|
|
projectStatus:thisdata.projectStatus,
|
|
|
byName:thisdata.byName,
|
|
|
+ commodityName:thisdata.commodityName,
|
|
|
bonusSubject:thisdata.bonusSubject,
|
|
|
grantStatus:thisdata.grantStatus,
|
|
|
grantTime:thisdata.grantTime,
|
|
@@ -150,6 +152,11 @@ const JsBonus = React.createClass({
|
|
|
key: 'orderNo',
|
|
|
},
|
|
|
{
|
|
|
+ title: '任务名称',
|
|
|
+ dataIndex: 'commodityName',
|
|
|
+ key: 'commodityName',
|
|
|
+ },
|
|
|
+ {
|
|
|
title: '任务负责人',
|
|
|
dataIndex: 'targetName',
|
|
|
key: 'targetName',
|
|
@@ -315,6 +322,7 @@ const JsBonus = React.createClass({
|
|
|
this.state.orderRefundSearch='';
|
|
|
this.state.projectMenSearch='';
|
|
|
this.state.releaseDate = [];
|
|
|
+ this.state.orderNoSearch='';
|
|
|
this.state.grantStatus=undefined;
|
|
|
this.state.departmenttList=undefined;
|
|
|
this.loadData();
|
|
@@ -352,9 +360,9 @@ const JsBonus = React.createClass({
|
|
|
})
|
|
|
}
|
|
|
</Select>
|
|
|
- {/* <Input placeholder="订单负责人"
|
|
|
- value={this.state.orderRefundSearch}
|
|
|
- onChange={(e) => { this.setState({ orderRefundSearch: e.target.value }); }} /> */}
|
|
|
+ <Input placeholder="订单编号"
|
|
|
+ value={this.state.orderNoSearch}
|
|
|
+ onChange={(e) => { this.setState({ orderNoSearch: e.target.value }); }} />
|
|
|
<Input placeholder="任务负责人"
|
|
|
value={this.state.projectMenSearch}
|
|
|
onChange={(e) => { this.setState({ projectMenSearch: e.target.value }); }} />
|