数据接受统计弹窗loading效果调整

This commit is contained in:
renpy 2023-08-29 18:49:01 +08:00
parent 14eb95081c
commit 469e67dd86
2 changed files with 4 additions and 4 deletions

View File

@ -75,5 +75,6 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
.custom-chart { .custom-chart {
height: 100% !important; height: 100% !important;
min-height: 600px;
} }
</style> </style>

View File

@ -1,5 +1,5 @@
<template> <template>
<div> <div style="position: relative;">
<!-- 图例 --> <!-- 图例 -->
<div class="legend"> <div class="legend">
<div <div
@ -14,9 +14,8 @@
</div> </div>
</div> </div>
<!-- 图例结束 --> <!-- 图例结束 -->
<a-spin :spinning="spinning">
<custom-chart ref="customChartRef" :option="option" :height="list.length * 295"></custom-chart> <custom-chart ref="customChartRef" :option="option" :height="list.length * 295"></custom-chart>
</a-spin> <a-spin style="position: absolute;top: 45%;left: 48%;" :spinning="spinning" />
</div> </div>
</template> </template>