更新首页

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: '/downloads',
showImage: false,
}
</script>
+21
View File
@@ -0,0 +1,21 @@
<template>
<ModuleEntryListPage :config="pageConfig" />
</template>
<script setup lang="ts">
import ModuleEntryListPage from '@/components/ModuleEntryListPage.vue'
definePageMeta({
layout: 'blank'
})
const pageConfig = {
type: 'download',
title: '资料下载',
description: '浏览和下载公开资料文件',
baseRoute: '/downloads',
showImage: false,
showSummary: false,
showAttachmentName: false,
}
</script>