fix(工作台): 修复工作台项目概览无数据bug

This commit is contained in:
xinxin.wu 2024-11-28 10:14:49 +08:00 committed by 刘瑞斌
parent 747659cf0a
commit 35f2d1a572
1 changed files with 9 additions and 8 deletions

View File

@ -135,7 +135,6 @@
options.value.yAxis[0].max = maxAxis; options.value.yAxis[0].max = maxAxis;
} }
const showSkeleton = ref(false); const showSkeleton = ref(false);
const selectAll = computed(() => appStore.projectList.length === innerProjectIds.value.length);
async function initOverViewDetail() { async function initOverViewDetail() {
try { try {
@ -170,17 +169,19 @@
} }
} }
function handleProjectChange(shouldEmit = false) { async function handleProjectChange(shouldEmit = false) {
nextTick(() => { await nextTick();
innerSelectAll.value = selectAll.value; innerSelectAll.value = appStore.projectList.length === innerProjectIds.value.length;
await nextTick();
initOverViewDetail(); initOverViewDetail();
if (shouldEmit) emit('change'); if (shouldEmit) emit('change');
});
} }
function popupVisibleChange(val: boolean) { function popupVisibleChange(val: boolean) {
if (!val) { if (!val) {
nextTick(() => {
handleProjectChange(true); handleProjectChange(true);
});
} }
} }