fix(工作台): 修复工作台项目概览无数据bug
This commit is contained in:
parent
747659cf0a
commit
35f2d1a572
|
@ -135,7 +135,6 @@
|
|||
options.value.yAxis[0].max = maxAxis;
|
||||
}
|
||||
const showSkeleton = ref(false);
|
||||
const selectAll = computed(() => appStore.projectList.length === innerProjectIds.value.length);
|
||||
|
||||
async function initOverViewDetail() {
|
||||
try {
|
||||
|
@ -170,17 +169,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
function handleProjectChange(shouldEmit = false) {
|
||||
nextTick(() => {
|
||||
innerSelectAll.value = selectAll.value;
|
||||
async function handleProjectChange(shouldEmit = false) {
|
||||
await nextTick();
|
||||
innerSelectAll.value = appStore.projectList.length === innerProjectIds.value.length;
|
||||
await nextTick();
|
||||
initOverViewDetail();
|
||||
if (shouldEmit) emit('change');
|
||||
});
|
||||
}
|
||||
|
||||
function popupVisibleChange(val: boolean) {
|
||||
if (!val) {
|
||||
nextTick(() => {
|
||||
handleProjectChange(true);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue