refactor: 为Server端的Mapper添加空值处理与类型控制逻辑 #95

Manually merged
remilia merged 3 commits from fix/null-check into master 2025-12-04 17:56:42 +08:00
21 changed files with 975 additions and 530 deletions
Showing only changes of commit c3ac7c0985 - Show all commits

View File

@ -53,8 +53,8 @@
// SEO
usePageSeo({
title: product.value.name || $t('page-title.products'),
description: product.value.summary || '',
title: product.value?.name || $t('page-title.products'),
description: product.value?.summary || '',
});
</script>

View File

@ -44,8 +44,8 @@
});
usePageSeo({
title: solution.value.title || $t('page-title.solutions'),
description: solution.value.summary || '',
title: solution.value?.title || $t('page-title.solutions'),
description: solution.value?.summary || '',
});
</script>