137 lines
3.5 KiB
Vue
137 lines
3.5 KiB
Vue
<template>
|
|
<div class="page-container">
|
|
<div class="page-header">
|
|
<h1 class="page-title">{{ $t('learn-our-solutions') }}</h1>
|
|
<el-breadcrumb class="breadcrumb">
|
|
<el-breadcrumb-item class="text-md opacity-50">
|
|
<NuxtLink :to="$localePath('/')">{{
|
|
$t('navigation.home')
|
|
}}</NuxtLink>
|
|
</el-breadcrumb-item>
|
|
<el-breadcrumb-item class="text-md opacity-50">
|
|
<NuxtLink :to="$localePath('/solutions')">{{
|
|
$t('navigation.solutions')
|
|
}}</NuxtLink>
|
|
</el-breadcrumb-item>
|
|
</el-breadcrumb>
|
|
</div>
|
|
<div v-if="!pending" class="solutions-container">
|
|
<el-tabs v-model="activeName" class="solutions-tabs">
|
|
<el-tab-pane :label="$t('all')" name="all">
|
|
<div class="solution-list">
|
|
<solution-card
|
|
v-for="solution in solutions"
|
|
:key="solution.documentId"
|
|
:title="solution.title"
|
|
:summary="solution.summary || ''"
|
|
:cover-url="useStrapiMedia(solution?.cover?.url || '')"
|
|
:document-id="solution.documentId"
|
|
/>
|
|
</div>
|
|
</el-tab-pane>
|
|
<el-tab-pane
|
|
v-for="(group, type) in groupedSolutions"
|
|
:key="type"
|
|
:label="type || '未分类'"
|
|
:name="type || 'no-category'"
|
|
>
|
|
<div class="solution-list">
|
|
<solution-card
|
|
v-for="solution in group"
|
|
:key="solution.documentId"
|
|
:document-id="solution.documentId"
|
|
:cover-url="useStrapiMedia(solution?.cover?.url || '')"
|
|
:title="solution.title"
|
|
:summary="solution.summary || ''"
|
|
/>
|
|
</div>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</div>
|
|
<div v-else>
|
|
<el-skeleton :rows="6" animated />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const { find } = useStrapi();
|
|
const { getStrapiLocale } = useLocalizations();
|
|
const strapiLocale = getStrapiLocale();
|
|
|
|
const { data, pending, error } = useAsyncData('solutions', () =>
|
|
find<Solution>('solutions', {
|
|
populate: {
|
|
cover: {
|
|
populate: '*',
|
|
},
|
|
solution_type: {
|
|
populate: '*',
|
|
},
|
|
},
|
|
locale: strapiLocale,
|
|
})
|
|
);
|
|
|
|
const activeName = ref<string>('all');
|
|
|
|
const solutions = computed(() => data.value?.data ?? []);
|
|
|
|
// 按类型分组
|
|
const groupedSolutions = computed(() => {
|
|
const gourps: Record<string, Solution[]> = {};
|
|
for (const sol of solutions.value) {
|
|
let typeKey = '';
|
|
if (typeof sol.solution_type === 'string') {
|
|
typeKey = sol.solution_type;
|
|
} else if (
|
|
sol.solution_type &&
|
|
typeof sol.solution_type === 'object' &&
|
|
'type' in sol.solution_type
|
|
) {
|
|
typeKey = sol.solution_type.type || '';
|
|
}
|
|
if (!gourps[typeKey]) gourps[typeKey] = [];
|
|
gourps[typeKey]?.push(sol);
|
|
}
|
|
return gourps;
|
|
});
|
|
|
|
watch(error, (value) => {
|
|
if (value) {
|
|
console.error('数据获取失败: ', value);
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
.page-container {
|
|
padding: 2rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.page-header {
|
|
display: flex;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
margin-bottom: 1rem;
|
|
color: var(--el-color-primary);
|
|
}
|
|
|
|
.breadcrumb {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.solution-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding: 1rem;
|
|
margin-bottom: 2rem;
|
|
gap: 40px;
|
|
}
|
|
</style>
|