Procházet zdrojové kódy

解决甘特图初始化不能收起问题

fujunwen před 4 roky
rodič
revize
13bbfaebec

+ 4 - 2
src/utils/ganttChart/GanttChart_day.js

@@ -82,8 +82,10 @@ GanttChartDay.prototype.toggle = function(index) {
     } else {
         this.tasks[index].open = true
     }
-    this.processData()
-    this.drawTasks()
+    this.gCanvas.destroy()
+    this.initDrawingReady()
+    // this.processData()
+    // this.drawTasks()
 }
 
 /**

+ 4 - 3
src/utils/ganttChart/GanttChart_month.js

@@ -83,8 +83,10 @@ GanttChartMonth.prototype.toggle = function(index) {
     } else {
         this.tasks[index].open = true
     }
-    this.processData()
-    this.drawTasks()
+    this.gCanvas.destroy()
+    this.initDrawingReady()
+//     this.processData()
+//     this.drawTasks()
 }
 
 /**
@@ -561,7 +563,6 @@ GanttChartMonth.prototype.drawTasks = function() {
                         }
                     })
                 })
-
                 taskGroup.show()
             } else {
                 if (topTask.gGroup) {