Files
2026-09-11 12:25:38 +08:00

22 lines
435 B
Vue

<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>