@@ -39,26 +78,40 @@ export default function AddOrEdit({ editData }: { editData?: ArticleType | null
>
-}
\ No newline at end of file
+}
+
diff --git a/app/admin/(default)/dashboard/article/page.tsx b/app/admin/(default)/dashboard/article/page.tsx
index 9cdd697..01f8f04 100644
--- a/app/admin/(default)/dashboard/article/page.tsx
+++ b/app/admin/(default)/dashboard/article/page.tsx
@@ -1,17 +1,17 @@
"use client"
-import { Button, Card, Image, Space, Table } from "antd";
+import { Button, Card, Image, Popconfirm, Space, Table } from "antd";
import '@ant-design/v5-patch-for-react-19';
import { useRouter } from "next/navigation";
import { useAntdTable } from "ahooks";
-import { mRequest } from "@/app/_lib/request";
-import { ArticleType } from "@/app/_lib/data/article";
+import { deleteArticle, getArticleList } from "@/app/_lib/data/article";
+import { PICTURE_PREFIX } from "@/app/_lib/utils";
+import Item from "antd/es/list/Item";
export default function Page() {
const router = useRouter()
- const { tableProps, refresh } = useAntdTable(async ({ current, pageSize }) => mRequest<{
- total: number;
- list: ArticleType[]
- }>('GET', `/api/article?page=${current}&pageSize=${pageSize}`))
+ const { tableProps, refresh } = useAntdTable(({ current, pageSize }) => {
+ return getArticleList({ page: current, pageSize })
+ })
return (
@@ -38,13 +38,18 @@ export default function Page() {
{
title: "封面",
- dataIndex: "content",
+ dataIndex: "cover",
render: (_, item) => (
<>
-
+
>
)
},
+ {
+ title: '网址',
+ dataIndex: 'link',
+ width: 100
+ },
{
title: '操作',
render: (_, row) => (
@@ -52,13 +57,27 @@ export default function Page() {
-
+
+ {
+ deleteArticle(row._id).then(() => {
+ refresh()
+ })
+ }}
+
+ >
+
+
)
}
]}
- >
-
+ >
+
)
}
\ No newline at end of file
diff --git a/app/admin/(default)/layout.tsx b/app/admin/(default)/layout.tsx
index c3b3ad4..90e8076 100644
--- a/app/admin/(default)/layout.tsx
+++ b/app/admin/(default)/layout.tsx
@@ -19,6 +19,14 @@ export default function Layout({
iconElement:
,
_id: 'addLink',
href: '/admin/dashboard'
+
+ },
+ {
+ label: '链接文章管理',
+ iconElement:
,
+ _id: 'articleMenagement',
+ href: '/admin/dashboard/article'
+
},
{
label: '搜索管理',
@@ -33,13 +41,7 @@ export default function Layout({
href: '/admin/dashboard/ad'
},
- {
- label: '文章管理',
- iconElement:
,
- _id: 'articleMenagement',
- href: '/admin/dashboard/article'
- },
]}>