问题修复

This commit is contained in:
2025-12-16 10:57:48 +08:00
parent 158e2a99fd
commit e4109c000a
5 changed files with 33 additions and 4 deletions

View File

@@ -690,7 +690,7 @@ async function deleteRecommend(item: ResourceRecommendVO) {
}
);
await resourceRecommendApi.deleteRecommend(item.id!);
await resourceRecommendApi.deleteRecommend(item.resourceID!);
ElMessage.success('删除成功');
await refreshCurrentTab();
} catch (error: any) {

View File

@@ -181,7 +181,7 @@ function handleMoreClick(type: string) {
} else if (type === 'ideological') {
router.push('/resource-center');
} else if (type === 'learning') {
router.push('/learning-center');
router.push('/user-center/learning-records');
}
}