fix graph

This commit is contained in:
Qiuxia Fan 2022-04-02 14:44:50 +08:00
parent f19bcc856d
commit 8e69d19f73
2 changed files with 10 additions and 1 deletions

View File

@ -13,7 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. --> limitations under the License. -->
<template> <template>
<div ref="chartRef" :style="`height:${height};width:${width};`"> <div class="chart" ref="chartRef" :style="`height:${height};width:${width};`">
<div v-if="!available" class="no-data">No Data</div> <div v-if="!available" class="no-data">No Data</div>
</div> </div>
</template> </template>
@ -98,4 +98,8 @@ onBeforeUnmount(() => {
-webkit-box-align: center; -webkit-box-align: center;
color: #666; color: #666;
} }
.chart {
overflow: hidden;
}
</style> </style>

View File

@ -149,6 +149,11 @@ const depth = ref<number>(graphConfig.value.depth || 2);
onMounted(async () => { onMounted(async () => {
loading.value = true; loading.value = true;
const json = await selectorStore.fetchServices(dashboardStore.layerId);
if (json.errors) {
ElMessage.error(json.errors);
return;
}
const resp = await getTopology(); const resp = await getTopology();
loading.value = false; loading.value = false;
if (resp && resp.errors) { if (resp && resp.errors) {