feat:添加group的懒加载功能

This commit is contained in:
zhangyu
2021-04-09 15:07:15 +08:00
parent 617c2e232e
commit d4fd5be65e
3 changed files with 8 additions and 3 deletions

View File

@@ -122,6 +122,7 @@ import bus from '../../../libs/bus'
import pickTime from '../../common/pickTime'
import exportXLSX from '../../common/exportXLSX'
import selectPanel from '../../common/popBox/selectPanel'
import panelBox from '@/components/common/rightBox/panelBox'
export default {
name: 'panel',
@@ -204,7 +205,8 @@ export default {
'chart-list': ChartList,
'pick-time': pickTime,
'export-excel': exportXLSX,
selectPanel
selectPanel,
'panel-box': panelBox
},
methods: {
// 刷新
@@ -1062,4 +1064,7 @@ export default {
.box-content .show-top .chartBox:last-child{
margin-bottom: 50px !important;
}
.box-content .show-top .chart-group .chartBox:last-child{
margin-bottom: 0px !important;
}
</style>