|
@@ -119,7 +119,7 @@ const Task = React.createClass({
|
|
|
contractNo: this.state.contractNoSearch, //合同编号
|
|
|
taskId: this.state.taskNoSearch, //项目编号
|
|
|
taskStatus: this.state.taskStatuSearch, //项目状态
|
|
|
- projectStatus: this.state.projectStatusSearch ? this.state.projectStatusSearch[1] || undefined : undefined, //项目状态
|
|
|
+ projectStatus: this.state.projectStatusSearch ? this.state.projectStatusSearch[0] || this.state.projectStatusSearch[1] || undefined : undefined, //项目状态
|
|
|
adminName: this.state.adminName, //项目受理人
|
|
|
approval: this.state.approvalSearch, //特批状态搜索
|
|
|
outsourceStatus:
|
|
@@ -313,7 +313,7 @@ const Task = React.createClass({
|
|
|
dataIndex: 'projectStatus',
|
|
|
key: 'projectStatus',
|
|
|
render: (text) => {
|
|
|
- return getProjectStatus(text)
|
|
|
+ return getProjectName(parseInt(text))
|
|
|
},
|
|
|
},
|
|
|
{
|