diff --git a/src/components/charts/EchartsFrame.vue b/src/components/charts/EchartsFrame.vue
index fd79862e..9658e739 100644
--- a/src/components/charts/EchartsFrame.vue
+++ b/src/components/charts/EchartsFrame.vue
@@ -15,7 +15,7 @@
-
diff --git a/src/components/charts/PieTable.vue b/src/components/charts/PieTable.vue
index 7a6e69ba..e9b57d09 100644
--- a/src/components/charts/PieTable.vue
+++ b/src/components/charts/PieTable.vue
@@ -1,6 +1,5 @@
@@ -111,7 +109,6 @@ export default {
},
data () {
return {
- loading: false,
nameColumn: '',
pieTableData: [],
childrenTableData: [],
@@ -169,13 +166,11 @@ export default {
prop: 'bytes',
width: '18%'
}
- ],
- subLoading: true
+ ]
}
},
methods: {
currentChange (row, expandedRows) {
- this.subLoading = true
this.childrenTableData = []
if (this.expandRowKeys[0] && (row.domain === this.expandRowKeys[0])) {
this.expandRowKeys = []
@@ -196,7 +191,6 @@ export default {
this.childrenTableData = response2.data.result
}
}).finally(() => {
- this.subLoading = false
})
}, 500)
},