更新首页

This commit is contained in:
2026-09-11 12:25:38 +08:00
parent 9e24153eac
commit c29c3be942
326 changed files with 6564 additions and 44307 deletions
+17
View File
@@ -0,0 +1,17 @@
<template>
<ModuleEntryDetailPage :config="pageConfig" />
</template>
<script setup lang="ts">
import ModuleEntryDetailPage from '@/components/ModuleEntryDetailPage.vue'
definePageMeta({
layout: 'blank'
})
const pageConfig = {
title: '专家资料下载',
baseRoute: '/expert/downloads',
showImage: false,
}
</script>
+20
View File
@@ -0,0 +1,20 @@
<template>
<ModuleEntryListPage :config="pageConfig" />
</template>
<script setup lang="ts">
import ModuleEntryListPage from '@/components/ModuleEntryListPage.vue'
definePageMeta({
layout: 'blank'
})
const pageConfig = {
type: 'expert_download',
title: '专家资料下载',
description: '',
baseRoute: '/expert/downloads',
showImage: false,
sidebarNavKey: 'expert',
}
</script>