NEZ-1280 feat: 图表刷新

This commit is contained in:
chenjinsong
2021-12-02 21:46:07 +08:00
parent ddb1acce18
commit 49f4320723
8 changed files with 92 additions and 54 deletions

View File

@@ -9,7 +9,7 @@
export default {
name: 'loading',
props: {
loading: Boolean
},
data () {
return {
@@ -23,6 +23,11 @@ export default {
endLoading () {
this.showLoading = false
}
},
watch: {
loading (n) {
this.showLoading = n
}
}
}
</script>