feat: 更新新闻相关功能,整合 API 数据获取,优化新闻列表展示和详情页面
This commit is contained in:
@@ -84,6 +84,10 @@ export type NotificationData = Treaty.Data<typeof client.api.notifications.get>[
|
||||
|
||||
export type NotificationBody = TreatyQuery<typeof client.api.notifications.get>;
|
||||
|
||||
export type NewBody = TreatyQuery<typeof client.api.news.get>;
|
||||
|
||||
export type NewData = Treaty.Data<typeof client.api.news.get>["data"][number];
|
||||
|
||||
/**
|
||||
* 应用版本信息
|
||||
*/
|
||||
|
||||
@@ -392,6 +392,13 @@
|
||||
"fileSizeError": "File {name} exceeds {max}MB limit",
|
||||
"uploadError": "File {name} upload failed"
|
||||
},
|
||||
"news": {
|
||||
"detail": "News Detail",
|
||||
"summary": "Summary",
|
||||
"views": "views",
|
||||
"attachments": "Attachments",
|
||||
"loadError": "Failed to load, please try again later"
|
||||
},
|
||||
"auth": {
|
||||
"login": {
|
||||
"title": "Log in",
|
||||
|
||||
@@ -398,6 +398,13 @@
|
||||
"fileSizeError": "文件 {name} 超过 {max}MB 限制",
|
||||
"uploadError": "文件 {name} 上传失败"
|
||||
},
|
||||
"news": {
|
||||
"detail": "新闻详情",
|
||||
"summary": "摘要",
|
||||
"views": "次查看",
|
||||
"attachments": "附件",
|
||||
"loadError": "加载失败,请稍后重试"
|
||||
},
|
||||
"auth": {
|
||||
"login": {
|
||||
"title": "登录",
|
||||
|
||||
@@ -225,6 +225,11 @@ const routes: Array<RouteRecordRaw> = [
|
||||
component: () => import("@/views/market/orders.vue"),
|
||||
meta: { requiresAuth: true },
|
||||
},
|
||||
{
|
||||
path: "/new/:id",
|
||||
props: true,
|
||||
component: () => import("@/views/new/id.vue"),
|
||||
},
|
||||
{
|
||||
path: "/global-menu",
|
||||
component: () => import("@/views/global-menu/index.vue"),
|
||||
|
||||
187
src/views/new/id.vue
Normal file
187
src/views/new/id.vue
Normal file
@@ -0,0 +1,187 @@
|
||||
<script lang='ts' setup>
|
||||
import { downloadOutline, eyeOutline, timeOutline } from "ionicons/icons";
|
||||
import markdownit from "markdown-it";
|
||||
import { client, safeClient } from "@/api";
|
||||
|
||||
const props = defineProps<{ id: string }>();
|
||||
|
||||
const md = markdownit();
|
||||
const { t } = useI18n();
|
||||
|
||||
const { data, error } = await safeClient(client.api.news({ id: props.id }).get());
|
||||
|
||||
function formatViewCount(count: number): string {
|
||||
if (count >= 10000) {
|
||||
return `${(count / 10000).toFixed(1)}w`;
|
||||
}
|
||||
if (count >= 1000) {
|
||||
return `${(count / 1000).toFixed(1)}k`;
|
||||
}
|
||||
return String(count);
|
||||
}
|
||||
|
||||
function handleDownloadAttachment(url: string, filename: string) {
|
||||
const link = document.createElement("a");
|
||||
link.href = url;
|
||||
link.download = filename;
|
||||
link.target = "_blank";
|
||||
document.body.appendChild(link);
|
||||
link.click();
|
||||
document.body.removeChild(link);
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<IonPage>
|
||||
<IonHeader class="ion-no-border">
|
||||
<ion-toolbar class="ion-toolbar">
|
||||
<ui-back-button slot="start" />
|
||||
<ion-title>{{ t('news.detail') }}</ion-title>
|
||||
</ion-toolbar>
|
||||
</IonHeader>
|
||||
|
||||
<IonContent :fullscreen="true" class="ion-padding">
|
||||
<!-- 加载状态 -->
|
||||
<div v-if="!data && !error" class="flex items-center justify-center h-full">
|
||||
<ion-spinner name="crescent" color="primary" />
|
||||
</div>
|
||||
|
||||
<!-- 错误状态 -->
|
||||
<div v-else-if="error" class="flex flex-col items-center justify-center h-full gap-4">
|
||||
<Icon icon="mdi:alert-circle-outline" class="text-5xl text-(--ion-color-danger)" />
|
||||
<ion-text color="medium">
|
||||
{{ t('news.loadError') }}
|
||||
</ion-text>
|
||||
</div>
|
||||
|
||||
<!-- 新闻内容 -->
|
||||
<div v-else-if="data" class="max-w-800px mx-auto pb-8">
|
||||
<!-- 标题 -->
|
||||
<div class="text-2xl sm:text-xl font-bold leading-tight text-(--ion-text-color) mb-4 wrap-break-word">
|
||||
{{ data.title }}
|
||||
</div>
|
||||
|
||||
<!-- 元信息 -->
|
||||
<div class="flex items-center gap-4 sm:gap-3 flex-wrap mb-4">
|
||||
<div class="flex items-center gap-1.5 text-xs text-(--ion-color-medium)">
|
||||
<ion-icon :icon="timeOutline" class="text-base" />
|
||||
<span>{{ useDateFormat(data.publishedAt || data.createdAt, 'YYYY-MM-DD HH:mm') }}</span>
|
||||
</div>
|
||||
<div class="flex items-center gap-1.5 text-xs text-(--ion-color-medium)">
|
||||
<ion-icon :icon="eyeOutline" class="text-base" />
|
||||
<span>{{ formatViewCount(data.viewCount || 0) }} {{ t('news.views') }}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ui-divider class="my-4" />
|
||||
|
||||
<!-- 摘要 -->
|
||||
<div v-if="data.summary" class="border-2 border-dashed border-text-900 rounded-xl p-4 ">
|
||||
<div class="text-sm font-semibold text-(--ion-color-primary) mb-2">
|
||||
{{ t('news.summary') }}
|
||||
</div>
|
||||
<p class="text-base leading-relaxed text-(--ion-color-step-600) m-0">
|
||||
{{ data.summary }}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- 缩略图 -->
|
||||
<div v-if="data.thumbnailId" class="my-6 rounded-xl overflow-hidden shadow-sm dark:shadow-md">
|
||||
<img :src="data.thumbnailId" :alt="data.title" class="w-full h-auto block">
|
||||
</div>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<div class="news-content text-base leading-relaxed text-(--ion-text-color) my-6">
|
||||
<div v-html="md.render(data.content)" />
|
||||
</div>
|
||||
|
||||
<!-- 附件列表 -->
|
||||
<div v-if="data.attachments && data.attachments.length > 0" class="mt-8 pt-6 border-t border-(--ion-color-light)">
|
||||
<div class="flex items-center gap-2 text-base font-semibold text-(--ion-text-color) mb-4">
|
||||
<Icon icon="mdi:paperclip" class="text-lg" />
|
||||
<span>{{ t('news.attachments') }} ({{ data.attachments.length }})</span>
|
||||
</div>
|
||||
<div class="flex flex-col gap-3">
|
||||
<div
|
||||
v-for="(attachment, index) in data.attachments"
|
||||
:key="index"
|
||||
class="flex items-center justify-between p-3 px-4 bg-(--ion-color-light) dark:bg-(--ion-color-step-100) rounded-lg cursor-pointer transition-all hover:bg-(--ion-color-light-shade) dark:hover:bg-(--ion-color-step-150) hover:translate-x-1 active:scale-98"
|
||||
@click="handleDownloadAttachment(attachment.url, attachment.name)"
|
||||
>
|
||||
<div class="flex items-center gap-3 flex-1 min-w-0">
|
||||
<Icon icon="mdi:file-document-outline" class="text-2xl text-(--ion-color-primary) shrink-0" />
|
||||
<div class="flex-1 min-w-0">
|
||||
<div class="text-sm font-medium text-(--ion-text-color) truncate">
|
||||
{{ attachment.name }}
|
||||
</div>
|
||||
<div v-if="attachment.size" class="text-xs text-(--ion-color-medium) mt-0.5">
|
||||
{{ (attachment.size / 1024).toFixed(2) }} KB
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<ion-button fill="clear" size="small">
|
||||
<ion-icon slot="icon-only" :icon="downloadOutline" />
|
||||
</ion-button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
@reference "tailwindcss";
|
||||
|
||||
/* 正文内容富文本样式 */
|
||||
.news-content :deep(p) {
|
||||
@apply my-4 whitespace-pre-wrap wrap-break-word;
|
||||
}
|
||||
|
||||
.news-content :deep(img) {
|
||||
@apply max-w-full h-auto rounded-lg my-4;
|
||||
}
|
||||
|
||||
.news-content :deep(h1),
|
||||
.news-content :deep(h2),
|
||||
.news-content :deep(h3) {
|
||||
@apply font-semibold my-6 mb-4 leading-tight;
|
||||
}
|
||||
|
||||
.news-content :deep(h1) {
|
||||
@apply text-xl;
|
||||
}
|
||||
|
||||
.news-content :deep(h2) {
|
||||
@apply text-lg;
|
||||
}
|
||||
|
||||
.news-content :deep(h3) {
|
||||
@apply text-base;
|
||||
}
|
||||
|
||||
.news-content :deep(ul),
|
||||
.news-content :deep(ol) {
|
||||
@apply pl-6 my-4;
|
||||
}
|
||||
|
||||
.news-content :deep(li) {
|
||||
@apply my-2;
|
||||
}
|
||||
|
||||
.news-content :deep(blockquote) {
|
||||
@apply border-l-3 border-(--ion-color-medium) pl-4 my-4 text-(--ion-color-medium) italic;
|
||||
}
|
||||
|
||||
.news-content :deep(code) {
|
||||
@apply bg-(--ion-color-light) px-1.5 py-0.5 rounded text-sm font-mono;
|
||||
}
|
||||
|
||||
.news-content :deep(pre) {
|
||||
@apply bg-(--ion-color-light) p-4 rounded-lg overflow-x-auto my-4;
|
||||
}
|
||||
|
||||
.news-content :deep(pre code) {
|
||||
@apply bg-transparent p-0;
|
||||
}
|
||||
</style>
|
||||
@@ -1,34 +1,17 @@
|
||||
<script lang='ts' setup>
|
||||
import type { NewsItem } from "@/mocks/data/news";
|
||||
import { mockClient } from "@/api";
|
||||
|
||||
// TODO: 后续从API获取新闻数据
|
||||
const { data } = mockClient<NewsItem[]>("news");
|
||||
|
||||
function formatTime(time: string) {
|
||||
const date = new Date(time);
|
||||
const now = new Date();
|
||||
const diff = now.getTime() - date.getTime();
|
||||
const hours = Math.floor(diff / (1000 * 60 * 60));
|
||||
|
||||
if (hours < 1) {
|
||||
const minutes = Math.floor(diff / (1000 * 60));
|
||||
return `${minutes}分钟前`;
|
||||
}
|
||||
if (hours < 24) {
|
||||
return `${hours}小时前`;
|
||||
}
|
||||
const days = Math.floor(hours / 24);
|
||||
if (days < 7) {
|
||||
return `${days}天前`;
|
||||
}
|
||||
return date.toLocaleDateString("zh-CN", { month: "2-digit", day: "2-digit" });
|
||||
}
|
||||
import type { NewData } from "@/api/types";
|
||||
import { client, safeClient } from "@/api";
|
||||
|
||||
const router = useRouter();
|
||||
const { data } = await safeClient(() => client.api.news.get({
|
||||
query: {
|
||||
limit: 10,
|
||||
offset: 0,
|
||||
},
|
||||
}));
|
||||
|
||||
function openNewsDetail(item: NewsItem) {
|
||||
router.push(`/news/${item.id}`);
|
||||
function openNewsDetail(item: NewData) {
|
||||
router.push(`/new/${item.id}`);
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -38,37 +21,30 @@ function openNewsDetail(item: NewsItem) {
|
||||
动态新闻
|
||||
</div>
|
||||
|
||||
<!-- 新闻列表 -->
|
||||
<div class="space-y-3">
|
||||
<div
|
||||
v-for="item in data"
|
||||
v-for="item in data?.data"
|
||||
:key="item.id"
|
||||
class="flex gap-3 p-3 rounded-lg bg-(--ion-color-faint) transition-colors cursor-pointer"
|
||||
@click="openNewsDetail(item)"
|
||||
>
|
||||
<!-- 缩略图 -->
|
||||
<div class="shrink-0">
|
||||
<img
|
||||
:src="item.thumbnail"
|
||||
:src="item.thumbnailId!"
|
||||
:alt="item.title"
|
||||
class="w-20 h-20 rounded-lg object-cover"
|
||||
>
|
||||
</div>
|
||||
|
||||
<!-- 内容 -->
|
||||
<div class="flex-1 min-w-0 flex flex-col justify-between">
|
||||
<!-- 标题 -->
|
||||
<div class="text-md font-medium line-clamp-1">
|
||||
{{ item.title }}
|
||||
</div>
|
||||
|
||||
<!-- 描述 -->
|
||||
<p class="text-xs line-clamp-2 mt-1">
|
||||
{{ item.description }}
|
||||
{{ item.summary }}
|
||||
</p>
|
||||
|
||||
<!-- 时间 -->
|
||||
<div class="text-xs mt-1">
|
||||
{{ formatTime(item.time) }}
|
||||
{{ useDateFormat(item.createdAt, 'YY/MM/DD') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user