|
|
@@ -382,6 +382,7 @@
|
|
|
|
|
|
|
|
|
handOutsource() {
|
|
|
+ console.log(this.newTaskObj)
|
|
|
|
|
|
let param = {
|
|
|
taskId: this.newTaskObj.currentTaskId,
|
|
|
@@ -468,9 +469,7 @@
|
|
|
|
|
|
this.newStepsList = []
|
|
|
this.stepsList.forEach((f, i) => {
|
|
|
- if (f.taskId != '-1' && f.taskId != '-2' && f.taskTypeName != '包装' && i > this
|
|
|
- .activeIndex && f
|
|
|
- .type == 1) {
|
|
|
+ if (f.taskId != '-1' && f.taskId != '-2' && i > this.activeIndex && (f.type == 1 || f.type == 4 )) {
|
|
|
this.newStepsList.push(f)
|
|
|
}
|
|
|
})
|