新版官网模板

This commit is contained in:
2026-04-29 01:33:33 +08:00
commit 0d82386f8f
341 changed files with 64526 additions and 0 deletions

21
app/pages/hanmo/index.vue Normal file
View File

@@ -0,0 +1,21 @@
<template>
<ArticleListPage :config="pageConfig" />
</template>
<script lang="ts" setup>
useHead({ title: '翰墨文谈 - 决策咨询网' })
const pageConfig = {
title: '翰墨文谈',
desc: '笔墨流传思想,文章承载智慧,汇聚各界名家随笔,分享从实践中来的感悟',
bannerGradient: 'linear-gradient(135deg, #92400e 0%, #b45309 100%)',
baseRoute: 'hanmo',
categories: [
{ type: '', label: '全部文章' },
{ type: 'essay', label: '随笔散文' },
{ type: 'review', label: '书评影评' },
{ type: 'poetry', label: '诗词歌赋' },
{ type: 'other', label: '其他' },
]
}
</script>