|
|
@ -90,8 +90,11 @@ |
|
|
style="width: 150px" |
|
|
style="width: 150px" |
|
|
v-model="filters.key" |
|
|
v-model="filters.key" |
|
|
placeholder="计划/任务名称" |
|
|
placeholder="计划/任务名称" |
|
|
> |
|
|
|
|
|
|
|
|
> |
|
|
</el-input> |
|
|
</el-input> |
|
|
|
|
|
|
|
|
|
|
|
<el-input v-model="filters.projectId" style="width: 150px;" placeholder="项目编号" clearable></el-input> |
|
|
|
|
|
<el-input v-model="filters.cbranchId" style="width: 150px;" placeholder="项目公司编号" clearable></el-input> |
|
|
<el-button |
|
|
<el-button |
|
|
@click="searchXmTasks" |
|
|
@click="searchXmTasks" |
|
|
type="primary" |
|
|
type="primary" |
|
|
@ -682,6 +685,7 @@ export default { |
|
|
taskType: "", |
|
|
taskType: "", |
|
|
tags: [], |
|
|
tags: [], |
|
|
taskState:'',//任务状态 |
|
|
taskState:'',//任务状态 |
|
|
|
|
|
cbranchId:'',//项目归属公司编号 |
|
|
}, |
|
|
}, |
|
|
xmTasks: [], //查询结果 |
|
|
xmTasks: [], //查询结果 |
|
|
pageInfo: { |
|
|
pageInfo: { |
|
|
@ -1271,6 +1275,10 @@ export default { |
|
|
if (this.filters.tags && this.filters.tags.length>0) { |
|
|
if (this.filters.tags && this.filters.tags.length>0) { |
|
|
params.tagIdList = this.filters.tags.map(i=>i.tagId); |
|
|
params.tagIdList = this.filters.tags.map(i=>i.tagId); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (this.filters.cbranchId) { |
|
|
|
|
|
params.cbranchId = this.filters.cbranchId; |
|
|
|
|
|
} |
|
|
params.taskOut="1" |
|
|
params.taskOut="1" |
|
|
params.crowd="1" |
|
|
params.crowd="1" |
|
|
params.ntype="0" |
|
|
params.ntype="0" |
|
|
|