diff --git a/src/components/System/AdminHome.vue b/src/components/System/AdminHome.vue
index 156d61c..a6a0bc9 100644
--- a/src/components/System/AdminHome.vue
+++ b/src/components/System/AdminHome.vue
@@ -300,9 +300,9 @@ export default {
that.date=res.data.Date;
that.Month=res.data.Month;
that.Year=res.data.Year;
- setTimeout(()=>{
- that.eChart2(that.date,'echart2');
- },1000);
+
+ that.eChart2(that.date,'echart2');
+
@@ -413,9 +413,9 @@ export default {
xData.push(a.categoryName);
yData.push(a.num);
});
- setTimeout(()=>{
- that.echart_Pie(xData,yData,'echart1');
- },1000)
+
+ that.echart_Pie(xData,yData,'echart1');
+
});
},