--- import Layout from '../../../../layouts/Layout_2.astro'; import { newsDetail } from '../../../../../utils/rpc'; import { getConfig } from '../../../../../utils/config'; import { TP2_COLUMN_NEWS, TP2_COLUMN_NEWS_URL } from '../../../../../utils/const'; const { slug } = Astro.params; const config = getConfig(Astro) if (!slug) { return Astro.redirect('/404'); } const {code, data} = await newsDetail(slug); if (!data || code !== 0) { return Astro.redirect('/404'); } const breadcrumb = [{ title: '主页', url: '/' }, {title: TP2_COLUMN_NEWS, url: TP2_COLUMN_NEWS_URL}, {title: data.title, url: 'javascript:void(0);'}] ---

{data.title}