22 lines
435 B
Vue
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>
|