|
@@ -89,6 +89,8 @@ const IntentionCustomer = Form.create()(React.createClass({
|
|
|
pageSize: this.state.pagination.pageSize,
|
|
|
name: this.state.customerName,//名称
|
|
|
taskId: this.state.orderNo,//订单编号
|
|
|
+ starTime: this.state.releaseDate[0],//开始时间
|
|
|
+ endTime: this.state.releaseDate[1],//结束时间
|
|
|
},
|
|
|
success: function(data) {
|
|
|
let theArr = [];
|
|
@@ -291,7 +293,7 @@ const IntentionCustomer = Form.create()(React.createClass({
|
|
|
var data = {
|
|
|
name: this.state.customerName?this.state.customerName:undefined,//订单负责人
|
|
|
taskId: this.state.orderNo?this.state.orderNo:undefined,//订单编号
|
|
|
- startTime: this.state.releaseDate[0]?this.state.releaseDate[0]:undefined,
|
|
|
+ starTime: this.state.releaseDate[0]?this.state.releaseDate[0]:undefined,
|
|
|
endTime: this.state.releaseDate[1]?this.state.releaseDate[1]:undefined,
|
|
|
}
|
|
|
window.location.href=(globalConfig.context+'/api/admin/orderProject/exportTaskHoursListData?'+$.param(data));
|