diff --git a/src/views/system/specialDiseaseNode/index.vue b/src/views/system/specialDiseaseNode/index.vue index fa643e5..a4df030 100644 --- a/src/views/system/specialDiseaseNode/index.vue +++ b/src/views/system/specialDiseaseNode/index.vue @@ -166,8 +166,8 @@
模板: - +
@@ -457,17 +457,21 @@ export default { } }) if (taskSubdivision) { - this.changetaskSubdivision(taskSubdivision) + this.changetaskSubdivision(taskSubdivision, 1) } }) }, - changetaskSubdivision(e) { + changetaskSubdivision(e, type) { this.form.taskSubdivision = e this.taskPartitionList.forEach(el => { if (e == el.id) { this.form.executionTime = el.executionTime this.form.taskSubdivisionName = el.taskTypeName this.form.taskSubdivisiontemplateType = el.templateType + if (!type) { + this.form.templateId = '' + this.form.templateName = '' + } } }) },