Commit cfaec5d1 authored by 姬鋆屾's avatar 姬鋆屾
parents 807855b8 6bd594f3
......@@ -504,6 +504,7 @@ export default {
this.getStaff();
this.getYearRecordAll();
this.getMonthRecordAll();
this.getDayRecordAll();
},
mounted() {
this.staffStatList();
......@@ -963,7 +964,7 @@ export default {
},
angleAxis: {
show: false, // 隐藏刻度
max: 180,
max: Math.max(...values) * 1.5, // 控制柱子高度
startAngle: 90,
},
radiusAxis: {
......@@ -1048,6 +1049,11 @@ export default {
// 1分值自动刷新数据
autoUpdata() {
this.timer = setInterval(() => {
this.getDeptList();
this.getStaff();
this.getYearRecordAll();
this.getMonthRecordAll();
this.getDayRecordAll();
this.staffStatList();
this.getException();
this.depStatList();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment