fix: dashboard页面 小屏时切换其他页面, 大屏后在切回 dashboard页面 图表resize失败

This commit is contained in:
shuqingXu 2020-11-28 17:14:47 +08:00
parent 1bc2e5c198
commit c83e12413b
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,7 @@ export default {
// to fixed bug when cached by keep-alive
// https://github.com/PanJiaChen/vue-element-admin/issues/2116
activated() {
this.resize()
this.$_initResizeEvent()
this.$_initSidebarResizeEvent()
},
@ -50,6 +51,10 @@ export default {
},
$_destroySidebarResizeEvent() {
this.$_sidebarElm && this.$_sidebarElm.removeEventListener('transitionend', this.$_sidebarResizeHandler)
},
resize() {
const { chart } = this
chart && chart.resize()
}
}
}