25 lines
814 B
Vue
25 lines
814 B
Vue
<template>
|
|
<ArticleListPage :config="pageConfig" />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
useHead({ title: '决策咨询 - 决策咨询网' })
|
|
|
|
const pageConfig = {
|
|
title: '决策咨询',
|
|
desc: '聚焦市县决策、前沿观察、行业资讯、企业动态,提供全面的决策咨询服务',
|
|
bannerGradient: 'linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%)',
|
|
baseRoute: 'consultation',
|
|
categories: [
|
|
{ type: '', label: '全部文章' },
|
|
{ type: 'city', label: '市县决策' },
|
|
{ type: 'frontier', label: '前沿观察' },
|
|
{ type: 'industry', label: '行业资讯' },
|
|
{ type: 'enterprise', label: '企业动态' },
|
|
{ type: 'research', label: '研究热点' },
|
|
{ type: 'academic', label: '学术活动' },
|
|
{ type: 'other', label: '其他汇编' },
|
|
]
|
|
}
|
|
</script>
|