Commit cfaec5d1 authored by 姬鋆屾's avatar 姬鋆屾
parents 807855b8 6bd594f3
...@@ -504,6 +504,7 @@ export default { ...@@ -504,6 +504,7 @@ export default {
this.getStaff(); this.getStaff();
this.getYearRecordAll(); this.getYearRecordAll();
this.getMonthRecordAll(); this.getMonthRecordAll();
this.getDayRecordAll();
}, },
mounted() { mounted() {
this.staffStatList(); this.staffStatList();
...@@ -963,7 +964,7 @@ export default { ...@@ -963,7 +964,7 @@ export default {
}, },
angleAxis: { angleAxis: {
show: false, // 隐藏刻度 show: false, // 隐藏刻度
max: 180, max: Math.max(...values) * 1.5, // 控制柱子高度
startAngle: 90, startAngle: 90,
}, },
radiusAxis: { radiusAxis: {
...@@ -1048,6 +1049,11 @@ export default { ...@@ -1048,6 +1049,11 @@ export default {
// 1分值自动刷新数据 // 1分值自动刷新数据
autoUpdata() { autoUpdata() {
this.timer = setInterval(() => { this.timer = setInterval(() => {
this.getDeptList();
this.getStaff();
this.getYearRecordAll();
this.getMonthRecordAll();
this.getDayRecordAll();
this.staffStatList(); this.staffStatList();
this.getException(); this.getException();
this.depStatList(); 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