Browse Source

[修改]预案模板自定义删除问题

tangshan
陈敬瑜 4 years ago
parent
commit
a8f29be4e3
  1. 7
      src/app/ui/plan-template/plan-template.component.ts

7
src/app/ui/plan-template/plan-template.component.ts

@ -401,7 +401,12 @@ export class PlanTemplateComponent implements OnInit {
if (array[index].groupName==groupName) {
array[index].attribute.forEach((element,i) => {
if(element.surveyName==surveyName){
array[index].attribute[i].completed=false
if(array[index].attribute[i].zdy!=undefined){
array[index].attribute.splice(i,1)
}else{
array[index].attribute[i].completed=false
}
}
});
}

Loading…
Cancel
Save