24 lines
765 B
Vue
24 lines
765 B
Vue
<template>
|
|
<ArticleListPage :config="pageConfig" />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
useHead({ title: '决策参考 - 决策咨询网' })
|
|
|
|
const pageConfig = {
|
|
title: '决策参考',
|
|
desc: '汇聚政策原文、深度解读、研究成果、专题研究、东盟研究等权威参考资料',
|
|
bannerGradient: 'linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%)',
|
|
baseRoute: 'reference',
|
|
categories: [
|
|
{ type: '', label: '全部文章' },
|
|
{ type: 'policy', label: '政策原文' },
|
|
{ type: 'analysis', label: '深度解读' },
|
|
{ type: 'research', label: '研究成果' },
|
|
{ type: 'special', label: '专题研究' },
|
|
{ type: 'asean', label: '东盟研究' },
|
|
{ type: 'data', label: '数据服务(会员)' },
|
|
]
|
|
}
|
|
</script>
|