|
@@ -497,8 +497,7 @@ export default {
|
|
|
value: 'value',
|
|
|
type: 'type',
|
|
|
})
|
|
|
-
|
|
|
- var obj = this.searchFiled.find(item => { return item.label == '任务状态' })
|
|
|
+ var obj = this.searchFiled.find(item => { return item.value == "status" })
|
|
|
if (obj) {
|
|
|
obj.options = []
|
|
|
for (let key in this.taskStatus) {
|
|
@@ -508,7 +507,7 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
- var obj2 = this.searchFiled.find(item => { return item.label == '任务类型' })
|
|
|
+ var obj2 = this.searchFiled.find(item => { return item.value == "type" })
|
|
|
if (obj2) {
|
|
|
obj2.options = []
|
|
|
for (let key in this.taskType) {
|
|
@@ -518,7 +517,7 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
- var obj3 = this.searchFiled.find(item => { return item.label == '流程节点' })
|
|
|
+ var obj3 = this.searchFiled.find(item => { return item.value == "processId" })
|
|
|
if(obj3){
|
|
|
obj3.options = this.pathOptions
|
|
|
}
|